heheng
2025-12-03 3d400cfcc41df9bc35678751f6f5afb5cf6c1ae5
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.gkhy.exam.system.domain;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Getter;
import lombok.Setter;
 
import java.io.Serializable;
import java.util.List;
import java.util.Objects;
 
@Getter
@Setter
@TableName("internal_audit_check_catalogue")
@ApiModel(value = "internalAuditCheckCatalogue对象", description = "内审检查标准款项")
public class InternalAuditCheckCatalogue implements Serializable {
 
 
    @ApiModelProperty("主键")
    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
 
    @ApiModelProperty("主表id")
    @TableField("check_id")
    private Integer checkId;
 
    @ApiModelProperty("标准款项")
    @TableField("catalogue_id")
    private Integer catalogueId;
 
    @TableField(exist = false)
    private String number;
 
    @TableField(exist = false)
    private String mess;
 
    @TableField("del_flag")
    private Integer delFlag;
 
 
    @Override
    public boolean equals(Object o) {
        if (this == o) return true;
        if (o == null || getClass() != o.getClass()) return false;
        InternalAuditCheckCatalogue that = (InternalAuditCheckCatalogue) o;
        return Objects.equals(catalogueId, that.catalogueId);
    }
 
    @Override
    public int hashCode() {
        return Objects.hash(catalogueId);
    }
 
    @TableField(exist = false)
    private List<InternalAuditCheckContent> checkContents;
 
}