| | |
| | | package com.vci.ubcs.code.entity; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.vci.ubcs.starter.constant.CodeTableNameConstant; |
| | | import com.vci.ubcs.starter.revision.model.BaseModel; |
| | | import com.vci.ubcs.starter.web.annotation.VciFieldType; |
| | | import com.vci.ubcs.starter.web.enumpck.VciFieldTypeEnum; |
| | |
| | | /** |
| | | * 主题库分类的模板属性 |
| | | * @author ludc |
| | | * @date 2022-1-17 |
| | | * @date 2023-05-08 |
| | | */ |
| | | //@VciBtmType(name = MdmBtmTypeConstant.CODE_CLASSIFY_TEMPLATE_ATTR,text = "主题库分类的模板属性",lifeCycle = FrameWorkLcStatusConstant.EMTYPE_LIFE_CYCLE) |
| | | @Data |
| | | @TableName("PL_CODE_CLSTEMPATTR") |
| | | @TableName(CodeTableNameConstant.PL_CODE_CLSTEMPATTR) |
| | | @ApiModel(value = "CodeTempphase对象", description = "编码库定义-模板阶段") |
| | | @EqualsAndHashCode(callSuper = true) |
| | | public class CodeClassifyTemplateAttr extends BaseModel { |
| | |
| | | * 所属模板名称 |
| | | */ |
| | | //@Transient(referColumn = "classifyTemplateOid.name") |
| | | @TableField(exist = false) |
| | | private String classifyTemplateOidName; |
| | | |
| | | /** |
| | |
| | | */ |
| | | //@Column(columnDefinition = "所属属性分组") |
| | | private String attributeGroup; |
| | | /** |
| | | * 输入显示 |
| | | */ |
| | | //@Column(columnDefinition = "输入显示") |
| | | private String inputTip; |
| | | |
| | | /** |
| | | * 使用枚举英文编号 |
| | |
| | | * 属性控制输入的长度 |
| | | */ |
| | | //@Column(columnDefinition = "属性控制输入的长度",defaultValue = "254") |
| | | private Integer controlLength = 254; |
| | | private Integer controlLength; |
| | | |
| | | /** |
| | | * 表单上显示的样式 |
| | |
| | | */ |
| | | //Column(columnDefinition = "级联查询属性") |
| | | private String parentQueryAttr; |
| | | |
| | | |
| | | |
| | | } |