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.time.LocalDateTime; import java.util.List; @Setter @Getter @TableName("expect_discren") @ApiModel(value = "expectDiscren",description = "相关方期望识别") public class ExpectDiscren implements Serializable { @ApiModelProperty("主键") @TableId(value = "id", type = IdType.AUTO) private Integer id; @ApiModelProperty(value = "企业ID") @TableField("company_id") private Long companyId; @TableField(exist = false) private String companyName; @ApiModelProperty(value = "部门id") @TableField("dept_id") private Long deptId; @TableField(exist = false) private String deptName; @ApiModelProperty(value = "年份") @TableField("year") private String year; @ApiModelProperty(value = "审核频次") @TableField("frequency") private String frequency; @ApiModelProperty(value = "编制人id") @TableField("fiction_id") private Integer fictionId; @TableField(exist = false) private String fictionName; @ApiModelProperty(value = "审核人id") @TableField("check_id") private Integer checkId; @TableField(exist = false) private String checkName; @ApiModelProperty(value = "批准人id") @TableField("ratify_id") private Integer ratifyId; @TableField(exist = false) private String ratifyName; @ApiModelProperty(value = "日期") @TableField("fiction_time") private LocalDateTime fictionTime; @ApiModelProperty(value = "是否删除") @TableField("del_flag") private Integer delFlag; @TableField("create_by") private String createBy; @TableField("create_time") private LocalDateTime createTime; @TableField("update_by") private String updateBy; @TableField("update_time") private LocalDateTime updateTime; @TableField(exist = false) private List expectContents; }