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; @Getter @Setter @TableName("InternalAuditCheckCatalogue") @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; @TableField(exist = false) private List checkContents; }