xuhy
2024-12-11 5be07b1a021f596b003eac001f4cb77416ae6c7b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
package com.ruoyi.system.domain;
 
import com.baomidou.mybatisplus.annotation.*;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
 
import java.io.Serializable;
import java.time.LocalDateTime;
 
/**
 * <p>
 * 申报通知-申报附件要求
 * </p>
 *
 * @author luodangjia
 * @since 2024-09-19
 */
@Data
@EqualsAndHashCode(callSuper = false)
@TableName("t_declare_notice_file")
@ApiModel(value="TDeclareNoticeFile对象", description="申报通知-申报附件要求")
public class TDeclareNoticeFile implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    @TableId(value = "id", type = IdType.AUTO)
    private Long id;
 
    @TableField("declare_id")
    private Long declareId;
 
    @ApiModelProperty(value = "必要")
    @TableField("file_request")
    private String fileRequest;
 
    @ApiModelProperty(value = "材料名称")
    @TableField("file_name")
    private String fileName;
 
    @ApiModelProperty(value = "材料说明")
    @TableField("file_describe")
    private String fileDescribe;
 
    @ApiModelProperty(value = "材料样例")
    @TableField("file_url")
    private String fileUrl;
 
    @TableField("create_by")
    private Long createBy;
 
    @TableField("create_time")
    private LocalDateTime createTime;
 
@TableLogic
@TableField("is_delete")
private Integer isDelete;
 
 
}