zss
2025-02-19 8a9eb937345d499a90e69df764d9dac677ede35f
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
62
63
package com.ruoyi.manage.pojo;
 
import com.baomidou.mybatisplus.annotation.*;
 
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Getter;
import lombok.Setter;
 
import java.io.Serializable;
import java.time.LocalDateTime;
 
/**
 * <p>
 * 文件定期审查记录
 * </p>
 *
 * @author 芯导软件(江苏)有限公司
 * @since 2024-11-13 10:54:31
 */
@Getter
@Setter
@TableName("cnas_manage_record_intervals")
@ApiModel(value = "ManageRecordIntervals对象", description = "文件定期审查记录")
public class ManageRecordIntervals  implements Serializable {
 
    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
 
    @ApiModelProperty("文件名称")
    private String documentName;
 
    @ApiModelProperty("文件编号")
    private String documentCode;
 
    @ApiModelProperty("版本号")
    private String documentVersion;
 
    @ApiModelProperty("修订号")
    private String revision;
 
    @ApiModelProperty("适宜性")
    private String suitability;
 
    @ApiModelProperty("备注")
    private String remark;
 
    @TableField(fill = FieldFill.INSERT)
    private Integer createUser;
 
    @TableField(fill = FieldFill.INSERT_UPDATE)
    private Integer updateUser;
 
    @TableField(fill = FieldFill.INSERT)
    private LocalDateTime createTime;
 
    @TableField(fill = FieldFill.INSERT_UPDATE)
    private LocalDateTime updateTime;
 
    @ApiModelProperty("外键关联,外来文件确认历史记录id")
    private Integer recordIntervalsTotalId;
}