package cn.cslg.pas.domain.business; import cn.cslg.pas.domain.BaseEntity; import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableName; import lombok.Data; @Data @TableName("asso_group_feature") public class AssoGroupFeature extends BaseEntity { @TableField(value = "feature_order") private Integer featureOrder; //0原始 1拆分过 @TableField(value = "feature_gen") private Integer featureGen; //特征id @TableField(value = "feature_id") private Integer featureId; //特征id @TableField(value = "feature_pre_id") private Integer featurePreId; @TableField(value = "group_id") private Integer groupId; @TableField(value = "operate_mode") private Integer operateMode; /** * 无效理由详情1 */ @TableField(value = "invalid_reason_detail1") private String invalidReasonDetail1; /** * 无效理由详情2 */ @TableField(value = "invalid_reason_detail2") private String invalidReasonDetail2; /** * 陈述意见 */ @TableField(value = "present_opinions1") private String presentOpinions1; /** * 第二次陈述意见 */ @TableField(value = "present_opinions2") private String presentOpinions2; /** * 是否有第一次陈述意见 */ @TableField(value = "if_present_opinion1") private Boolean ifPresentOpinions1; /** * 是否有第二次陈述意见 */ @TableField(value = "if_present_opinion2") private Boolean ifPresentOpinions2; /** * 复审委意见 */ @TableField(value = "rb_opinions") private String rbOpinions; /** * 复审委意见要点提炼 */ @TableField(value = "rb_decision_key") private String rbDecisionKey; //特征修改说明 @TableField(value = "common") private String common; }