| | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.vci.ubcs.starter.annotation.Transient; |
| | | import com.vci.ubcs.starter.constant.CodeTableNameConstant; |
| | | import com.vci.ubcs.starter.revision.model.BaseModel; |
| | | import io.swagger.annotations.ApiModel; |
| | | import lombok.Data; |
| | |
| | | */ |
| | | //@VciBtmType(name = MdmBtmTypeConstant.CODE_CLASSIFY,text = "主题库分类",lifeCycle = FrameWorkLcStatusConstant.FRAME_WORK_LIFE_CYCLE_NAME) |
| | | @Data |
| | | @TableName("PL_CODE_CLASSIFY") |
| | | @TableName(CodeTableNameConstant.PL_CODE_CLASSIFY) |
| | | @ApiModel(value = "CodeClassify对象", description = "主题库的分类") |
| | | @EqualsAndHashCode(callSuper = true) |
| | | public class CodeClassify extends BaseModel { |
| | |
| | | private String codeResembleRuleOid; |
| | | |
| | | /** |
| | | * 是否参与校验,0:不参与;1:参与 |
| | | */ |
| | | private String isParticipateCheck; |
| | | |
| | | /** |
| | | * 相似项查询规则名称 |
| | | */ |
| | | @Transient(referColumn = "codeResembleRuleOid.name") |
| | |
| | | @TableField(exist = false) |
| | | private String idPath; |
| | | |
| | | /** |
| | | * 该分类下主数据总数 |
| | | */ |
| | | @TableField(exist = false) |
| | | private String total; |
| | | |
| | | } |