添加达梦VARCHAR2的反签;修改元数据id的最大值
| | |
| | | <el-form ref="form" :model="attribute" show-message="true" inline size="medium" label-suffix=":" |
| | | class="attributeForm" :rules="rules" @resetFields="resetAttributeForm" status-icon="true"> |
| | | <el-form-item label="属性编号" label-width="100px" prop="id"> |
| | | <el-input v-model="attribute.id" maxlength="15" show-word-limit type="text"></el-input> |
| | | <el-input v-model="attribute.id" maxlength="30" show-word-limit type="text"></el-input> |
| | | </el-form-item> |
| | | <el-form-item label="属性名称" label-width="100px" prop="name"> |
| | | <el-input v-model="attribute.name"></el-input> |
| | |
| | | id: [ |
| | | { required: true, message: '请输入属性编号', trigger: 'blur' }, |
| | | { pattern: /^[A-Za-z]+$/, message: '属性编号只能为英文', trigger: 'blur' }, |
| | | { min: 2, max: 15, message: '长度在2到15个字符', trigger: 'blur' } |
| | | { min: 2, max: 30, message: '长度在2到30个字符', trigger: 'blur' } |
| | | ], |
| | | name: [ |
| | | { required: true, message: '请输入属性名称', trigger: 'blur' } |
| | |
| | | this.btmRefer.btmPage.total = res.data.data.total; |
| | | }) |
| | | } |
| | | if (this.attribute.referTypeKey == 'linkType') { |
| | | |
| | | } |
| | | // if (this.attribute.referTypeKey == 'linkType') { |
| | | // |
| | | // } |
| | | }, |
| | | // 枚举类型输入框获得焦点时的事件 |
| | | openEnumConfig() { |
| | |
| | | FIELD_MAP.put(VciFieldTypeEnum.VTFilePath, new DdlFieldMappingAttrBO("TEXT", null, null, true, null)); |
| | | FIELD_MAP.put(VciFieldTypeEnum.VTClob, new DdlFieldMappingAttrBO("CLOB", 100, null, true, null)); |
| | | FIELD_MAP.put(VciFieldTypeEnum.VTString, new DdlFieldMappingAttrBO("VARCHAR", 255, null, true, null)); |
| | | FIELD_MAP.put(VciFieldTypeEnum.VTString, new DdlFieldMappingAttrBO("VARCHAR2", 255, null, true, null)); |
| | | } |
| | | |
| | | public DllDmMapperProcessor() { |