diff --git a/njzscloud-common/njzscloud-common-core/src/main/java/com/njzscloud/common/core/mitt/Mitt.java b/njzscloud-common/njzscloud-common-core/src/main/java/com/njzscloud/common/core/mitt/Mitt.java new file mode 100644 index 0000000..31f3899 --- /dev/null +++ b/njzscloud-common/njzscloud-common-core/src/main/java/com/njzscloud/common/core/mitt/Mitt.java @@ -0,0 +1,57 @@ +package com.njzscloud.common.core.mitt; + +import com.njzscloud.common.core.thread.ThreadPool; +import lombok.extern.slf4j.Slf4j; + +import java.util.LinkedList; +import java.util.List; +import java.util.Map; +import java.util.concurrent.ConcurrentHashMap; + +@Slf4j +public class Mitt { + private static final Map, List>> POOL = new ConcurrentHashMap<>(); + private static final Map> VOID_POOL = new ConcurrentHashMap<>(); + + public static void on(MittEvent mittEvent, MittHandler handlerIns) { + POOL.compute(mittEvent, (k, v) -> { + if (v == null) v = new LinkedList<>(); + v.add(handlerIns); + return v; + }); + } + + public static void emit(MittEvent mittEvent, T t) { + POOL.computeIfPresent(mittEvent, (k, v) -> { + for (MittHandler handlerIns : v) { + ThreadPool.runAsync(() -> handlerIns.on0(t)) + .exceptionally(e -> { + log.error("执行失败,事件名称:{}", mittEvent, e); + return null; + }); + } + return v; + }); + } + + public static void on(MittVoidEvent mittEvent, MittVoidHandler handlerIns) { + VOID_POOL.compute(mittEvent, (k, v) -> { + if (v == null) v = new LinkedList<>(); + v.add(handlerIns); + return v; + }); + } + + public static void emit(MittVoidEvent mittEvent) { + VOID_POOL.computeIfPresent(mittEvent, (k, v) -> { + for (MittVoidHandler handlerIns : v) { + ThreadPool.runAsync(handlerIns::on0) + .exceptionally(e -> { + log.error("执行失败,事件名称:{}", mittEvent, e); + return null; + }); + } + return v; + }); + } +} diff --git a/njzscloud-common/njzscloud-common-core/src/main/java/com/njzscloud/common/core/mitt/MittEvent.java b/njzscloud-common/njzscloud-common-core/src/main/java/com/njzscloud/common/core/mitt/MittEvent.java new file mode 100644 index 0000000..b6fab00 --- /dev/null +++ b/njzscloud-common/njzscloud-common-core/src/main/java/com/njzscloud/common/core/mitt/MittEvent.java @@ -0,0 +1,13 @@ +package com.njzscloud.common.core.mitt; + +public interface MittEvent { + default void emit(T t) { + Mitt.emit(this, t); + } + + default void on(MittHandler handlerIns) { + Mitt.on(this, handlerIns); + } + + void event(); +} diff --git a/njzscloud-common/njzscloud-common-core/src/main/java/com/njzscloud/common/core/mitt/MittHandler.java b/njzscloud-common/njzscloud-common-core/src/main/java/com/njzscloud/common/core/mitt/MittHandler.java new file mode 100644 index 0000000..94d48ab --- /dev/null +++ b/njzscloud-common/njzscloud-common-core/src/main/java/com/njzscloud/common/core/mitt/MittHandler.java @@ -0,0 +1,11 @@ +package com.njzscloud.common.core.mitt; + +@FunctionalInterface +public interface MittHandler { + void on(T msg); + + @SuppressWarnings("unchecked") + default void on0(Object msg) { + on((T) msg); + } +} diff --git a/njzscloud-common/njzscloud-common-core/src/main/java/com/njzscloud/common/core/mitt/MittVoidEvent.java b/njzscloud-common/njzscloud-common-core/src/main/java/com/njzscloud/common/core/mitt/MittVoidEvent.java new file mode 100644 index 0000000..c59cc4c --- /dev/null +++ b/njzscloud-common/njzscloud-common-core/src/main/java/com/njzscloud/common/core/mitt/MittVoidEvent.java @@ -0,0 +1,14 @@ +package com.njzscloud.common.core.mitt; + +public interface MittVoidEvent { + default void emit() { + Mitt.emit(this); + } + + default void on(MittVoidHandler handlerIns) { + Mitt.on(this, handlerIns); + } + + void event(); + +} diff --git a/njzscloud-common/njzscloud-common-core/src/main/java/com/njzscloud/common/core/mitt/MittVoidHandler.java b/njzscloud-common/njzscloud-common-core/src/main/java/com/njzscloud/common/core/mitt/MittVoidHandler.java new file mode 100644 index 0000000..4519c27 --- /dev/null +++ b/njzscloud-common/njzscloud-common-core/src/main/java/com/njzscloud/common/core/mitt/MittVoidHandler.java @@ -0,0 +1,6 @@ +package com.njzscloud.common.core.mitt; + +public interface MittVoidHandler { + + void on0(); +} diff --git a/njzscloud-svr/src/main/java/com/njzscloud/supervisory/config/SpringReady.java b/njzscloud-svr/src/main/java/com/njzscloud/supervisory/config/SpringReady.java index b393ac8..68e595a 100644 --- a/njzscloud-svr/src/main/java/com/njzscloud/supervisory/config/SpringReady.java +++ b/njzscloud-svr/src/main/java/com/njzscloud/supervisory/config/SpringReady.java @@ -1,13 +1,19 @@ package com.njzscloud.supervisory.config; +import com.njzscloud.common.security.util.SecurityUtil; import org.springframework.boot.context.event.ApplicationReadyEvent; import org.springframework.context.event.EventListener; import org.springframework.stereotype.Component; +import java.util.List; + +import static com.njzscloud.supervisory.event.SysMittEvent.COERCE_LOGOUT; + @Component public class SpringReady { @EventListener(ApplicationReadyEvent.class) public void onApplicationReady() { + COERCE_LOGOUT.on((List ids) -> ids.forEach(SecurityUtil::removeToken)); } } diff --git a/njzscloud-svr/src/main/java/com/njzscloud/supervisory/event/SysMittEvent.java b/njzscloud-svr/src/main/java/com/njzscloud/supervisory/event/SysMittEvent.java new file mode 100644 index 0000000..39b8c9a --- /dev/null +++ b/njzscloud-svr/src/main/java/com/njzscloud/supervisory/event/SysMittEvent.java @@ -0,0 +1,11 @@ +package com.njzscloud.supervisory.event; + +import com.njzscloud.common.core.mitt.MittEvent; + +import java.util.List; + +public class SysMittEvent { + public static MittEvent> COERCE_LOGOUT = () -> { + }; + +} diff --git a/njzscloud-svr/src/main/java/com/njzscloud/supervisory/sys/role/mapper/RoleMapper.java b/njzscloud-svr/src/main/java/com/njzscloud/supervisory/sys/role/mapper/RoleMapper.java index 29a5e8a..a27fab4 100644 --- a/njzscloud-svr/src/main/java/com/njzscloud/supervisory/sys/role/mapper/RoleMapper.java +++ b/njzscloud-svr/src/main/java/com/njzscloud/supervisory/sys/role/mapper/RoleMapper.java @@ -26,4 +26,6 @@ public interface RoleMapper extends BaseMapper { List listUserRole(@Param("userId") Long userId); Boolean candel(@Param("ew") QueryWrapper ew); + + List users(@Param("id") Long id); } diff --git a/njzscloud-svr/src/main/java/com/njzscloud/supervisory/sys/role/service/RoleService.java b/njzscloud-svr/src/main/java/com/njzscloud/supervisory/sys/role/service/RoleService.java index 303b261..4387387 100644 --- a/njzscloud-svr/src/main/java/com/njzscloud/supervisory/sys/role/service/RoleService.java +++ b/njzscloud-svr/src/main/java/com/njzscloud/supervisory/sys/role/service/RoleService.java @@ -28,6 +28,7 @@ import java.util.Set; import java.util.stream.Collectors; import static com.njzscloud.common.security.contant.Constants.ROLE_ADMIN; +import static com.njzscloud.supervisory.event.SysMittEvent.COERCE_LOGOUT; /** * 角色表 @@ -126,5 +127,7 @@ public class RoleService extends ServiceImpl implements Set res = bindResParam.getRes(); Assert.notEmpty(res, () -> Exceptions.clierr("未指定资源")); roleResService.bindRoleRes(id, res); + List ids = baseMapper.users(id); + COERCE_LOGOUT.emit(ids); } } diff --git a/njzscloud-svr/src/main/java/com/njzscloud/supervisory/sys/user/service/UserService.java b/njzscloud-svr/src/main/java/com/njzscloud/supervisory/sys/user/service/UserService.java index 7e0ad29..923801f 100644 --- a/njzscloud-svr/src/main/java/com/njzscloud/supervisory/sys/user/service/UserService.java +++ b/njzscloud-svr/src/main/java/com/njzscloud/supervisory/sys/user/service/UserService.java @@ -26,10 +26,13 @@ import lombok.extern.slf4j.Slf4j; import org.springframework.stereotype.Service; import org.springframework.transaction.annotation.Transactional; +import java.util.Collections; import java.util.List; import java.util.Set; import java.util.stream.Collectors; +import static com.njzscloud.supervisory.event.SysMittEvent.COERCE_LOGOUT; + /** * 用户信息表 */ @@ -152,6 +155,7 @@ public class UserService extends ServiceImpl implements public void disable(Long id, Boolean disable) { userAccountService.update(Wrappers.lambdaUpdate().eq(UserAccountEntity::getUserId, id) .set(UserAccountEntity::getDisabled, disable)); + COERCE_LOGOUT.emit(Collections.singletonList(id)); } public void bindRole(BindRoleParam bindRoleParam) { @@ -161,16 +165,18 @@ public class UserService extends ServiceImpl implements Set roles = bindRoleParam.getRoles(); Assert.notEmpty(roles, () -> Exceptions.clierr("未指定角色")); userRoleService.bindUserRole(id, roles); - + COERCE_LOGOUT.emit(Collections.singletonList(id)); } public void bindClient(Long id, Integer clientCode) { userAccountService.update(Wrappers.lambdaUpdate().eq(UserAccountEntity::getUserId, id) .set(UserAccountEntity::getClientCode, clientCode)); + COERCE_LOGOUT.emit(Collections.singletonList(id)); } public void resetPasswd(Long id) { userAccountService.update(Wrappers.lambdaUpdate().eq(UserAccountEntity::getUserId, id) .set(UserAccountEntity::getSecret, EncryptUtil.encrypt("666666"))); + COERCE_LOGOUT.emit(Collections.singletonList(id)); } } diff --git a/njzscloud-svr/src/main/resources/mapper/sys/role/RoleMapper.xml b/njzscloud-svr/src/main/resources/mapper/sys/role/RoleMapper.xml index edeeb70..728b037 100644 --- a/njzscloud-svr/src/main/resources/mapper/sys/role/RoleMapper.xml +++ b/njzscloud-svr/src/main/resources/mapper/sys/role/RoleMapper.xml @@ -26,4 +26,10 @@ ${ew.customSqlSegment} + diff --git a/z-doc/pdma/njzscloud-dispose.pdma b/z-doc/pdma/njzscloud-dispose.pdma index 7405a68..57e2038 100644 --- a/z-doc/pdma/njzscloud-dispose.pdma +++ b/z-doc/pdma/njzscloud-dispose.pdma @@ -11,7 +11,7 @@ "driverFiles": "mysql-connector-j-8.3.0.jar", "jdbcReferDriver": "com.mysql.cj.jdbc.Driver", "jdbcReferUrl": "jdbc:mysql://[ip]:[port]/[dbname]?characterEncoding=UTF-8&useSSL=false&useUnicode=true&serverTimezone=UTC", - "tableCreate": "DROP TABLE IF EXISTS {{=it.defKey}};\r\nCREATE TABLE {{=it.defKey}}\r\n(\r\n{{ pkList = [] ; }}\r\n{{~it.fields:field:index}}\r\n {{? field.primaryKey }}{{ pkList.push(field.defKey) }}{{?}}\r\n {{=field.defKey}} {{=field.dbDataType}}{{?field.dataLen>0}}{{='('}}{{=field.dataLen}}{{?field.numScale>0}}{{=','}}{{=field.numScale}}{{?}}{{=')'}}{{?}} {{= field.defaultValue ? 'DEFAULT' + ' ' + field.defaultValue : '' }} {{= field.notNull ? 'NOT NULL' : 'NULL' }} {{= field.autoIncrement ? 'AUTO_INCREMENT' : '' }} COMMENT '{{=field.intro ? field.defName + ';' + field.intro : field.defName}}'{{= index < it.fields.length-1 ? ',' : ( pkList.length>0 ? ',' :'' ) }}{{~}}\r\n{{? pkList.length >0 }}\r\n PRIMARY KEY ({{~pkList:pkName:i}}{{= pkName }}{{= i it.itemKey + '-->' + it.itemName).join('、');\r\n }\r\n \r\n let tableComment = (it.intro != null && it.intro.length > 0)? (it.defName + ';' + it.intro) : it.defName;\r\n}}\r\nDROP TABLE IF EXISTS {{=it.defKey}};\r\nCREATE TABLE {{=it.defKey}}\r\n(\r\n{{ pkList = [] ; }}\r\n{{~it.fields:field:index}}\r\n {{? field.primaryKey }}{{ pkList.push(field.defKey) }}{{?}}\r\n {{=field.defKey}} {{=field.dbDataType}}{{?field.dataLen>0}}{{='('}}{{=field.dataLen}}{{?field.numScale>0}}{{=','}}{{=field.numScale}}{{?}}{{=')'}}{{?}} {{= field.defaultValue ? 'DEFAULT' + ' ' + field.defaultValue : '' }} {{= field.notNull ? 'NOT NULL' : 'NULL' }} {{= field.autoIncrement ? 'AUTO_INCREMENT' : '' }} COMMENT '{{=field.intro ? field.defName + ';' + field.intro : field.defName}}{{=getDict(field.dictItems)}}'{{= index < it.fields.length-1 ? ',' : ( pkList.length>0 ? ',' :'' ) }}{{~}}\r\n{{? pkList.length >0 }}\r\n PRIMARY KEY ({{~pkList:pkName:i}}{{= pkName }}{{= i 0}}\nALTER TABLE {{= tableKey }} ADD PRIMARY KEY ({{~indexFields:field:i}}`{{= field.defKey }}`{{= i < indexFields.length-1 ? ',' : '' }}{{~}});\n{{?}}\n{{?}}\n{{? updateKeys.some((item) => item === 'defName' || item === 'intro') }}ALTER TABLE {{= tableKey }} COMMENT '{{=it.func.strJoin(defName, intro, \";\", true)}}'; {{?}}\n{{? updateKeys.some((item) => item === 'defKey') }}ALTER TABLE {{= schemaName }}{{=it.defKey}} RENAME TO {{= schemaName }}{{=defKey}};{{?}}\n", "tableDelete": "{{\n let schemaName = it.schemaName ? `${it.schemaName}.` : '';\n const tableKey = `${schemaName}${it.defKey}`;\n}}\nDROP TABLE IF EXISTS {{= tableKey }};", "columnCreate": "{{\r\n let fieldsUpdate = it.fieldsUpdate;\r\n const computeLenAndNum = (dataLen, numScale, maxDataLen, maxNumScale) => {\r\n if(!dataLen || dataLen <= 0) {\r\n return '';\r\n }\r\n let currentDataLen = dataLen, currentNumScale = numScale;\r\n if(dataLen >= maxDataLen) {\r\n currentDataLen = maxDataLen;\r\n }\r\n if(!numScale || numScale <= 0) {\r\n return `(${currentDataLen},0)`;\r\n }\r\n if(currentNumScale > maxNumScale) {\r\n currentNumScale = maxNumScale\r\n }\r\n if(currentNumScale > currentDataLen && currentDataLen <= maxNumScale) {\r\n currentNumScale = currentDataLen;\r\n }\r\n return `(${currentDataLen},${currentNumScale})`;\r\n };\r\n const computeDefaultValue = (field) => {\r\n const { defaultValue, dbDataType, primaryKey } = field;\r\n if(!defaultValue) {\r\n return '';\r\n }\r\n if(dbDataType.toUpperCase().endsWith('BLOB') || \r\n dbDataType.toUpperCase().endsWith('GEOMETRY') || \r\n dbDataType.toUpperCase().endsWith('TEXT') || \r\n dbDataType.toUpperCase().endsWith('JSON')) {\r\n return '';\r\n } else if(dbDataType.toUpperCase() === 'ENUM' ||\r\n dbDataType.toUpperCase() === 'SET') {\r\n return ` DEFAULT \"${defaultValue}\"`;\r\n } else {\r\n return ` DEFAULT ${defaultValue}`;\r\n }\r\n };\r\n const computeDatatype = (field) => {\r\n const { dbDataType, dataLen, numScale, defaultValue } = field;\r\n if(!dbDataType) {\r\n return '';\r\n }\r\n if(dbDataType.toUpperCase() === 'VARCHAR' ||\r\n dbDataType.toUpperCase() === 'NVARCHAR' ||\r\n dbDataType.toUpperCase() === 'VARBINARY') {\r\n return `${dbDataType}(${dataLen ? dataLen : 128})`;\r\n } else if(dbDataType.toUpperCase() === 'DATE' ||\r\n dbDataType.toUpperCase() === 'YEAR' ||\r\n dbDataType.toUpperCase() === 'TINYTEXT' ||\r\n dbDataType.toUpperCase() === 'MEDIUMTEXT' ||\r\n dbDataType.toUpperCase() === 'LONGTEXT' ||\r\n dbDataType.toUpperCase() === 'TINYBLOB' ||\r\n dbDataType.toUpperCase() === 'MEDIUMBLOB' ||\r\n dbDataType.toUpperCase() === 'LONGBLOB' ||\r\n dbDataType.toUpperCase() === 'BOOLEAN' ||\r\n dbDataType.toUpperCase() === 'FLOAT' ||\r\n dbDataType.toUpperCase() === 'INT' ||\r\n dbDataType.toUpperCase() === 'JSON' ) {\r\n return dbDataType;\r\n } else if(dbDataType.toUpperCase() === 'ENUM' ||\r\n dbDataType.toUpperCase() === 'SET' ) {\r\n return `${dbDataType}(${defaultValue})`;\r\n } else if(dbDataType.toUpperCase() === 'TIME' ||\r\n dbDataType.toUpperCase() === 'DATETIME' ||\r\n dbDataType.toUpperCase() === 'TIMESTAMP') {\r\n return `${dbDataType}${(dataLen && dataLen >= 0 && dataLen <= 6) ? `(${dataLen})` : ''}`;\r\n } else if(dbDataType.toUpperCase() === 'DOUBLE') {\r\n return `${dbDataType}${computeLenAndNum(dataLen, numScale, 255, 30)}`;\r\n } else if(dbDataType.toUpperCase() === 'DECIMAL') {\r\n return `${dbDataType}${computeLenAndNum(dataLen, numScale, 65, 30)}`;\r\n } else if(dataLen && dataLen > 0) {\r\n return `${dbDataType}(${dataLen})`;\r\n }\r\n return `${dbDataType}`;\r\n };\r\n let schemaName = it.schemaName ? `${it.schemaName}.` : '';\r\n const tableKey = `${schemaName}${it.defKey}`;\r\n}}\r\n{{~fieldsUpdate:field:index}}\r\nALTER TABLE {{= tableKey }} ADD COLUMN `{{=field.defKey}}` {{=computeDatatype(field)}} {{= field.notNull ? 'NOT NULL' : '' }}{{= field.autoIncrement ? ' AUTO_INCREMENT ' : '' }}{{= computeDefaultValue(field)}} {{? field.defName || field.intro }} COMMENT '{{=it.func.strJoin(field.defName, field.intro, \";\", true)}}'{{?}};\r\n{{~}}\r\n", @@ -3162,7 +3162,7 @@ }, { "id": "C2ED7A76-B66C-4323-996C-0EB696D22C68", - "defKey": "goods", + "defKey": "gds", "defName": "产品", "classifyType": "MANUAL", "manualClassify": "[\"P\"]", @@ -3334,24 +3334,34 @@ "orderValue": 5 }, { - "refObjectId": "F13139EC-3554-4C1E-8C09-1A6C238C539A", + "refObjectId": "3A0C2179-8576-40CB-8A4D-647318E432BC", "refObjectType": "P", "orderValue": 6 }, { - "refObjectId": "F573B178-BE6E-48AB-8AF0-6121E7320EB9", + "refObjectId": "F13139EC-3554-4C1E-8C09-1A6C238C539A", "refObjectType": "P", "orderValue": 7 }, { - "refObjectId": "14DAB3C1-5814-401B-AC62-E15036FE31F6", + "refObjectId": "F573B178-BE6E-48AB-8AF0-6121E7320EB9", "refObjectType": "P", "orderValue": 8 }, { - "refObjectId": "38B910DC-4D79-448E-9EA4-CED1E92B03DE", + "refObjectId": "14DAB3C1-5814-401B-AC62-E15036FE31F6", "refObjectType": "P", "orderValue": 9 + }, + { + "refObjectId": "38B910DC-4D79-448E-9EA4-CED1E92B03DE", + "refObjectType": "P", + "orderValue": 10 + }, + { + "refObjectId": "6817DD07-3355-4E35-924A-F383FEF78E86", + "refObjectType": "P", + "orderValue": 11 } ], "diagramRefs": [], @@ -3674,6 +3684,16 @@ "refObjectId": "8B1DE3E0-44C6-4C3E-9002-B778841EC3B3", "refObjectType": "P", "orderValue": 63 + }, + { + "refObjectId": "6817DD07-3355-4E35-924A-F383FEF78E86", + "refObjectType": "P", + "orderValue": 64 + }, + { + "refObjectId": "3A0C2179-8576-40CB-8A4D-647318E432BC", + "refObjectType": "P", + "orderValue": 65 } ], "diagramRefs": [] @@ -12730,7 +12750,7 @@ { "id": "133C0B4F-2437-4D95-A692-C34553963E28", "schemaName": null, - "defKey": "goods_category", + "defKey": "gds_goods_category", "defName": "产品分类", "intro": "", "type": "P", @@ -12781,6 +12801,74 @@ "attr20": "", "origin": "PASTE" }, + { + "id": "EBF87EB9-8CD7-454E-8524-8AD01F924E4C", + "defKey": "biz_type", + "defName": "业务类型", + "intro": "字典代码:biz_type", + "baseDataType": "VARCHAR", + "bizDomainType": "", + "dbDataType": "VARCHAR", + "dataLen": 16, + "numScale": "", + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "biz_type", + "stndFieldId": "", + "stndDictKey": "biz_type", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "Manual", + "dictItems": [ + { + "itemKey": "ZaiShengPin", + "itemName": "再生品", + "parentKey": "", + "intro": "", + "id": "69377C1B-B55E-464E-AD4B-16C5A920931C" + }, + { + "itemKey": "HuiShouPin", + "itemName": "回收品", + "parentKey": "", + "intro": "", + "id": "00CE1E03-41C5-473C-AF3A-F0F06F4311A0" + }, + { + "itemKey": "QiTa", + "itemName": "其他", + "parentKey": "", + "intro": "", + "id": "0CE8D097-614F-487C-A556-075A5B16AE38" + } + ], + "fieldTier": "", + "mark": null, + "attr1": "", + "attr2": "", + "attr3": "", + "attr4": "", + "attr5": "", + "attr6": "", + "attr7": "", + "attr8": "", + "attr9": "", + "attr10": "", + "attr11": "", + "attr12": "", + "attr13": "", + "attr14": "", + "attr15": "", + "attr16": "", + "attr17": "", + "attr18": "", + "attr19": "", + "attr20": "", + "origin": "UI" + }, { "id": "1546E246-FD53-435C-8956-4F453BA9C096", "defKey": "category_name", @@ -12789,7 +12877,7 @@ "baseDataType": "VARCHAR", "bizDomainType": "", "dbDataType": "VARCHAR", - "dataLen": 255, + "dataLen": 128, "numScale": "", "primaryKey": 0, "notNull": 1, @@ -12886,7 +12974,7 @@ "primaryKey": 0, "notNull": 1, "autoIncrement": 0, - "defaultValue": "", + "defaultValue": "0", "stndDictId": "", "stndFieldId": "", "stndDictKey": "", @@ -12919,74 +13007,6 @@ "attr20": "", "origin": "UI" }, - { - "id": "EBF87EB9-8CD7-454E-8524-8AD01F924E4C", - "defKey": "biz_type", - "defName": "业务类型", - "intro": "字典代码:biz_type", - "baseDataType": "VARCHAR", - "bizDomainType": "", - "dbDataType": "VARCHAR", - "dataLen": 16, - "numScale": "", - "primaryKey": 0, - "notNull": 1, - "autoIncrement": 0, - "defaultValue": "", - "stndDictId": "biz_type", - "stndFieldId": "", - "stndDictKey": "biz_type", - "stndFieldKey": "", - "stndComplianceLevel": "", - "stndComplianceType": "", - "dictFrom": "Manual", - "dictItems": [ - { - "itemKey": "ZaiShengPin", - "itemName": "再生品", - "parentKey": "", - "intro": "", - "id": "69377C1B-B55E-464E-AD4B-16C5A920931C" - }, - { - "itemKey": "HuiShouPin", - "itemName": "回收品", - "parentKey": "", - "intro": "", - "id": "00CE1E03-41C5-473C-AF3A-F0F06F4311A0" - }, - { - "itemKey": "QiTa", - "itemName": "其他", - "parentKey": "", - "intro": "", - "id": "0CE8D097-614F-487C-A556-075A5B16AE38" - } - ], - "fieldTier": "", - "mark": null, - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "attr10": "", - "attr11": "", - "attr12": "", - "attr13": "", - "attr14": "", - "attr15": "", - "attr16": "", - "attr17": "", - "attr18": "", - "attr19": "", - "attr20": "", - "origin": "UI" - }, { "id": "33025475-7640-46C6-93AE-79AEAFD628FF", "defKey": "creator_id", @@ -13037,7 +13057,7 @@ "id": "FB6B8625-AE7B-4463-BB71-40F80F97E934", "defKey": "modifier_id", "defName": "修改人 Id", - "intro": " sys_user.id", + "intro": "sys_user.id", "baseDataType": "BIGINT", "bizDomainType": "", "dbDataType": "BIGINT", @@ -13224,7 +13244,7 @@ { "id": "286B768E-73F1-4390-9905-23684B92761F", "schemaName": null, - "defKey": "goods", + "defKey": "gds_goods", "defName": "产品", "intro": "", "type": "P", @@ -13275,52 +13295,6 @@ "attr20": "", "origin": "PASTE" }, - { - "id": "98E972DB-70DD-4096-A1ED-E71A906F991B", - "defKey": "sn", - "defName": "商品编码", - "intro": "", - "baseDataType": "VARCHAR", - "bizDomainType": "", - "dbDataType": "VARCHAR", - "dataLen": 128, - "numScale": "", - "primaryKey": 0, - "notNull": 1, - "autoIncrement": 0, - "defaultValue": "", - "stndDictId": "", - "stndFieldId": "", - "stndDictKey": "", - "stndFieldKey": "", - "stndComplianceLevel": "", - "stndComplianceType": "", - "dictFrom": "", - "dictItems": null, - "fieldTier": "", - "mark": null, - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "attr10": "", - "attr11": "", - "attr12": "", - "attr13": "", - "attr14": "", - "attr15": "", - "attr16": "", - "attr17": "", - "attr18": "", - "attr19": "", - "attr20": "", - "origin": "UI" - }, { "id": "20E8584E-F1DE-4620-8B6F-DE6EA3DB4AF0", "defKey": "goods_category_id", @@ -13368,9 +13342,9 @@ "origin": "UI" }, { - "id": "67A16293-6A68-407C-A045-CB085BD0A181", - "defKey": "spec_params", - "defName": "规格", + "id": "98E972DB-70DD-4096-A1ED-E71A906F991B", + "defKey": "sn", + "defName": "商品编码", "intro": "", "baseDataType": "VARCHAR", "bizDomainType": "", @@ -13380,7 +13354,7 @@ "primaryKey": 0, "notNull": 1, "autoIncrement": 0, - "defaultValue": "''", + "defaultValue": "", "stndDictId": "", "stndFieldId": "", "stndDictKey": "", @@ -13459,6 +13433,52 @@ "attr20": "", "origin": "UI" }, + { + "id": "67A16293-6A68-407C-A045-CB085BD0A181", + "defKey": "spec_params", + "defName": "规格", + "intro": "", + "baseDataType": "VARCHAR", + "bizDomainType": "", + "dbDataType": "VARCHAR", + "dataLen": 128, + "numScale": "", + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "''", + "stndDictId": "", + "stndFieldId": "", + "stndDictKey": "", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "", + "dictItems": null, + "fieldTier": "", + "mark": null, + "attr1": "", + "attr2": "", + "attr3": "", + "attr4": "", + "attr5": "", + "attr6": "", + "attr7": "", + "attr8": "", + "attr9": "", + "attr10": "", + "attr11": "", + "attr12": "", + "attr13": "", + "attr14": "", + "attr15": "", + "attr16": "", + "attr17": "", + "attr18": "", + "attr19": "", + "attr20": "", + "origin": "UI" + }, { "id": "DC0A7BFF-DBC9-4AA4-8202-00F1C31947AD", "defKey": "picture", @@ -13505,52 +13525,6 @@ "attr20": "", "origin": "PASTE" }, - { - "id": "69C36FA2-0F56-421C-9FF0-051FC563FE64", - "defName": "排序", - "intro": "", - "baseDataType": "INT", - "bizDomainType": "", - "dbDataType": "INT", - "dataLen": "", - "numScale": "", - "primaryKey": 0, - "notNull": 1, - "autoIncrement": 0, - "defaultValue": "", - "stndDictId": "", - "stndFieldId": "", - "stndDictKey": "", - "stndFieldKey": "", - "stndComplianceLevel": "", - "stndComplianceType": "", - "dictFrom": "", - "dictItems": [], - "fieldTier": "", - "mark": null, - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "attr10": "", - "attr11": "", - "attr12": "", - "attr13": "", - "attr14": "", - "attr15": "", - "attr16": "", - "attr17": "", - "attr18": "PDManer", - "attr19": "", - "attr20": "", - "origin": "UI", - "defKey": "sort" - }, { "id": "A6AF8486-5774-49B9-B501-F97503BE0842", "defKey": "unit", @@ -13735,6 +13709,52 @@ "attr20": "", "origin": "UI" }, + { + "id": "69C36FA2-0F56-421C-9FF0-051FC563FE64", + "defName": "排序", + "intro": "", + "baseDataType": "INT", + "bizDomainType": "", + "dbDataType": "INT", + "dataLen": "", + "numScale": "", + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "0", + "stndDictId": "", + "stndFieldId": "", + "stndDictKey": "", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "", + "dictItems": [], + "fieldTier": "", + "mark": null, + "attr1": "", + "attr2": "", + "attr3": "", + "attr4": "", + "attr5": "", + "attr6": "", + "attr7": "", + "attr8": "", + "attr9": "", + "attr10": "", + "attr11": "", + "attr12": "", + "attr13": "", + "attr14": "", + "attr15": "", + "attr16": "", + "attr17": "", + "attr18": "PDManer", + "attr19": "", + "attr20": "", + "origin": "UI", + "defKey": "sort" + }, { "id": "88E165E5-FC8F-4E07-87FD-A0E68628DFC4", "defKey": "canuse", @@ -17594,7 +17614,7 @@ "dbDataType": "BIGINT", "dataLen": null, "numScale": null, - "primaryKey": null, + "primaryKey": 1, "notNull": 1, "autoIncrement": null, "defaultValue": null, @@ -17684,7 +17704,7 @@ "baseDataType": "VARCHAR", "bizDomainType": "", "dbDataType": "VARCHAR", - "dataLen": 32, + "dataLen": 16, "numScale": null, "primaryKey": null, "notNull": 1, @@ -17784,6 +17804,52 @@ "updatedUserId": null, "createdUserId": null }, + { + "id": "BAF626BF-9660-4426-A0A0-40D62B021848", + "defKey": "customer_id", + "defName": "客户 Id", + "intro": "", + "baseDataType": "BIGINT", + "bizDomainType": "", + "dbDataType": "BIGINT", + "dataLen": "", + "numScale": "", + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "", + "stndFieldId": "", + "stndDictKey": "", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "", + "dictItems": null, + "fieldTier": "", + "mark": null, + "attr1": "", + "attr2": "", + "attr3": "", + "attr4": "", + "attr5": "", + "attr6": "", + "attr7": "", + "attr8": "", + "attr9": "", + "attr10": "", + "attr11": "", + "attr12": "", + "attr13": "", + "attr14": "", + "attr15": "", + "attr16": "", + "attr17": "", + "attr18": "", + "attr19": "", + "attr20": "", + "origin": "UI" + }, { "id": "7E8F630A-3B5F-464D-88E2-B8BB00D8374A", "defKey": "org_id", @@ -17795,7 +17861,7 @@ "dataLen": null, "numScale": null, "primaryKey": 0, - "notNull": 1, + "notNull": 0, "autoIncrement": 0, "defaultValue": "", "stndDictId": null, @@ -18169,8 +18235,8 @@ { "id": "EDDB991D-570B-493F-AF67-97787AC9BAFC", "type": "P", - "defKey": "fin_money_detail", - "defName": "资金明细", + "defKey": "fin_money_flow", + "defName": "资金流水", "intro": null, "schemaName": null, "props": null, @@ -18242,6 +18308,144 @@ "updatedUserId": null, "createdUserId": null }, + { + "id": "C8407B1C-1AD4-401B-B617-AD520461E229", + "defKey": "order_id", + "defName": "订单 Id", + "intro": null, + "orderValue": null, + "baseDataType": "BIGINT", + "bizDomainType": "", + "dbDataType": "BIGINT", + "dataLen": null, + "numScale": null, + "primaryKey": null, + "notNull": 0, + "autoIncrement": null, + "defaultValue": "", + "stndDictId": null, + "stndDictKey": null, + "stndFieldId": null, + "stndFieldKey": null, + "mark": null, + "attr1": null, + "attr2": null, + "attr3": null, + "attr4": null, + "attr5": null, + "attr6": null, + "attr7": null, + "attr8": null, + "attr9": null, + "attr10": null, + "attr11": null, + "attr12": null, + "attr13": null, + "attr14": null, + "attr15": null, + "attr16": null, + "attr17": null, + "attr18": null, + "attr19": null, + "attr20": null, + "origin": null, + "stndComplianceType": null, + "stndComplianceLevel": null, + "updatedUserId": null, + "createdUserId": null + }, + { + "id": "7EF3209A-5DCA-40EE-8F25-91E53A8C2E01", + "defKey": "order_sn", + "defName": "订单编号", + "intro": "", + "baseDataType": "VARCHAR", + "bizDomainType": "", + "dbDataType": "VARCHAR", + "dataLen": 128, + "numScale": "", + "primaryKey": 0, + "notNull": 0, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "", + "stndFieldId": "", + "stndDictKey": "", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "", + "dictItems": [], + "fieldTier": "", + "mark": null, + "attr1": "", + "attr2": "", + "attr3": "", + "attr4": "", + "attr5": "", + "attr6": "", + "attr7": "", + "attr8": "", + "attr9": "", + "attr10": "", + "attr11": "", + "attr12": "", + "attr13": "", + "attr14": "", + "attr15": "", + "attr16": "", + "attr17": "", + "attr18": "PDManer", + "attr19": "", + "attr20": "2F3E9658-790E-40CA-9242-7B5F2A4AECDC", + "origin": "UI" + }, + { + "id": "45FA8F09-9A54-47B2-A97C-D4A40F4687CD", + "defKey": "train_num", + "defName": "车次", + "intro": "", + "baseDataType": "INT", + "bizDomainType": "", + "dbDataType": "INT", + "dataLen": "", + "numScale": "", + "primaryKey": 0, + "notNull": 0, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "", + "stndFieldId": "", + "stndDictKey": "", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "", + "dictItems": null, + "fieldTier": "", + "mark": null, + "attr1": "", + "attr2": "", + "attr3": "", + "attr4": "", + "attr5": "", + "attr6": "", + "attr7": "", + "attr8": "", + "attr9": "", + "attr10": "", + "attr11": "", + "attr12": "", + "attr13": "", + "attr14": "", + "attr15": "", + "attr16": "", + "attr17": "", + "attr18": "", + "attr19": "", + "attr20": "", + "origin": "UI" + }, { "id": "82FE1E45-8AB6-42BD-9E01-767F77F98648", "defKey": "money_account_id", @@ -18435,7 +18639,7 @@ "baseDataType": "VARCHAR", "bizDomainType": "", "dbDataType": "VARCHAR", - "dataLen": 32, + "dataLen": 16, "numScale": null, "primaryKey": null, "notNull": 1, @@ -18510,52 +18714,6 @@ } ] }, - { - "id": "C8407B1C-1AD4-401B-B617-AD520461E229", - "defKey": "order_id", - "defName": "订单 Id", - "intro": null, - "orderValue": null, - "baseDataType": "BIGINT", - "bizDomainType": "", - "dbDataType": "BIGINT", - "dataLen": null, - "numScale": null, - "primaryKey": null, - "notNull": 1, - "autoIncrement": null, - "defaultValue": "", - "stndDictId": null, - "stndDictKey": null, - "stndFieldId": null, - "stndFieldKey": null, - "mark": null, - "attr1": null, - "attr2": null, - "attr3": null, - "attr4": null, - "attr5": null, - "attr6": null, - "attr7": null, - "attr8": null, - "attr9": null, - "attr10": null, - "attr11": null, - "attr12": null, - "attr13": null, - "attr14": null, - "attr15": null, - "attr16": null, - "attr17": null, - "attr18": null, - "attr19": null, - "attr20": null, - "origin": null, - "stndComplianceType": null, - "stndComplianceLevel": null, - "updatedUserId": null, - "createdUserId": null - }, { "id": "4C7365AD-B9B7-4F4F-8C14-FD3C14483097", "defKey": "memo", @@ -18606,7 +18764,7 @@ "id": "8F8561D4-DE39-4E27-B842-595BD8E078D3", "defKey": "creator_id", "defName": "创建人 Id", - "intro": " sys_user.id", + "intro": "sys_user.id", "baseDataType": "BIGINT", "bizDomainType": "", "dbDataType": "BIGINT", @@ -18968,6 +19126,52 @@ "updatedUserId": null, "createdUserId": null }, + { + "id": "24A96D47-5054-428A-80E7-135F9DF7B1BB", + "defKey": "customer_id", + "defName": "客户 Id", + "intro": "cst_customer.id", + "baseDataType": "BIGINT", + "bizDomainType": "", + "dbDataType": "BIGINT", + "dataLen": "", + "numScale": "", + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "", + "stndFieldId": "", + "stndDictKey": "", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "", + "dictItems": null, + "fieldTier": "", + "mark": null, + "attr1": "", + "attr2": "", + "attr3": "", + "attr4": "", + "attr5": "", + "attr6": "", + "attr7": "", + "attr8": "", + "attr9": "", + "attr10": "", + "attr11": "", + "attr12": "", + "attr13": "", + "attr14": "", + "attr15": "", + "attr16": "", + "attr17": "", + "attr18": "", + "attr19": "", + "attr20": "", + "origin": "PASTE" + }, { "id": "C8AB1896-D05E-4D15-8A35-7BD55CCC2E49", "defKey": "org_id", @@ -19539,7 +19743,7 @@ "id": "1959BF80-867D-4AF4-BC96-BE5805B7DEBF", "defKey": "modifier_id", "defName": "修改人 Id", - "intro": " sys_user.id", + "intro": "sys_user.id", "baseDataType": "BIGINT", "bizDomainType": "", "dbDataType": "BIGINT", @@ -20229,7 +20433,7 @@ "baseDataType": "VARCHAR", "bizDomainType": "", "dbDataType": "VARCHAR", - "dataLen": 64, + "dataLen": 16, "numScale": "", "primaryKey": 0, "notNull": 1, @@ -20365,7 +20569,7 @@ "bizDomainType": "", "dbDataType": "DECIMAL", "dataLen": 10, - "numScale": 6, + "numScale": 3, "primaryKey": 0, "notNull": 1, "autoIncrement": 0, @@ -20581,15 +20785,15 @@ "defKey": "initial_quantity", "defName": "起步量", "intro": "", - "baseDataType": "DECIMAL", + "baseDataType": "INT", "bizDomainType": "", - "dbDataType": "DECIMAL", - "dataLen": 16, - "numScale": 6, + "dbDataType": "INT", + "dataLen": "", + "numScale": "", "primaryKey": 0, "notNull": 1, "autoIncrement": 0, - "defaultValue": "0.0", + "defaultValue": "0", "stndDictId": "", "stndFieldId": "", "stndDictKey": "", @@ -20627,15 +20831,15 @@ "defKey": "every_quantity", "defName": "每档的量", "intro": "", - "baseDataType": "DECIMAL", + "baseDataType": "INT", "bizDomainType": "", - "dbDataType": "DECIMAL", - "dataLen": 16, - "numScale": 6, + "dbDataType": "INT", + "dataLen": "", + "numScale": "", "primaryKey": 0, "notNull": 1, "autoIncrement": 0, - "defaultValue": "0.0", + "defaultValue": "0", "stndDictId": "", "stndFieldId": "", "stndDictKey": "", @@ -20672,7 +20876,7 @@ "id": "99BD14DF-F3A1-46A7-8238-3CC7B7AA3745", "defKey": "user_scope", "defName": "适用用户", - "intro": "结构类型:{\n strategy: None | All | Specify,\n ids: long[]\n}", + "intro": "结构类型:{strategy: None | All | Specify,ids:long[]}", "baseDataType": "TEXT", "bizDomainType": "", "dbDataType": "TEXT", @@ -20740,7 +20944,7 @@ "id": "2FCE3A67-11F3-434C-A3EB-D7792AFF623D", "defKey": "station_scope", "defName": "适用站点", - "intro": "结构类型:{\n strategy: None | All | Specify,\n ids: long[]\n}", + "intro": "结构类型:{strategy: None | All | Specify,ids:long[]}", "baseDataType": "TEXT", "bizDomainType": "", "dbDataType": "TEXT", @@ -20808,7 +21012,7 @@ "id": "DE960F53-340C-44C7-8108-67F725944E22", "defKey": "goods_scope", "defName": "适用产品", - "intro": "结构类型:{\n strategy: None | All | Specify,\n ids: long[]\n}", + "intro": "结构类型:{strategy: None | All | Specify,ids:long[]}", "baseDataType": "TEXT", "bizDomainType": "", "dbDataType": "TEXT", @@ -22523,7 +22727,7 @@ "baseDataType": "VARCHAR", "bizDomainType": "", "dbDataType": "VARCHAR", - "dataLen": 32, + "dataLen": 16, "numScale": "", "primaryKey": 0, "notNull": 1, @@ -22581,10 +22785,10 @@ "defKey": "uscc", "defName": "统一社会信用代码", "intro": null, - "baseDataType": "VARCHAR", + "baseDataType": "CHAR", "bizDomainType": "", - "dbDataType": "VARCHAR", - "dataLen": 255, + "dbDataType": "CHAR", + "dataLen": 18, "numScale": null, "primaryKey": 0, "notNull": 1, @@ -22630,7 +22834,7 @@ "baseDataType": "VARCHAR", "bizDomainType": "", "dbDataType": "VARCHAR", - "dataLen": 255, + "dataLen": 128, "numScale": null, "primaryKey": 0, "notNull": 1, @@ -22771,7 +22975,7 @@ "dataLen": null, "numScale": null, "primaryKey": 0, - "notNull": 1, + "notNull": 0, "autoIncrement": 0, "defaultValue": null, "stndDictId": null, @@ -22814,7 +23018,7 @@ "baseDataType": "VARCHAR", "bizDomainType": "", "dbDataType": "VARCHAR", - "dataLen": 255, + "dataLen": 128, "numScale": null, "primaryKey": 0, "notNull": 1, @@ -22857,10 +23061,10 @@ "defKey": "idcard", "defName": "法人身份证号", "intro": null, - "baseDataType": "VARCHAR", + "baseDataType": "CHAR", "bizDomainType": "", - "dbDataType": "VARCHAR", - "dataLen": 512, + "dbDataType": "CHAR", + "dataLen": 18, "numScale": null, "primaryKey": 0, "notNull": 1, @@ -23228,7 +23432,7 @@ "baseDataType": "VARCHAR", "bizDomainType": "", "dbDataType": "VARCHAR", - "dataLen": 16, + "dataLen": 64, "numScale": null, "primaryKey": 0, "notNull": 1, @@ -23879,7 +24083,7 @@ "id": "14C8CD6D-9945-48AC-B4DB-9876B85FA61D", "defKey": "user_id", "defName": "用户 Id", - "intro": "", + "intro": "一个用户可以有多个身份", "baseDataType": "BIGINT", "bizDomainType": "", "dbDataType": "BIGINT", @@ -23925,11 +24129,11 @@ "id": "62E2255A-F990-47D7-A0B5-B817B82D62E3", "defKey": "identity_category", "defName": "身份类型", - "intro": "产废、清运、采购、司机", + "intro": "多个身份多条数据", "baseDataType": "VARCHAR", "bizDomainType": "", "dbDataType": "VARCHAR", - "dataLen": 32, + "dataLen": 16, "numScale": "", "primaryKey": 0, "notNull": 1, @@ -24007,14 +24211,14 @@ "id": "6A72C42D-5DF7-425F-B444-FD4FB5B2CEA0", "defKey": "org_id", "defName": "组织信息 Id", - "intro": "", + "intro": "cst_org.id", "baseDataType": "BIGINT", "bizDomainType": "", "dbDataType": "BIGINT", "dataLen": "", "numScale": "", "primaryKey": 0, - "notNull": 1, + "notNull": 0, "autoIncrement": 0, "defaultValue": "", "stndDictId": "", @@ -24141,6 +24345,74 @@ "attr20": null, "origin": "PASTE" }, + { + "id": "73F1C5E6-5591-4A45-9066-B03D773BFD81", + "defKey": "settlement_way", + "defName": "结算方式", + "intro": "", + "baseDataType": "VARCHAR", + "bizDomainType": "", + "dbDataType": "VARCHAR", + "dataLen": 16, + "numScale": "", + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "'XianFu'", + "stndDictId": "settlement_way", + "stndFieldId": "", + "stndDictKey": "settlement_way", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "Manual", + "dictItems": [ + { + "itemKey": "YueJie", + "itemName": "月结", + "parentKey": "", + "intro": "", + "id": "21E8CE9A-A4E4-43EC-802F-C62332F485CE" + }, + { + "itemKey": "YuE", + "itemName": "余额", + "parentKey": "", + "intro": "", + "id": "1E3F7458-C19E-481F-A6BB-881CB6E576CD" + }, + { + "itemKey": "XianFu", + "itemName": "现付", + "parentKey": "", + "intro": "", + "id": "02F37949-4DCD-4BF8-93DB-76D974A1BC47" + } + ], + "fieldTier": "", + "mark": null, + "attr1": "", + "attr2": "", + "attr3": "", + "attr4": "", + "attr5": "", + "attr6": "", + "attr7": "", + "attr8": "", + "attr9": "", + "attr10": "", + "attr11": "", + "attr12": "", + "attr13": "", + "attr14": "", + "attr15": "", + "attr16": "", + "attr17": "", + "attr18": "", + "attr19": "", + "attr20": "", + "origin": "PASTE" + }, { "id": "093B92AA-B33B-4362-B091-564B271679AD", "defKey": "manager", @@ -24154,7 +24426,7 @@ "primaryKey": 0, "notNull": 1, "autoIncrement": 0, - "defaultValue": "0", + "defaultValue": "", "stndDictId": "", "stndFieldId": "", "stndDictKey": "", @@ -24475,10 +24747,10 @@ "origin": "PASTE" }, { - "id": "D3603202-48B0-46D6-87B6-BC4943E82C58", - "defKey": "org_id", - "defName": "归属企业", - "intro": "", + "id": "FAE2B279-DF0D-4687-98CE-C551D28972C7", + "defKey": "customer_id", + "defName": "归属客户 Id", + "intro": "cst_customer.id", "baseDataType": "BIGINT", "bizDomainType": "", "dbDataType": "BIGINT", @@ -24520,6 +24792,52 @@ "attr20": "", "origin": "PASTE" }, + { + "id": "D3603202-48B0-46D6-87B6-BC4943E82C58", + "defKey": "org_id", + "defName": "归属组织", + "intro": "", + "baseDataType": "BIGINT", + "bizDomainType": "", + "dbDataType": "BIGINT", + "dataLen": "", + "numScale": "", + "primaryKey": 0, + "notNull": 0, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "", + "stndFieldId": "", + "stndDictKey": "", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "", + "dictItems": null, + "fieldTier": "", + "mark": null, + "attr1": "", + "attr2": "", + "attr3": "", + "attr4": "", + "attr5": "", + "attr6": "", + "attr7": "", + "attr8": "", + "attr9": "", + "attr10": "", + "attr11": "", + "attr12": "", + "attr13": "", + "attr14": "", + "attr15": "", + "attr16": "", + "attr17": "", + "attr18": "", + "attr19": "", + "attr20": "", + "origin": "PASTE" + }, { "id": "7E3DB6C8-9954-4E57-839D-BD514764EA3A", "defKey": "license_plate", @@ -25452,63 +25770,17 @@ "origin": "PASTE" }, { - "id": "5DEF3B34-F324-48D1-AF0C-53972E632DCD", - "defKey": "station_id", - "defName": "站点 Id", - "intro": "cst_station.id", + "id": "96042127-28C6-4F42-A530-196619E7CA4E", + "defKey": "project_id", + "defName": "项目 Id", + "intro": "", "baseDataType": "BIGINT", "bizDomainType": "", "dbDataType": "BIGINT", - "dataLen": null, - "numScale": null, - "primaryKey": 0, - "notNull": 1, - "autoIncrement": 0, - "defaultValue": "", - "stndDictId": null, - "stndFieldId": null, - "stndDictKey": null, - "stndFieldKey": null, - "stndComplianceLevel": null, - "stndComplianceType": null, - "dictFrom": "", - "dictItems": null, - "fieldTier": "", - "mark": null, - "attr1": null, - "attr2": null, - "attr3": null, - "attr4": null, - "attr5": null, - "attr6": null, - "attr7": null, - "attr8": null, - "attr9": null, - "attr10": null, - "attr11": null, - "attr12": null, - "attr13": null, - "attr14": null, - "attr15": null, - "attr16": null, - "attr17": null, - "attr18": null, - "attr19": null, - "attr20": null, - "origin": "PASTE" - }, - { - "id": "6E0AACD6-9461-494C-8F6C-156844C7064A", - "defKey": "station_name", - "defName": "站点名称", - "intro": "cst_station.station.name", - "baseDataType": "VARCHAR", - "bizDomainType": "", - "dbDataType": "VARCHAR", - "dataLen": 128, + "dataLen": "", "numScale": "", "primaryKey": 0, - "notNull": 1, + "notNull": 0, "autoIncrement": 0, "defaultValue": "", "stndDictId": "", @@ -25543,52 +25815,6 @@ "attr20": "", "origin": "UI" }, - { - "id": "F4B82AF2-C689-401A-9016-65B498970DD7", - "defKey": "trans_time", - "defName": "开始运输时间", - "intro": null, - "baseDataType": "DATETIME", - "bizDomainType": "", - "dbDataType": "DATETIME", - "dataLen": null, - "numScale": null, - "primaryKey": 0, - "notNull": 1, - "autoIncrement": 0, - "defaultValue": null, - "stndDictId": null, - "stndFieldId": null, - "stndDictKey": null, - "stndFieldKey": null, - "stndComplianceLevel": null, - "stndComplianceType": null, - "dictFrom": "", - "dictItems": null, - "fieldTier": "", - "mark": null, - "attr1": null, - "attr2": null, - "attr3": null, - "attr4": null, - "attr5": null, - "attr6": null, - "attr7": null, - "attr8": null, - "attr9": null, - "attr10": null, - "attr11": null, - "attr12": null, - "attr13": null, - "attr14": null, - "attr15": null, - "attr16": null, - "attr17": null, - "attr18": null, - "attr19": null, - "attr20": null, - "origin": "PASTE" - }, { "id": "7ACA37F0-0E64-441A-88B5-2C84543E08CA", "defKey": "user_id", @@ -25635,6 +25861,52 @@ "attr20": null, "origin": "PASTE" }, + { + "id": "82565AA9-1B95-4B58-AA07-6A183EDDB578", + "defKey": "customer_id", + "defName": "下单人客户 Id", + "intro": "cst_customer.id", + "baseDataType": "BIGINT", + "bizDomainType": "", + "dbDataType": "BIGINT", + "dataLen": "", + "numScale": "", + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "", + "stndFieldId": "", + "stndDictKey": "", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "", + "dictItems": null, + "fieldTier": "", + "mark": null, + "attr1": "", + "attr2": "", + "attr3": "", + "attr4": "", + "attr5": "", + "attr6": "", + "attr7": "", + "attr8": "", + "attr9": "", + "attr10": "", + "attr11": "", + "attr12": "", + "attr13": "", + "attr14": "", + "attr15": "", + "attr16": "", + "attr17": "", + "attr18": "", + "attr19": "", + "attr20": "", + "origin": "PASTE" + }, { "id": "883FC51F-E15A-43AB-BEC5-E6BE0AB938F7", "defKey": "contacts", @@ -25738,7 +26010,7 @@ "dataLen": "", "numScale": "", "primaryKey": 0, - "notNull": 0, + "notNull": 1, "autoIncrement": 0, "defaultValue": "", "stndDictId": "", @@ -25781,7 +26053,7 @@ "baseDataType": "VARCHAR", "bizDomainType": "", "dbDataType": "VARCHAR", - "dataLen": 32, + "dataLen": 16, "numScale": null, "primaryKey": 0, "notNull": 1, @@ -25856,7 +26128,7 @@ "baseDataType": "VARCHAR", "bizDomainType": "", "dbDataType": "VARCHAR", - "dataLen": 128, + "dataLen": 16, "numScale": null, "primaryKey": 0, "notNull": 1, @@ -25878,46 +26150,11 @@ "id": "38D8D1E5-2E6F-4B6B-9C7E-A5140B35BDC6" }, { - "itemKey": "DaiPaiDan", - "itemName": "待派单", - "parentKey": "", - "intro": "未指派司机", - "id": "962CE1E2-D97D-4C99-89D7-7C28071D0927" - }, - { - "itemKey": "DaiJieDan", - "itemName": "待接单", - "parentKey": "", - "intro": "未指定车辆", - "id": "B4CCA4EE-9759-46B8-B826-134D85B8FB75" - }, - { - "itemKey": "YiJieDan", - "itemName": "已接单", + "itemKey": "JinXingZhong", + "itemName": "进行中", "parentKey": "", "intro": "", - "id": "4631CA6A-42B9-4EDF-9A2D-22B736EF6F4E" - }, - { - "itemKey": "YunShuZhong", - "itemName": "运输中", - "parentKey": "", - "intro": "", - "id": "685AAEAC-3D43-4ACC-B8B5-150F9C97C328" - }, - { - "itemKey": "YiJinChang", - "itemName": "已进场", - "parentKey": "", - "intro": "", - "id": "1065BA60-DB2A-4854-BCA3-720E8A388A82" - }, - { - "itemKey": "YiChuChang", - "itemName": "已出场", - "parentKey": "", - "intro": "", - "id": "104DA05C-E8F3-47B6-938F-01451E4C537A" + "id": "D023372F-D662-4D03-B1C9-8687DA182E3E" }, { "itemKey": "YiWanCheng", @@ -25958,311 +26195,6 @@ "attr20": null, "origin": "PASTE" }, - { - "id": "6A089F7A-2CEC-42A3-8973-1E1B40DC329B", - "defKey": "total_money", - "defName": "总金额", - "intro": "单位:元", - "baseDataType": "DECIMAL", - "bizDomainType": "", - "dbDataType": "DECIMAL", - "dataLen": 14, - "numScale": 2, - "primaryKey": 0, - "notNull": 1, - "autoIncrement": 0, - "defaultValue": "0.00", - "stndDictId": null, - "stndFieldId": null, - "stndDictKey": null, - "stndFieldKey": null, - "stndComplianceLevel": null, - "stndComplianceType": null, - "dictFrom": "", - "dictItems": null, - "fieldTier": "", - "mark": null, - "attr1": null, - "attr2": null, - "attr3": null, - "attr4": null, - "attr5": null, - "attr6": null, - "attr7": null, - "attr8": null, - "attr9": null, - "attr10": null, - "attr11": null, - "attr12": null, - "attr13": null, - "attr14": null, - "attr15": null, - "attr16": null, - "attr17": null, - "attr18": null, - "attr19": null, - "attr20": null, - "origin": "PASTE" - }, - { - "id": "18171804-3ECD-4D85-9236-A7012BD37F7B", - "defKey": "discount_money", - "defName": "优惠金额", - "intro": "单位:元,有正负", - "baseDataType": "DECIMAL", - "bizDomainType": "", - "dbDataType": "DECIMAL", - "dataLen": 14, - "numScale": 2, - "primaryKey": 0, - "notNull": 1, - "autoIncrement": 0, - "defaultValue": "0.00", - "stndDictId": null, - "stndFieldId": null, - "stndDictKey": null, - "stndFieldKey": null, - "stndComplianceLevel": null, - "stndComplianceType": null, - "dictFrom": "", - "dictItems": null, - "fieldTier": "", - "mark": null, - "attr1": null, - "attr2": null, - "attr3": null, - "attr4": null, - "attr5": null, - "attr6": null, - "attr7": null, - "attr8": null, - "attr9": null, - "attr10": null, - "attr11": null, - "attr12": null, - "attr13": null, - "attr14": null, - "attr15": null, - "attr16": null, - "attr17": null, - "attr18": null, - "attr19": null, - "attr20": null, - "origin": "PASTE" - }, - { - "id": "8C2063D9-2230-48D4-969F-3240EF342B41", - "defKey": "revise_money", - "defName": "手动修正金额", - "intro": "单位:元,有正负", - "baseDataType": "DECIMAL", - "bizDomainType": "", - "dbDataType": "DECIMAL", - "dataLen": 14, - "numScale": 2, - "primaryKey": 0, - "notNull": 1, - "autoIncrement": 0, - "defaultValue": "0.00", - "stndDictId": null, - "stndFieldId": null, - "stndDictKey": null, - "stndFieldKey": null, - "stndComplianceLevel": null, - "stndComplianceType": null, - "dictFrom": "", - "dictItems": null, - "fieldTier": "", - "mark": null, - "attr1": null, - "attr2": null, - "attr3": null, - "attr4": null, - "attr5": null, - "attr6": null, - "attr7": null, - "attr8": null, - "attr9": null, - "attr10": null, - "attr11": null, - "attr12": null, - "attr13": null, - "attr14": null, - "attr15": null, - "attr16": null, - "attr17": null, - "attr18": null, - "attr19": null, - "attr20": null, - "origin": "PASTE" - }, - { - "id": "723726B2-7D28-4C7A-8F06-1AA04D699936", - "defKey": "settle_money", - "defName": "结算金额", - "intro": "单位:元", - "baseDataType": "DECIMAL", - "bizDomainType": "", - "dbDataType": "DECIMAL", - "dataLen": 14, - "numScale": 2, - "primaryKey": 0, - "notNull": 1, - "autoIncrement": 0, - "defaultValue": "0.00", - "stndDictId": null, - "stndFieldId": null, - "stndDictKey": null, - "stndFieldKey": null, - "stndComplianceLevel": null, - "stndComplianceType": null, - "dictFrom": "", - "dictItems": null, - "fieldTier": "", - "mark": null, - "attr1": null, - "attr2": null, - "attr3": null, - "attr4": null, - "attr5": null, - "attr6": null, - "attr7": null, - "attr8": null, - "attr9": null, - "attr10": null, - "attr11": null, - "attr12": null, - "attr13": null, - "attr14": null, - "attr15": null, - "attr16": null, - "attr17": null, - "attr18": null, - "attr19": null, - "attr20": null, - "origin": "PASTE" - }, - { - "id": "640B5549-927D-48B9-B303-655FFFDC1ADD", - "defKey": "refund_money", - "defName": "已退款金额", - "intro": "单位:元", - "baseDataType": "DECIMAL", - "bizDomainType": "", - "dbDataType": "DECIMAL", - "dataLen": 14, - "numScale": 2, - "primaryKey": 0, - "notNull": 1, - "autoIncrement": 0, - "defaultValue": "0.00", - "stndDictId": null, - "stndFieldId": null, - "stndDictKey": null, - "stndFieldKey": null, - "stndComplianceLevel": null, - "stndComplianceType": null, - "dictFrom": "", - "dictItems": null, - "fieldTier": "", - "mark": null, - "attr1": null, - "attr2": null, - "attr3": null, - "attr4": null, - "attr5": null, - "attr6": null, - "attr7": null, - "attr8": null, - "attr9": null, - "attr10": null, - "attr11": null, - "attr12": null, - "attr13": null, - "attr14": null, - "attr15": null, - "attr16": null, - "attr17": null, - "attr18": null, - "attr19": null, - "attr20": null, - "origin": "PASTE" - }, - { - "id": "CE7FDFAF-981A-4498-B986-C580AEC46824", - "defKey": "payment_status", - "defName": "支付状态", - "intro": "字典代码:payment_status", - "baseDataType": "VARCHAR", - "bizDomainType": "", - "dbDataType": "VARCHAR", - "dataLen": 32, - "numScale": null, - "primaryKey": 0, - "notNull": 1, - "autoIncrement": 0, - "defaultValue": null, - "stndDictId": "payment_status", - "stndFieldId": null, - "stndDictKey": "payment_status", - "stndFieldKey": null, - "stndComplianceLevel": null, - "stndComplianceType": null, - "dictFrom": "Manual", - "dictItems": [ - { - "itemKey": "MianFei", - "itemName": "免费", - "parentKey": "", - "intro": "", - "id": "54760412-F151-4804-A440-6D8F076492CF" - }, - { - "itemKey": "WeiZhiFu", - "itemName": "未支付", - "parentKey": "", - "intro": "", - "id": "44E22938-194E-4273-84CF-0C6D57788412" - }, - { - "itemKey": "YiZhiFu", - "itemName": "已支付", - "parentKey": "", - "intro": "", - "id": "6071D56A-D360-4F90-9476-D63AABA1EE38" - }, - { - "itemKey": "YiTuiKuan", - "itemName": "已退款", - "parentKey": "", - "intro": "", - "id": "06401013-4D4D-4965-8F7F-D08F3DC34E32" - } - ], - "fieldTier": "", - "mark": null, - "attr1": null, - "attr2": null, - "attr3": null, - "attr4": null, - "attr5": null, - "attr6": null, - "attr7": null, - "attr8": null, - "attr9": null, - "attr10": null, - "attr11": null, - "attr12": null, - "attr13": null, - "attr14": null, - "attr15": null, - "attr16": null, - "attr17": null, - "attr18": null, - "attr19": null, - "attr20": null, - "origin": "PASTE" - }, { "id": "C485E884-11C4-4034-A2F4-CE0CFCA5E4DD", "defKey": "finish_time", @@ -26274,7 +26206,7 @@ "dataLen": null, "numScale": null, "primaryKey": 0, - "notNull": 1, + "notNull": 0, "autoIncrement": 0, "defaultValue": null, "stndDictId": null, @@ -26309,6 +26241,512 @@ "attr20": null, "origin": "PASTE" }, + { + "id": "508B5F86-CF5D-45B7-A1D9-391F764B87E3", + "defKey": "trans_org_id", + "defName": "运输组织 Id", + "intro": "cst_org.id", + "baseDataType": "BIGINT", + "bizDomainType": "", + "dbDataType": "BIGINT", + "dataLen": null, + "numScale": null, + "primaryKey": 0, + "notNull": 0, + "autoIncrement": 0, + "defaultValue": null, + "stndDictId": null, + "stndFieldId": null, + "stndDictKey": null, + "stndFieldKey": null, + "stndComplianceLevel": null, + "stndComplianceType": null, + "dictFrom": "", + "dictItems": null, + "fieldTier": "", + "mark": null, + "attr1": null, + "attr2": null, + "attr3": null, + "attr4": null, + "attr5": null, + "attr6": null, + "attr7": null, + "attr8": null, + "attr9": null, + "attr10": null, + "attr11": null, + "attr12": null, + "attr13": null, + "attr14": null, + "attr15": null, + "attr16": null, + "attr17": null, + "attr18": null, + "attr19": null, + "attr20": null, + "origin": "PASTE" + }, + { + "id": "4A96FD38-A822-426E-9812-43E2D77CD6BC", + "defKey": "trans_customer_id", + "defName": "运输方客户 Id", + "intro": "", + "baseDataType": "BIGINT", + "bizDomainType": "", + "dbDataType": "BIGINT", + "dataLen": "", + "numScale": "", + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "", + "stndFieldId": "", + "stndDictKey": "", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "", + "dictItems": null, + "fieldTier": "", + "mark": null, + "attr1": "", + "attr2": "", + "attr3": "", + "attr4": "", + "attr5": "", + "attr6": "", + "attr7": "", + "attr8": "", + "attr9": "", + "attr10": "", + "attr11": "", + "attr12": "", + "attr13": "", + "attr14": "", + "attr15": "", + "attr16": "", + "attr17": "", + "attr18": "", + "attr19": "", + "attr20": "", + "origin": "PASTE" + }, + { + "id": "3772AFBC-EA5F-484C-AD28-DCE9B8A50F5C", + "defKey": "assignment_trans_time", + "defName": "指派清运公司时间", + "intro": "", + "baseDataType": "DECIMAL", + "bizDomainType": "", + "dbDataType": "DECIMAL", + "dataLen": "", + "numScale": "", + "primaryKey": 0, + "notNull": 0, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "", + "stndFieldId": "", + "stndDictKey": "", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "", + "dictItems": null, + "fieldTier": "", + "mark": null, + "attr1": "", + "attr2": "", + "attr3": "", + "attr4": "", + "attr5": "", + "attr6": "", + "attr7": "", + "attr8": "", + "attr9": "", + "attr10": "", + "attr11": "", + "attr12": "", + "attr13": "", + "attr14": "", + "attr15": "", + "attr16": "", + "attr17": "", + "attr18": "", + "attr19": "", + "attr20": "", + "origin": "UI" + }, + { + "id": "5DEF3B34-F324-48D1-AF0C-53972E632DCD", + "defKey": "station_id", + "defName": "站点 Id", + "intro": "cst_station.id", + "baseDataType": "BIGINT", + "bizDomainType": "", + "dbDataType": "BIGINT", + "dataLen": null, + "numScale": null, + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": null, + "stndFieldId": null, + "stndDictKey": null, + "stndFieldKey": null, + "stndComplianceLevel": null, + "stndComplianceType": null, + "dictFrom": "", + "dictItems": null, + "fieldTier": "", + "mark": null, + "attr1": null, + "attr2": null, + "attr3": null, + "attr4": null, + "attr5": null, + "attr6": null, + "attr7": null, + "attr8": null, + "attr9": null, + "attr10": null, + "attr11": null, + "attr12": null, + "attr13": null, + "attr14": null, + "attr15": null, + "attr16": null, + "attr17": null, + "attr18": null, + "attr19": null, + "attr20": null, + "origin": "PASTE" + }, + { + "id": "6E0AACD6-9461-494C-8F6C-156844C7064A", + "defKey": "station_name", + "defName": "站点名称", + "intro": "cst_station.station.name", + "baseDataType": "VARCHAR", + "bizDomainType": "", + "dbDataType": "VARCHAR", + "dataLen": 128, + "numScale": "", + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "", + "stndFieldId": "", + "stndDictKey": "", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "", + "dictItems": null, + "fieldTier": "", + "mark": null, + "attr1": "", + "attr2": "", + "attr3": "", + "attr4": "", + "attr5": "", + "attr6": "", + "attr7": "", + "attr8": "", + "attr9": "", + "attr10": "", + "attr11": "", + "attr12": "", + "attr13": "", + "attr14": "", + "attr15": "", + "attr16": "", + "attr17": "", + "attr18": "", + "attr19": "", + "attr20": "", + "origin": "UI" + }, + { + "id": "E7D98496-F1E2-46A3-8E61-D41F35E6E792", + "defKey": "trans_distance", + "defName": "运距", + "intro": "单位:米", + "baseDataType": "INT", + "bizDomainType": "", + "dbDataType": "INT", + "dataLen": "", + "numScale": "", + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "", + "stndFieldId": "", + "stndDictKey": "", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "", + "dictItems": null, + "fieldTier": "", + "mark": null, + "attr1": "", + "attr2": "", + "attr3": "", + "attr4": "", + "attr5": "", + "attr6": "", + "attr7": "", + "attr8": "", + "attr9": "", + "attr10": "", + "attr11": "", + "attr12": "", + "attr13": "", + "attr14": "", + "attr15": "", + "attr16": "", + "attr17": "", + "attr18": "", + "attr19": "", + "attr20": "", + "origin": "PASTE" + }, + { + "id": "1A3CD046-681F-42F1-ABBD-47FC6C0716F6", + "defKey": "estimated_quantity", + "defName": "预估量", + "intro": "", + "baseDataType": "INT", + "bizDomainType": "", + "dbDataType": "INT", + "dataLen": "", + "numScale": "", + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "", + "stndFieldId": "", + "stndDictKey": "", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "", + "dictItems": null, + "fieldTier": "", + "mark": null, + "attr1": "", + "attr2": "", + "attr3": "", + "attr4": "", + "attr5": "", + "attr6": "", + "attr7": "", + "attr8": "", + "attr9": "", + "attr10": "", + "attr11": "", + "attr12": "", + "attr13": "", + "attr14": "", + "attr15": "", + "attr16": "", + "attr17": "", + "attr18": "", + "attr19": "", + "attr20": "", + "origin": "UI" + }, + { + "id": "F8EFCA6C-88CD-44BA-A2CB-F773612418C0", + "defKey": "estimated_train_num", + "defName": "预估车数", + "intro": "", + "baseDataType": "INT", + "bizDomainType": "", + "dbDataType": "INT", + "dataLen": "", + "numScale": "", + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "", + "stndFieldId": "", + "stndDictKey": "", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "", + "dictItems": null, + "fieldTier": "", + "mark": null, + "attr1": "", + "attr2": "", + "attr3": "", + "attr4": "", + "attr5": "", + "attr6": "", + "attr7": "", + "attr8": "", + "attr9": "", + "attr10": "", + "attr11": "", + "attr12": "", + "attr13": "", + "attr14": "", + "attr15": "", + "attr16": "", + "attr17": "", + "attr18": "", + "attr19": "", + "attr20": "", + "origin": "UI" + }, + { + "id": "BAEE0E59-D482-40B7-BAE9-07512D7D0C8E", + "defKey": "goods_id", + "defName": "产品 Id", + "intro": "", + "baseDataType": "BIGINT", + "bizDomainType": "", + "dbDataType": "BIGINT", + "dataLen": "", + "numScale": "", + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "", + "stndFieldId": "", + "stndDictKey": "", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "", + "dictItems": null, + "fieldTier": "", + "mark": null, + "attr1": "", + "attr2": "", + "attr3": "", + "attr4": "", + "attr5": "", + "attr6": "", + "attr7": "", + "attr8": "", + "attr9": "", + "attr10": "", + "attr11": "", + "attr12": "", + "attr13": "", + "attr14": "", + "attr15": "", + "attr16": "", + "attr17": "", + "attr18": "", + "attr19": "", + "attr20": "", + "origin": "UI" + }, + { + "id": "EB4C32CA-7179-416F-98C6-B492B38D2366", + "defKey": "goods_name", + "defName": "产品名称", + "intro": "", + "baseDataType": "VARCHAR", + "bizDomainType": "", + "dbDataType": "VARCHAR", + "dataLen": 128, + "numScale": "", + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "", + "stndFieldId": "", + "stndDictKey": "", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "", + "dictItems": null, + "fieldTier": "", + "mark": null, + "attr1": "", + "attr2": "", + "attr3": "", + "attr4": "", + "attr5": "", + "attr6": "", + "attr7": "", + "attr8": "", + "attr9": "", + "attr10": "", + "attr11": "", + "attr12": "", + "attr13": "", + "attr14": "", + "attr15": "", + "attr16": "", + "attr17": "", + "attr18": "", + "attr19": "", + "attr20": "", + "origin": "UI" + }, + { + "id": "CBAA8467-1A7A-42D2-8C25-7ED60A838369", + "defKey": "unit", + "defName": "计量单位", + "intro": "字典代码:unit", + "baseDataType": "VARCHAR", + "bizDomainType": "", + "dbDataType": "VARCHAR", + "dataLen": 16, + "numScale": "", + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "", + "stndFieldId": "", + "stndDictKey": "", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "", + "dictItems": null, + "fieldTier": "", + "mark": null, + "attr1": "", + "attr2": "", + "attr3": "", + "attr4": "", + "attr5": "", + "attr6": "", + "attr7": "", + "attr8": "", + "attr9": "", + "attr10": "", + "attr11": "", + "attr12": "", + "attr13": "", + "attr14": "", + "attr15": "", + "attr16": "", + "attr17": "", + "attr18": "", + "attr19": "", + "attr20": "", + "origin": "UI" + }, { "id": "439B7E38-FE75-42C5-8606-E6A1420E9AC0", "defKey": "customer_memo", @@ -26322,7 +26760,7 @@ "primaryKey": 0, "notNull": 1, "autoIncrement": 0, - "defaultValue": "", + "defaultValue": "''", "stndDictId": null, "stndFieldId": null, "stndDictKey": null, @@ -26642,6 +27080,52 @@ "attr20": "", "origin": "PASTE" }, + { + "id": "7F1C2D36-32D0-49E9-9C2C-7E7193C46D8B", + "defKey": "train_num", + "defName": "车次", + "intro": "", + "baseDataType": "INT", + "bizDomainType": "", + "dbDataType": "INT", + "dataLen": "", + "numScale": "", + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "", + "stndFieldId": "", + "stndDictKey": "", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "", + "dictItems": null, + "fieldTier": "", + "mark": null, + "attr1": "", + "attr2": "", + "attr3": "", + "attr4": "", + "attr5": "", + "attr6": "", + "attr7": "", + "attr8": "", + "attr9": "", + "attr10": "", + "attr11": "", + "attr12": "", + "attr13": "", + "attr14": "", + "attr15": "", + "attr16": "", + "attr17": "", + "attr18": "", + "attr19": "", + "attr20": "", + "origin": "UI" + }, { "id": "C42086C9-14DA-4E59-8C95-3CE20BD542A1", "defKey": "order_id", @@ -26742,7 +27226,7 @@ "baseDataType": "VARCHAR", "bizDomainType": "", "dbDataType": "VARCHAR", - "dataLen": 32, + "dataLen": 16, "numScale": "", "primaryKey": 0, "notNull": 1, @@ -26756,6 +27240,27 @@ "stndComplianceType": null, "dictFrom": "Manual", "dictItems": [ + { + "itemKey": "DaiPaiDan", + "itemName": "待派单", + "parentKey": "", + "intro": "", + "id": "B17244EA-76FD-4BE6-BB8E-B5F441D48D05" + }, + { + "itemKey": "DaiJieDan", + "itemName": "待接单", + "parentKey": "", + "intro": "", + "id": "D5B76D1A-30F9-4C35-B783-9F20BEF8684E" + }, + { + "itemKey": "YiJieDan", + "itemName": "已接单", + "parentKey": "", + "intro": "", + "id": "F2470356-D053-4911-B1E3-30B8DA15098A" + }, { "itemKey": "YunShuZhong", "itemName": "运输中", @@ -26776,6 +27281,20 @@ "parentKey": "", "intro": "", "id": "104DA05C-E8F3-47B6-938F-01451E4C537A" + }, + { + "itemKey": "YiWanCheng", + "itemName": "已完成", + "parentKey": "", + "intro": "", + "id": "2F5144B0-93BC-40A4-AA96-465FD788DA83" + }, + { + "itemKey": "YiQuXiao", + "itemName": "已取消", + "parentKey": "", + "intro": "", + "id": "D7D2947C-5945-436E-A3CB-949A2FC94C8D" } ], "fieldTier": "", @@ -26848,6 +27367,190 @@ "attr20": null, "origin": "PASTE" }, + { + "id": "9FFCF842-B143-4A61-8129-F8C3180A8287", + "defKey": "assignment_driver_time", + "defName": "指派司机时间", + "intro": "", + "baseDataType": "DATETIME", + "bizDomainType": "", + "dbDataType": "DATETIME", + "dataLen": null, + "numScale": null, + "primaryKey": 0, + "notNull": 0, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": null, + "stndFieldId": null, + "stndDictKey": null, + "stndFieldKey": null, + "stndComplianceLevel": null, + "stndComplianceType": null, + "dictFrom": "", + "dictItems": null, + "fieldTier": "", + "mark": null, + "attr1": null, + "attr2": null, + "attr3": null, + "attr4": null, + "attr5": null, + "attr6": null, + "attr7": null, + "attr8": null, + "attr9": null, + "attr10": null, + "attr11": null, + "attr12": null, + "attr13": null, + "attr14": null, + "attr15": null, + "attr16": null, + "attr17": null, + "attr18": null, + "attr19": null, + "attr20": null, + "origin": "PASTE" + }, + { + "id": "EC2668F8-75C5-4A40-B0D2-8FEFA5F52237", + "defKey": "driver_confirm_time", + "defName": "司机确认接单时间", + "intro": "", + "baseDataType": "DATETIME", + "bizDomainType": "", + "dbDataType": "DATETIME", + "dataLen": null, + "numScale": null, + "primaryKey": 0, + "notNull": 0, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": null, + "stndFieldId": null, + "stndDictKey": null, + "stndFieldKey": null, + "stndComplianceLevel": null, + "stndComplianceType": null, + "dictFrom": "", + "dictItems": null, + "fieldTier": "", + "mark": null, + "attr1": null, + "attr2": null, + "attr3": null, + "attr4": null, + "attr5": null, + "attr6": null, + "attr7": null, + "attr8": null, + "attr9": null, + "attr10": null, + "attr11": null, + "attr12": null, + "attr13": null, + "attr14": null, + "attr15": null, + "attr16": null, + "attr17": null, + "attr18": null, + "attr19": null, + "attr20": null, + "origin": "PASTE" + }, + { + "id": "FA38D95F-FD89-4485-AA48-610465C0679E", + "defKey": "trans_time", + "defName": "开始运输时间", + "intro": "", + "baseDataType": "DATETIME", + "bizDomainType": "", + "dbDataType": "DATETIME", + "dataLen": null, + "numScale": null, + "primaryKey": 0, + "notNull": 0, + "autoIncrement": 0, + "defaultValue": null, + "stndDictId": null, + "stndFieldId": null, + "stndDictKey": null, + "stndFieldKey": null, + "stndComplianceLevel": null, + "stndComplianceType": null, + "dictFrom": "", + "dictItems": null, + "fieldTier": "", + "mark": null, + "attr1": null, + "attr2": null, + "attr3": null, + "attr4": null, + "attr5": null, + "attr6": null, + "attr7": null, + "attr8": null, + "attr9": null, + "attr10": null, + "attr11": null, + "attr12": null, + "attr13": null, + "attr14": null, + "attr15": null, + "attr16": null, + "attr17": null, + "attr18": null, + "attr19": null, + "attr20": null, + "origin": "PASTE" + }, + { + "id": "15AFA9A9-3138-4CE7-B0C1-7480E6CC76E3", + "defKey": "finish_time", + "defName": "完结时间", + "intro": null, + "baseDataType": "DATETIME", + "bizDomainType": "", + "dbDataType": "DATETIME", + "dataLen": null, + "numScale": null, + "primaryKey": 0, + "notNull": 0, + "autoIncrement": 0, + "defaultValue": null, + "stndDictId": null, + "stndFieldId": null, + "stndDictKey": null, + "stndFieldKey": null, + "stndComplianceLevel": null, + "stndComplianceType": null, + "dictFrom": "", + "dictItems": null, + "fieldTier": "", + "mark": null, + "attr1": null, + "attr2": null, + "attr3": null, + "attr4": null, + "attr5": null, + "attr6": null, + "attr7": null, + "attr8": null, + "attr9": null, + "attr10": null, + "attr11": null, + "attr12": null, + "attr13": null, + "attr14": null, + "attr15": null, + "attr16": null, + "attr17": null, + "attr18": null, + "attr19": null, + "attr20": null, + "origin": "PASTE" + }, { "id": "E772F598-B948-4174-A402-E8A50E883326", "defKey": "checker_id", @@ -26859,7 +27562,7 @@ "dataLen": null, "numScale": null, "primaryKey": 0, - "notNull": 1, + "notNull": 0, "autoIncrement": 0, "defaultValue": null, "stndDictId": null, @@ -26897,12 +27600,12 @@ { "id": "CDF0B1CE-16C7-4B1C-AE4D-8A33E04303F3", "defKey": "check_status", - "defName": "看料状态", + "defName": "勘料状态", "intro": "字典代码:check_status", "baseDataType": "VARCHAR", "bizDomainType": "", "dbDataType": "VARCHAR", - "dataLen": 32, + "dataLen": 16, "numScale": null, "primaryKey": 0, "notNull": 1, @@ -26962,6 +27665,98 @@ "attr20": null, "origin": "PASTE" }, + { + "id": "5176C4F2-651B-43DA-9184-E5E93DBB1A2E", + "defKey": "check_time", + "defName": "勘料时间", + "intro": "", + "baseDataType": "DATETIME", + "bizDomainType": "", + "dbDataType": "DATETIME", + "dataLen": "", + "numScale": "", + "primaryKey": 0, + "notNull": 0, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "", + "stndFieldId": "", + "stndDictKey": "", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "", + "dictItems": null, + "fieldTier": "", + "mark": null, + "attr1": "", + "attr2": "", + "attr3": "", + "attr4": "", + "attr5": "", + "attr6": "", + "attr7": "", + "attr8": "", + "attr9": "", + "attr10": "", + "attr11": "", + "attr12": "", + "attr13": "", + "attr14": "", + "attr15": "", + "attr16": "", + "attr17": "", + "attr18": "", + "attr19": "", + "attr20": "", + "origin": "UI" + }, + { + "id": "7CA0664E-9D97-4A14-AA3F-5BBA47236F5D", + "defKey": "check_photo", + "defName": "勘料照片", + "intro": "", + "baseDataType": "VARCHAR", + "bizDomainType": "", + "dbDataType": "VARCHAR", + "dataLen": 255, + "numScale": "", + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "''", + "stndDictId": "", + "stndFieldId": "", + "stndDictKey": "", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "", + "dictItems": null, + "fieldTier": "", + "mark": null, + "attr1": "", + "attr2": "", + "attr3": "", + "attr4": "", + "attr5": "", + "attr6": "", + "attr7": "", + "attr8": "", + "attr9": "", + "attr10": "", + "attr11": "", + "attr12": "", + "attr13": "", + "attr14": "", + "attr15": "", + "attr16": "", + "attr17": "", + "attr18": "", + "attr19": "", + "attr20": "", + "origin": "UI" + }, { "id": "4BA76DC5-5190-451E-9D8C-A05F8D7AD260", "defKey": "checker_memo", @@ -26975,99 +27770,7 @@ "primaryKey": 0, "notNull": 1, "autoIncrement": 0, - "defaultValue": "", - "stndDictId": null, - "stndFieldId": null, - "stndDictKey": null, - "stndFieldKey": null, - "stndComplianceLevel": null, - "stndComplianceType": null, - "dictFrom": "", - "dictItems": null, - "fieldTier": "", - "mark": null, - "attr1": null, - "attr2": null, - "attr3": null, - "attr4": null, - "attr5": null, - "attr6": null, - "attr7": null, - "attr8": null, - "attr9": null, - "attr10": null, - "attr11": null, - "attr12": null, - "attr13": null, - "attr14": null, - "attr15": null, - "attr16": null, - "attr17": null, - "attr18": null, - "attr19": null, - "attr20": null, - "origin": "PASTE" - }, - { - "id": "FA38D95F-FD89-4485-AA48-610465C0679E", - "defKey": "trans_time", - "defName": "开始运输时间", - "intro": "", - "baseDataType": "DATETIME", - "bizDomainType": "", - "dbDataType": "DATETIME", - "dataLen": null, - "numScale": null, - "primaryKey": 0, - "notNull": 1, - "autoIncrement": 0, - "defaultValue": null, - "stndDictId": null, - "stndFieldId": null, - "stndDictKey": null, - "stndFieldKey": null, - "stndComplianceLevel": null, - "stndComplianceType": null, - "dictFrom": "", - "dictItems": null, - "fieldTier": "", - "mark": null, - "attr1": null, - "attr2": null, - "attr3": null, - "attr4": null, - "attr5": null, - "attr6": null, - "attr7": null, - "attr8": null, - "attr9": null, - "attr10": null, - "attr11": null, - "attr12": null, - "attr13": null, - "attr14": null, - "attr15": null, - "attr16": null, - "attr17": null, - "attr18": null, - "attr19": null, - "attr20": null, - "origin": "PASTE" - }, - { - "id": "6465E763-FCAE-40F5-91C7-F9E0F8559BA2", - "defKey": "trans_org_id", - "defName": "运输组织 Id", - "intro": "cst_org.id", - "baseDataType": "BIGINT", - "bizDomainType": "", - "dbDataType": "BIGINT", - "dataLen": null, - "numScale": null, - "primaryKey": 0, - "notNull": 1, - "autoIncrement": 0, - "defaultValue": null, + "defaultValue": "''", "stndDictId": null, "stndFieldId": null, "stndDictKey": null, @@ -27111,7 +27814,7 @@ "dataLen": "", "numScale": "", "primaryKey": 0, - "notNull": 1, + "notNull": 0, "autoIncrement": 0, "defaultValue": "", "stndDictId": "", @@ -27146,6 +27849,52 @@ "attr20": "", "origin": "UI" }, + { + "id": "1027631F-8D8A-453D-8688-B890363074CC", + "defKey": "driver_customer_id", + "defName": "司机所属客户 Id", + "intro": "cst_customer.id", + "baseDataType": "BIGINT", + "bizDomainType": "", + "dbDataType": "BIGINT", + "dataLen": "", + "numScale": "", + "primaryKey": 0, + "notNull": 0, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "", + "stndFieldId": "", + "stndDictKey": "", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "", + "dictItems": null, + "fieldTier": "", + "mark": null, + "attr1": "", + "attr2": "", + "attr3": "", + "attr4": "", + "attr5": "", + "attr6": "", + "attr7": "", + "attr8": "", + "attr9": "", + "attr10": "", + "attr11": "", + "attr12": "", + "attr13": "", + "attr14": "", + "attr15": "", + "attr16": "", + "attr17": "", + "attr18": "", + "attr19": "", + "attr20": "", + "origin": "PASTE" + }, { "id": "160899D7-1A2F-4AAA-B418-765E5984C42F", "defKey": "driver_user_id", @@ -27157,7 +27906,7 @@ "dataLen": "", "numScale": "", "primaryKey": 0, - "notNull": 1, + "notNull": 0, "autoIncrement": 0, "defaultValue": "", "stndDictId": "", @@ -27192,6 +27941,98 @@ "attr20": "", "origin": "UI" }, + { + "id": "C12C0AC2-0FCF-4D79-8F74-F30551FCB8B8", + "defKey": "truck_customer_id", + "defName": "归属客户 Id", + "intro": "cst_customer.id", + "baseDataType": "BIGINT", + "bizDomainType": "", + "dbDataType": "BIGINT", + "dataLen": "", + "numScale": "", + "primaryKey": 0, + "notNull": 0, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "", + "stndFieldId": "", + "stndDictKey": "", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "", + "dictItems": null, + "fieldTier": "", + "mark": null, + "attr1": "", + "attr2": "", + "attr3": "", + "attr4": "", + "attr5": "", + "attr6": "", + "attr7": "", + "attr8": "", + "attr9": "", + "attr10": "", + "attr11": "", + "attr12": "", + "attr13": "", + "attr14": "", + "attr15": "", + "attr16": "", + "attr17": "", + "attr18": "", + "attr19": "", + "attr20": "", + "origin": "PASTE" + }, + { + "id": "47FC0F92-F55F-4461-AD86-68FC5EF748EE", + "defKey": "truck_org_id", + "defName": "归属组织", + "intro": "", + "baseDataType": "BIGINT", + "bizDomainType": "", + "dbDataType": "BIGINT", + "dataLen": "", + "numScale": "", + "primaryKey": 0, + "notNull": 0, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "", + "stndFieldId": "", + "stndDictKey": "", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "", + "dictItems": null, + "fieldTier": "", + "mark": null, + "attr1": "", + "attr2": "", + "attr3": "", + "attr4": "", + "attr5": "", + "attr6": "", + "attr7": "", + "attr8": "", + "attr9": "", + "attr10": "", + "attr11": "", + "attr12": "", + "attr13": "", + "attr14": "", + "attr15": "", + "attr16": "", + "attr17": "", + "attr18": "", + "attr19": "", + "attr20": "", + "origin": "PASTE" + }, { "id": "E867EDED-9E3D-4EB0-9276-23BE8A3574CE", "defKey": "truck_id", @@ -27203,7 +28044,7 @@ "dataLen": "", "numScale": "", "primaryKey": 0, - "notNull": 1, + "notNull": 0, "autoIncrement": 0, "defaultValue": "", "stndDictId": "", @@ -27251,7 +28092,7 @@ "primaryKey": 0, "notNull": 1, "autoIncrement": 0, - "defaultValue": "", + "defaultValue": "''", "stndDictId": "", "stndFieldId": "", "stndDictKey": "", @@ -27297,7 +28138,7 @@ "primaryKey": 0, "notNull": 1, "autoIncrement": 0, - "defaultValue": "", + "defaultValue": "0", "stndDictId": "", "stndFieldId": "", "stndDictKey": "", @@ -27343,7 +28184,7 @@ "primaryKey": 0, "notNull": 1, "autoIncrement": 0, - "defaultValue": "", + "defaultValue": "0", "stndDictId": "", "stndFieldId": "", "stndDictKey": "", @@ -27389,7 +28230,7 @@ "primaryKey": 0, "notNull": 1, "autoIncrement": 0, - "defaultValue": "", + "defaultValue": "0", "stndDictId": "", "stndFieldId": "", "stndDictKey": "", @@ -27435,7 +28276,7 @@ "primaryKey": 0, "notNull": 1, "autoIncrement": 0, - "defaultValue": "", + "defaultValue": "0", "stndDictId": "", "stndFieldId": "", "stndDictKey": "", @@ -27481,7 +28322,7 @@ "primaryKey": 0, "notNull": 1, "autoIncrement": 0, - "defaultValue": "", + "defaultValue": "0", "stndDictId": "", "stndFieldId": "", "stndDictKey": "", @@ -27527,7 +28368,7 @@ "primaryKey": 0, "notNull": 1, "autoIncrement": 0, - "defaultValue": "", + "defaultValue": "''", "stndDictId": "", "stndFieldId": "", "stndDictKey": "", @@ -27573,7 +28414,7 @@ "primaryKey": 0, "notNull": 1, "autoIncrement": 0, - "defaultValue": "", + "defaultValue": "''", "stndDictId": "", "stndFieldId": "", "stndDictKey": "", @@ -27619,7 +28460,7 @@ "primaryKey": 0, "notNull": 1, "autoIncrement": 0, - "defaultValue": "", + "defaultValue": "''", "stndDictId": "", "stndFieldId": "", "stndDictKey": "", @@ -27665,7 +28506,7 @@ "primaryKey": 0, "notNull": 1, "autoIncrement": 0, - "defaultValue": "", + "defaultValue": "''", "stndDictId": "", "stndFieldId": "", "stndDictKey": "", @@ -27709,7 +28550,7 @@ "dataLen": "", "numScale": "", "primaryKey": 0, - "notNull": 1, + "notNull": 0, "autoIncrement": 0, "defaultValue": "", "stndDictId": "", @@ -27755,7 +28596,7 @@ "dataLen": "", "numScale": "", "primaryKey": 0, - "notNull": 1, + "notNull": 0, "autoIncrement": 0, "defaultValue": "", "stndDictId": "", @@ -28123,517 +28964,6 @@ "attr20": "", "origin": "PASTE" }, - { - "id": "0C5F1538-B5CF-435A-AF77-BEB2AC7CC249", - "defKey": "total_money", - "defName": "总金额", - "intro": "单位:元", - "baseDataType": "DECIMAL", - "bizDomainType": "", - "dbDataType": "DECIMAL", - "dataLen": "", - "numScale": "", - "primaryKey": 0, - "notNull": 1, - "autoIncrement": 0, - "defaultValue": "", - "stndDictId": "", - "stndFieldId": "", - "stndDictKey": "", - "stndFieldKey": "", - "stndComplianceLevel": "", - "stndComplianceType": "", - "dictFrom": "", - "dictItems": null, - "fieldTier": "", - "mark": null, - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "attr10": "", - "attr11": "", - "attr12": "", - "attr13": "", - "attr14": "", - "attr15": "", - "attr16": "", - "attr17": "", - "attr18": "", - "attr19": "", - "attr20": "", - "origin": "UI" - }, - { - "id": "82AF6F31-1944-42E9-B1E5-143AB1418DF6", - "defKey": "discount_money", - "defName": "优惠金额", - "intro": "单位:元,有正负", - "baseDataType": "DECIMAL", - "bizDomainType": "", - "dbDataType": "DECIMAL", - "dataLen": "", - "numScale": "", - "primaryKey": 0, - "notNull": 1, - "autoIncrement": 0, - "defaultValue": "", - "stndDictId": "", - "stndFieldId": "", - "stndDictKey": "", - "stndFieldKey": "", - "stndComplianceLevel": "", - "stndComplianceType": "", - "dictFrom": "", - "dictItems": null, - "fieldTier": "", - "mark": null, - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "attr10": "", - "attr11": "", - "attr12": "", - "attr13": "", - "attr14": "", - "attr15": "", - "attr16": "", - "attr17": "", - "attr18": "", - "attr19": "", - "attr20": "", - "origin": "UI" - }, - { - "id": "2519C28A-EF03-4D48-91A7-7AD6EB0EF434", - "defKey": "revise_money", - "defName": "手动修正金额", - "intro": "单位:元,有正负", - "baseDataType": "DECIMAL", - "bizDomainType": "", - "dbDataType": "DECIMAL", - "dataLen": "", - "numScale": "", - "primaryKey": 0, - "notNull": 1, - "autoIncrement": 0, - "defaultValue": "", - "stndDictId": "", - "stndFieldId": "", - "stndDictKey": "", - "stndFieldKey": "", - "stndComplianceLevel": "", - "stndComplianceType": "", - "dictFrom": "", - "dictItems": null, - "fieldTier": "", - "mark": null, - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "attr10": "", - "attr11": "", - "attr12": "", - "attr13": "", - "attr14": "", - "attr15": "", - "attr16": "", - "attr17": "", - "attr18": "", - "attr19": "", - "attr20": "", - "origin": "UI" - }, - { - "id": "77E04850-F1DE-4500-A133-3A0CDB1F1A12", - "defKey": "settle_money", - "defName": "结算金额", - "intro": "单位:元", - "baseDataType": "DECIMAL", - "bizDomainType": "", - "dbDataType": "DECIMAL", - "dataLen": "", - "numScale": "", - "primaryKey": 0, - "notNull": 1, - "autoIncrement": 0, - "defaultValue": "", - "stndDictId": "", - "stndFieldId": "", - "stndDictKey": "", - "stndFieldKey": "", - "stndComplianceLevel": "", - "stndComplianceType": "", - "dictFrom": "", - "dictItems": null, - "fieldTier": "", - "mark": null, - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "attr10": "", - "attr11": "", - "attr12": "", - "attr13": "", - "attr14": "", - "attr15": "", - "attr16": "", - "attr17": "", - "attr18": "", - "attr19": "", - "attr20": "", - "origin": "UI" - }, - { - "id": "35327184-50C2-4821-A55E-E028E23F6CB5", - "defKey": "payment_status", - "defName": "支付状态", - "intro": "", - "baseDataType": "VARCHAR", - "bizDomainType": "", - "dbDataType": "VARCHAR", - "dataLen": 32, - "numScale": "", - "primaryKey": 0, - "notNull": 1, - "autoIncrement": 0, - "defaultValue": "", - "stndDictId": "payment_status", - "stndFieldId": "", - "stndDictKey": "payment_status", - "stndFieldKey": "", - "stndComplianceLevel": "", - "stndComplianceType": "", - "dictFrom": "Manual", - "dictItems": [ - { - "itemKey": "MianFei", - "itemName": "免费", - "parentKey": "", - "intro": "", - "id": "9C81AAAC-DB22-457A-876C-9B85357D3C08" - }, - { - "itemKey": "WeiZhiFu", - "itemName": "未支付", - "parentKey": "", - "intro": "", - "id": "4E544E5C-3A58-4EF3-B43E-9920D95C4850" - }, - { - "itemKey": "YiZhiFu", - "itemName": "已支付", - "parentKey": "", - "intro": "", - "id": "1FDE8C9C-AF01-4D10-8B81-BAD8B5D52EC9" - }, - { - "itemKey": "YiTuiKuan", - "itemName": "已退款", - "parentKey": "", - "intro": "", - "id": "CD40B918-2BCD-4E02-B911-F05BBD0ADBBC" - } - ], - "fieldTier": "", - "mark": null, - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "attr10": "", - "attr11": "", - "attr12": "", - "attr13": "", - "attr14": "", - "attr15": "", - "attr16": "", - "attr17": "", - "attr18": "", - "attr19": "", - "attr20": "", - "origin": "UI" - }, - { - "id": "C5201E2E-5DF1-4389-A97B-F8C14428E24A", - "defKey": "settlement_way", - "defName": "结算方式", - "intro": "", - "baseDataType": "VARCHAR", - "bizDomainType": "", - "dbDataType": "VARCHAR", - "dataLen": 32, - "numScale": "", - "primaryKey": 0, - "notNull": 1, - "autoIncrement": 0, - "defaultValue": "", - "stndDictId": "settlement_way", - "stndFieldId": "", - "stndDictKey": "settlement_way", - "stndFieldKey": "", - "stndComplianceLevel": "", - "stndComplianceType": "", - "dictFrom": "Manual", - "dictItems": [ - { - "itemKey": "YueJie", - "itemName": "月结", - "parentKey": "", - "intro": "", - "id": "21E8CE9A-A4E4-43EC-802F-C62332F485CE" - }, - { - "itemKey": "YuE", - "itemName": "余额", - "parentKey": "", - "intro": "", - "id": "1E3F7458-C19E-481F-A6BB-881CB6E576CD" - }, - { - "itemKey": "XianFu", - "itemName": "现付", - "parentKey": "", - "intro": "", - "id": "02F37949-4DCD-4BF8-93DB-76D974A1BC47" - } - ], - "fieldTier": "", - "mark": null, - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "attr10": "", - "attr11": "", - "attr12": "", - "attr13": "", - "attr14": "", - "attr15": "", - "attr16": "", - "attr17": "", - "attr18": "", - "attr19": "", - "attr20": "", - "origin": "UI" - }, - { - "id": "C85B2E69-CB69-4505-802D-D87D77221B28", - "defKey": "payer_id", - "defName": "付款人 Id", - "intro": "sys_user.id", - "baseDataType": "BIGINT", - "bizDomainType": "", - "dbDataType": "BIGINT", - "dataLen": "", - "numScale": "", - "primaryKey": 0, - "notNull": 1, - "autoIncrement": 0, - "defaultValue": "", - "stndDictId": "", - "stndFieldId": "", - "stndDictKey": "", - "stndFieldKey": "", - "stndComplianceLevel": "", - "stndComplianceType": "", - "dictFrom": "", - "dictItems": null, - "fieldTier": "", - "mark": null, - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "attr10": "", - "attr11": "", - "attr12": "", - "attr13": "", - "attr14": "", - "attr15": "", - "attr16": "", - "attr17": "", - "attr18": "", - "attr19": "", - "attr20": "", - "origin": "UI" - }, - { - "id": "3746CD2C-A17E-415E-95FA-9F88DFB6285C", - "defKey": "payer_money_account", - "defName": "付款方资金账户 Id", - "intro": "", - "baseDataType": "BIGINT", - "bizDomainType": "", - "dbDataType": "BIGINT", - "dataLen": "", - "numScale": "", - "primaryKey": 0, - "notNull": 1, - "autoIncrement": 0, - "defaultValue": "", - "stndDictId": "", - "stndFieldId": "", - "stndDictKey": "", - "stndFieldKey": "", - "stndComplianceLevel": "", - "stndComplianceType": "", - "dictFrom": "", - "dictItems": null, - "fieldTier": "", - "mark": null, - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "attr10": "", - "attr11": "", - "attr12": "", - "attr13": "", - "attr14": "", - "attr15": "", - "attr16": "", - "attr17": "", - "attr18": "", - "attr19": "", - "attr20": "", - "origin": "UI" - }, - { - "id": "74DAB22A-CDFD-445D-9C15-E32211E5A9CF", - "defKey": "payment_time", - "defName": "支付时间", - "intro": "", - "baseDataType": "DATETIME", - "bizDomainType": "", - "dbDataType": "DATETIME", - "dataLen": "", - "numScale": "", - "primaryKey": 0, - "notNull": 1, - "autoIncrement": 0, - "defaultValue": "", - "stndDictId": "", - "stndFieldId": "", - "stndDictKey": "", - "stndFieldKey": "", - "stndComplianceLevel": "", - "stndComplianceType": "", - "dictFrom": "", - "dictItems": null, - "fieldTier": "", - "mark": null, - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "attr10": "", - "attr11": "", - "attr12": "", - "attr13": "", - "attr14": "", - "attr15": "", - "attr16": "", - "attr17": "", - "attr18": "", - "attr19": "", - "attr20": "", - "origin": "UI" - }, - { - "id": "1BAF352B-3B21-49A2-B99B-9EB352A6EFA7", - "defKey": "quantity", - "defName": "量", - "intro": "", - "baseDataType": "DECIMAL", - "bizDomainType": "", - "dbDataType": "DECIMAL", - "dataLen": 16, - "numScale": 6, - "primaryKey": 0, - "notNull": 1, - "autoIncrement": 0, - "defaultValue": "", - "stndDictId": "", - "stndFieldId": "", - "stndDictKey": "", - "stndFieldKey": "", - "stndComplianceLevel": "", - "stndComplianceType": "", - "dictFrom": "", - "dictItems": null, - "fieldTier": "", - "mark": null, - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "attr10": "", - "attr11": "", - "attr12": "", - "attr13": "", - "attr14": "", - "attr15": "", - "attr16": "", - "attr17": "", - "attr18": "", - "attr19": "", - "attr20": "", - "origin": "UI" - }, { "id": "568436FE-1772-4E0B-8AEF-81F6F806A5BF", "defKey": "expense_item_category", @@ -28756,7 +29086,7 @@ "baseDataType": "VARCHAR", "bizDomainType": "", "dbDataType": "VARCHAR", - "dataLen": 64, + "dataLen": 16, "numScale": "", "primaryKey": 0, "notNull": 1, @@ -28846,7 +29176,7 @@ "bizDomainType": "", "dbDataType": "DECIMAL", "dataLen": 10, - "numScale": 6, + "numScale": 3, "primaryKey": 0, "notNull": 1, "autoIncrement": 0, @@ -29024,7 +29354,7 @@ "primaryKey": 0, "notNull": 1, "autoIncrement": 0, - "defaultValue": "0.0", + "defaultValue": "", "stndDictId": "", "stndFieldId": "", "stndDictKey": "", @@ -29070,7 +29400,7 @@ "primaryKey": 0, "notNull": 1, "autoIncrement": 0, - "defaultValue": "0.0", + "defaultValue": "", "stndDictId": "", "stndFieldId": "", "stndDictKey": "", @@ -29108,15 +29438,15 @@ "defKey": "initial_quantity", "defName": "起步量", "intro": "", - "baseDataType": "DECIMAL", + "baseDataType": "INT", "bizDomainType": "", - "dbDataType": "DECIMAL", - "dataLen": 16, - "numScale": 6, + "dbDataType": "INT", + "dataLen": "", + "numScale": "", "primaryKey": 0, "notNull": 1, "autoIncrement": 0, - "defaultValue": "0.0", + "defaultValue": "", "stndDictId": "", "stndFieldId": "", "stndDictKey": "", @@ -29154,15 +29484,15 @@ "defKey": "every_quantity", "defName": "每档的量", "intro": "", - "baseDataType": "DECIMAL", + "baseDataType": "INT", "bizDomainType": "", - "dbDataType": "DECIMAL", - "dataLen": 16, - "numScale": 6, + "dbDataType": "INT", + "dataLen": "", + "numScale": "", "primaryKey": 0, "notNull": 1, "autoIncrement": 0, - "defaultValue": "0.0", + "defaultValue": "", "stndDictId": "", "stndFieldId": "", "stndDictKey": "", @@ -29712,7 +30042,7 @@ "id": "114C1B4D-4FCA-4E61-BE22-9EC93DD09B8D", "defKey": "user_id", "defName": "归属用户 Id", - "intro": null, + "intro": "sys_user.id", "orderValue": null, "baseDataType": "BIGINT", "bizDomainType": "", @@ -29754,11 +30084,57 @@ "updatedUserId": null, "createdUserId": null }, + { + "id": "C322C44F-55E0-4217-AE62-F7A31A269E24", + "defKey": "customer_id", + "defName": "归属客户 Id", + "intro": "cst_customer.id", + "baseDataType": "BIGINT", + "bizDomainType": "", + "dbDataType": "BIGINT", + "dataLen": "", + "numScale": "", + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "", + "stndFieldId": "", + "stndDictKey": "", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "", + "dictItems": null, + "fieldTier": "", + "mark": null, + "attr1": "", + "attr2": "", + "attr3": "", + "attr4": "", + "attr5": "", + "attr6": "", + "attr7": "", + "attr8": "", + "attr9": "", + "attr10": "", + "attr11": "", + "attr12": "", + "attr13": "", + "attr14": "", + "attr15": "", + "attr16": "", + "attr17": "", + "attr18": "", + "attr19": "", + "attr20": "", + "origin": "PASTE" + }, { "id": "4CFA28DA-7FEC-4801-AF24-E0EC059880FF", "defKey": "org_id", "defName": "归属公司 Id", - "intro": null, + "intro": "cst_org.id", "orderValue": null, "baseDataType": "BIGINT", "bizDomainType": "", @@ -29766,7 +30142,7 @@ "dataLen": null, "numScale": null, "primaryKey": null, - "notNull": 1, + "notNull": 0, "autoIncrement": null, "defaultValue": null, "stndDictId": null, @@ -29806,10 +30182,10 @@ "defName": "驾驶证编号", "intro": null, "orderValue": null, - "baseDataType": "VARCHAR", + "baseDataType": "CHAR", "bizDomainType": "", - "dbDataType": "VARCHAR", - "dataLen": 30, + "dbDataType": "CHAR", + "dataLen": 18, "numScale": null, "primaryKey": null, "notNull": 1, @@ -30042,7 +30418,7 @@ "dataLen": null, "numScale": null, "primaryKey": null, - "notNull": 1, + "notNull": 0, "autoIncrement": null, "defaultValue": null, "stndDictId": null, @@ -30126,7 +30502,7 @@ "id": "F45BFDF4-AF71-4F59-B661-80C4C21A6DF6", "defKey": "creator_id", "defName": "创建人 Id", - "intro": " sys_user.id", + "intro": "sys_user.id", "baseDataType": "BIGINT", "bizDomainType": "", "dbDataType": "BIGINT", @@ -30648,7 +31024,7 @@ "baseDataType": "VARCHAR", "bizDomainType": "", "dbDataType": "VARCHAR", - "dataLen": 16, + "dataLen": 64, "numScale": null, "primaryKey": 0, "notNull": 1, @@ -31244,8 +31620,8 @@ { "id": "14DAB3C1-5814-401B-AC62-E15036FE31F6", "schemaName": null, - "defKey": "cst_order_cargo", - "defName": "装货信息", + "defKey": "cst_order_cargo_place", + "defName": "装/卸货地信息", "intro": "", "type": "P", "fields": [ @@ -31533,7 +31909,7 @@ "baseDataType": "VARCHAR", "bizDomainType": "", "dbDataType": "VARCHAR", - "dataLen": 16, + "dataLen": 64, "numScale": null, "primaryKey": 0, "notNull": 1, @@ -39818,13 +40194,2225 @@ ] } ] + }, + { + "id": "6817DD07-3355-4E35-924A-F383FEF78E86", + "schemaName": null, + "defKey": "cst_order_expense_detail", + "defName": "收费明细", + "intro": "", + "type": "P", + "fields": [ + { + "id": "3EA33255-A956-4E05-A5B8-566D44CBAD90", + "defKey": "id", + "defName": "Id", + "intro": "", + "baseDataType": "BIGINT", + "bizDomainType": "", + "dbDataType": "BIGINT", + "dataLen": "", + "numScale": "", + "primaryKey": 1, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "", + "stndFieldId": "", + "stndDictKey": "", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "", + "dictItems": [], + "fieldTier": "", + "mark": null, + "attr1": "", + "attr2": "", + "attr3": "", + "attr4": "", + "attr5": "", + "attr6": "", + "attr7": "", + "attr8": "", + "attr9": "", + "attr10": "", + "attr11": "", + "attr12": "", + "attr13": "", + "attr14": "", + "attr15": "", + "attr16": "", + "attr17": "", + "attr18": "PDManer", + "attr19": "", + "attr20": "", + "origin": "PASTE" + }, + { + "id": "1385E0BC-22DC-49ED-99D2-85B61B3BFB3A", + "defKey": "trans_id", + "defName": "运输明细 Id", + "intro": "", + "baseDataType": "BIGINT", + "bizDomainType": "", + "dbDataType": "BIGINT", + "dataLen": "", + "numScale": "", + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "", + "stndFieldId": "", + "stndDictKey": "", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "", + "dictItems": null, + "fieldTier": "", + "mark": null, + "attr1": "", + "attr2": "", + "attr3": "", + "attr4": "", + "attr5": "", + "attr6": "", + "attr7": "", + "attr8": "", + "attr9": "", + "attr10": "", + "attr11": "", + "attr12": "", + "attr13": "", + "attr14": "", + "attr15": "", + "attr16": "", + "attr17": "", + "attr18": "", + "attr19": "", + "attr20": "", + "origin": "UI" + }, + { + "id": "9D0330FE-D21A-42DA-B23B-4DC81E2ECCA0", + "defKey": "train_num", + "defName": "车次", + "intro": "", + "baseDataType": "INT", + "bizDomainType": "", + "dbDataType": "INT", + "dataLen": "", + "numScale": "", + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "", + "stndFieldId": "", + "stndDictKey": "", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "", + "dictItems": null, + "fieldTier": "", + "mark": null, + "attr1": "", + "attr2": "", + "attr3": "", + "attr4": "", + "attr5": "", + "attr6": "", + "attr7": "", + "attr8": "", + "attr9": "", + "attr10": "", + "attr11": "", + "attr12": "", + "attr13": "", + "attr14": "", + "attr15": "", + "attr16": "", + "attr17": "", + "attr18": "", + "attr19": "", + "attr20": "", + "origin": "PASTE" + }, + { + "id": "1173E328-0EAA-4232-9397-858AA3518BC8", + "defKey": "quantity", + "defName": "量", + "intro": "", + "baseDataType": "INT", + "bizDomainType": "", + "dbDataType": "INT", + "dataLen": "", + "numScale": "", + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "", + "stndFieldId": "", + "stndDictKey": "", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "", + "dictItems": null, + "fieldTier": "", + "mark": null, + "attr1": "", + "attr2": "", + "attr3": "", + "attr4": "", + "attr5": "", + "attr6": "", + "attr7": "", + "attr8": "", + "attr9": "", + "attr10": "", + "attr11": "", + "attr12": "", + "attr13": "", + "attr14": "", + "attr15": "", + "attr16": "", + "attr17": "", + "attr18": "", + "attr19": "", + "attr20": "", + "origin": "PASTE" + }, + { + "id": "F18FB072-733A-42C0-A588-19A2A1463595", + "defKey": "expense_item_id", + "defName": "费用明细 Id", + "intro": "", + "baseDataType": "BIGINT", + "bizDomainType": "", + "dbDataType": "BIGINT", + "dataLen": "", + "numScale": "", + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "", + "stndFieldId": "", + "stndDictKey": "", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "", + "dictItems": null, + "fieldTier": "", + "mark": null, + "attr1": "", + "attr2": "", + "attr3": "", + "attr4": "", + "attr5": "", + "attr6": "", + "attr7": "", + "attr8": "", + "attr9": "", + "attr10": "", + "attr11": "", + "attr12": "", + "attr13": "", + "attr14": "", + "attr15": "", + "attr16": "", + "attr17": "", + "attr18": "", + "attr19": "", + "attr20": "", + "origin": "UI" + }, + { + "id": "F23740FA-4E98-4608-A333-BEE21FFB8190", + "defKey": "payment_status", + "defName": "支付状态", + "intro": "", + "baseDataType": "VARCHAR", + "bizDomainType": "", + "dbDataType": "VARCHAR", + "dataLen": 32, + "numScale": "", + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "payment_status", + "stndFieldId": "", + "stndDictKey": "payment_status", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "Manual", + "dictItems": [ + { + "itemKey": "MianFei", + "itemName": "免费", + "parentKey": "", + "intro": "", + "id": "9C81AAAC-DB22-457A-876C-9B85357D3C08" + }, + { + "itemKey": "WeiZhiFu", + "itemName": "未支付", + "parentKey": "", + "intro": "", + "id": "4E544E5C-3A58-4EF3-B43E-9920D95C4850" + }, + { + "itemKey": "YiZhiFu", + "itemName": "已支付", + "parentKey": "", + "intro": "", + "id": "1FDE8C9C-AF01-4D10-8B81-BAD8B5D52EC9" + }, + { + "itemKey": "YiTuiKuan", + "itemName": "已退款", + "parentKey": "", + "intro": "", + "id": "CD40B918-2BCD-4E02-B911-F05BBD0ADBBC" + } + ], + "fieldTier": "", + "mark": null, + "attr1": "", + "attr2": "", + "attr3": "", + "attr4": "", + "attr5": "", + "attr6": "", + "attr7": "", + "attr8": "", + "attr9": "", + "attr10": "", + "attr11": "", + "attr12": "", + "attr13": "", + "attr14": "", + "attr15": "", + "attr16": "", + "attr17": "", + "attr18": "", + "attr19": "", + "attr20": "", + "origin": "PASTE" + }, + { + "id": "78217DF7-7353-4DB0-B4D9-90018C95A6B3", + "defKey": "pay_time", + "defName": "支付时间", + "intro": "", + "baseDataType": "DECIMAL", + "bizDomainType": "", + "dbDataType": "DECIMAL", + "dataLen": "", + "numScale": "", + "primaryKey": 0, + "notNull": 0, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "", + "stndFieldId": "", + "stndDictKey": "", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "", + "dictItems": null, + "fieldTier": "", + "mark": null, + "attr1": "", + "attr2": "", + "attr3": "", + "attr4": "", + "attr5": "", + "attr6": "", + "attr7": "", + "attr8": "", + "attr9": "", + "attr10": "", + "attr11": "", + "attr12": "", + "attr13": "", + "attr14": "", + "attr15": "", + "attr16": "", + "attr17": "", + "attr18": "", + "attr19": "", + "attr20": "", + "origin": "UI" + }, + { + "id": "35706508-0236-4E61-9524-2D4146A5E616", + "defKey": "refund_time", + "defName": "退款时间", + "intro": "", + "baseDataType": "DECIMAL", + "bizDomainType": "", + "dbDataType": "DECIMAL", + "dataLen": "", + "numScale": "", + "primaryKey": 0, + "notNull": 0, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "", + "stndFieldId": "", + "stndDictKey": "", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "", + "dictItems": null, + "fieldTier": "", + "mark": null, + "attr1": "", + "attr2": "", + "attr3": "", + "attr4": "", + "attr5": "", + "attr6": "", + "attr7": "", + "attr8": "", + "attr9": "", + "attr10": "", + "attr11": "", + "attr12": "", + "attr13": "", + "attr14": "", + "attr15": "", + "attr16": "", + "attr17": "", + "attr18": "", + "attr19": "", + "attr20": "", + "origin": "UI" + }, + { + "id": "FCB081A8-CBA2-4AD1-940D-52D6398DB1AD", + "defKey": "total_money", + "defName": "总金额", + "intro": "单位:元", + "baseDataType": "DECIMAL", + "bizDomainType": "", + "dbDataType": "DECIMAL", + "dataLen": "", + "numScale": "", + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "", + "stndFieldId": "", + "stndDictKey": "", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "", + "dictItems": null, + "fieldTier": "", + "mark": null, + "attr1": "", + "attr2": "", + "attr3": "", + "attr4": "", + "attr5": "", + "attr6": "", + "attr7": "", + "attr8": "", + "attr9": "", + "attr10": "", + "attr11": "", + "attr12": "", + "attr13": "", + "attr14": "", + "attr15": "", + "attr16": "", + "attr17": "", + "attr18": "", + "attr19": "", + "attr20": "", + "origin": "PASTE" + }, + { + "id": "AF2303AA-916D-4732-B5E8-F2AFDD3F0BB2", + "defKey": "discount_money", + "defName": "优惠金额", + "intro": "单位:元,有正负", + "baseDataType": "DECIMAL", + "bizDomainType": "", + "dbDataType": "DECIMAL", + "dataLen": "", + "numScale": "", + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "", + "stndFieldId": "", + "stndDictKey": "", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "", + "dictItems": null, + "fieldTier": "", + "mark": null, + "attr1": "", + "attr2": "", + "attr3": "", + "attr4": "", + "attr5": "", + "attr6": "", + "attr7": "", + "attr8": "", + "attr9": "", + "attr10": "", + "attr11": "", + "attr12": "", + "attr13": "", + "attr14": "", + "attr15": "", + "attr16": "", + "attr17": "", + "attr18": "", + "attr19": "", + "attr20": "", + "origin": "PASTE" + }, + { + "id": "C0AC7493-AD80-4953-B9BC-5476CF525285", + "defKey": "revise_money", + "defName": "手动修正金额", + "intro": "单位:元,有正负", + "baseDataType": "DECIMAL", + "bizDomainType": "", + "dbDataType": "DECIMAL", + "dataLen": "", + "numScale": "", + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "", + "stndFieldId": "", + "stndDictKey": "", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "", + "dictItems": null, + "fieldTier": "", + "mark": null, + "attr1": "", + "attr2": "", + "attr3": "", + "attr4": "", + "attr5": "", + "attr6": "", + "attr7": "", + "attr8": "", + "attr9": "", + "attr10": "", + "attr11": "", + "attr12": "", + "attr13": "", + "attr14": "", + "attr15": "", + "attr16": "", + "attr17": "", + "attr18": "", + "attr19": "", + "attr20": "", + "origin": "PASTE" + }, + { + "id": "31DD0A72-4DD3-47C4-AFD6-322082395FE9", + "defKey": "settle_money", + "defName": "结算金额", + "intro": "单位:元", + "baseDataType": "DECIMAL", + "bizDomainType": "", + "dbDataType": "DECIMAL", + "dataLen": "", + "numScale": "", + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "", + "stndFieldId": "", + "stndDictKey": "", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "", + "dictItems": null, + "fieldTier": "", + "mark": null, + "attr1": "", + "attr2": "", + "attr3": "", + "attr4": "", + "attr5": "", + "attr6": "", + "attr7": "", + "attr8": "", + "attr9": "", + "attr10": "", + "attr11": "", + "attr12": "", + "attr13": "", + "attr14": "", + "attr15": "", + "attr16": "", + "attr17": "", + "attr18": "", + "attr19": "", + "attr20": "", + "origin": "PASTE" + }, + { + "id": "2FE1F94B-889D-4094-84A2-ED39776B9303", + "defKey": "settlement_way", + "defName": "结算方式", + "intro": "", + "baseDataType": "VARCHAR", + "bizDomainType": "", + "dbDataType": "VARCHAR", + "dataLen": 16, + "numScale": "", + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "settlement_way", + "stndFieldId": "", + "stndDictKey": "settlement_way", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "Manual", + "dictItems": [ + { + "itemKey": "YueJie", + "itemName": "月结", + "parentKey": "", + "intro": "", + "id": "21E8CE9A-A4E4-43EC-802F-C62332F485CE" + }, + { + "itemKey": "YuE", + "itemName": "余额", + "parentKey": "", + "intro": "", + "id": "1E3F7458-C19E-481F-A6BB-881CB6E576CD" + }, + { + "itemKey": "XianFu", + "itemName": "现付", + "parentKey": "", + "intro": "", + "id": "02F37949-4DCD-4BF8-93DB-76D974A1BC47" + } + ], + "fieldTier": "", + "mark": null, + "attr1": "", + "attr2": "", + "attr3": "", + "attr4": "", + "attr5": "", + "attr6": "", + "attr7": "", + "attr8": "", + "attr9": "", + "attr10": "", + "attr11": "", + "attr12": "", + "attr13": "", + "attr14": "", + "attr15": "", + "attr16": "", + "attr17": "", + "attr18": "", + "attr19": "", + "attr20": "", + "origin": "PASTE" + }, + { + "id": "B4F9823B-781A-4BE3-BC6B-7FA3C3E5C724", + "defKey": "payer_user_id", + "defName": "付款人 Id", + "intro": "sys_user.id", + "baseDataType": "BIGINT", + "bizDomainType": "", + "dbDataType": "BIGINT", + "dataLen": "", + "numScale": "", + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "", + "stndFieldId": "", + "stndDictKey": "", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "", + "dictItems": null, + "fieldTier": "", + "mark": null, + "attr1": "", + "attr2": "", + "attr3": "", + "attr4": "", + "attr5": "", + "attr6": "", + "attr7": "", + "attr8": "", + "attr9": "", + "attr10": "", + "attr11": "", + "attr12": "", + "attr13": "", + "attr14": "", + "attr15": "", + "attr16": "", + "attr17": "", + "attr18": "", + "attr19": "", + "attr20": "", + "origin": "PASTE" + }, + { + "id": "58A3A997-4623-40CB-BFC5-7BC7C015A309", + "defKey": "payer_customer_id", + "defName": "付款人客户 Id", + "intro": "cst_customer.id", + "baseDataType": "BIGINT", + "bizDomainType": "", + "dbDataType": "BIGINT", + "dataLen": "", + "numScale": "", + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "", + "stndFieldId": "", + "stndDictKey": "", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "", + "dictItems": null, + "fieldTier": "", + "mark": null, + "attr1": "", + "attr2": "", + "attr3": "", + "attr4": "", + "attr5": "", + "attr6": "", + "attr7": "", + "attr8": "", + "attr9": "", + "attr10": "", + "attr11": "", + "attr12": "", + "attr13": "", + "attr14": "", + "attr15": "", + "attr16": "", + "attr17": "", + "attr18": "", + "attr19": "", + "attr20": "", + "origin": "PASTE" + }, + { + "id": "B7B89277-88CA-4740-A3EA-E33F8B1CDD90", + "defKey": "payer_money_account", + "defName": "付款方资金账户 Id", + "intro": "", + "baseDataType": "BIGINT", + "bizDomainType": "", + "dbDataType": "BIGINT", + "dataLen": "", + "numScale": "", + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "", + "stndFieldId": "", + "stndDictKey": "", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "", + "dictItems": null, + "fieldTier": "", + "mark": null, + "attr1": "", + "attr2": "", + "attr3": "", + "attr4": "", + "attr5": "", + "attr6": "", + "attr7": "", + "attr8": "", + "attr9": "", + "attr10": "", + "attr11": "", + "attr12": "", + "attr13": "", + "attr14": "", + "attr15": "", + "attr16": "", + "attr17": "", + "attr18": "", + "attr19": "", + "attr20": "", + "origin": "PASTE" + }, + { + "id": "878BD04D-3F9F-47C8-8E88-7741ADEF321B", + "defKey": "creator_id", + "defName": "创建人 Id", + "intro": " sys_user.id", + "baseDataType": "BIGINT", + "bizDomainType": "", + "dbDataType": "BIGINT", + "dataLen": "", + "numScale": "", + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "", + "stndFieldId": "", + "stndDictKey": "", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "", + "dictItems": null, + "fieldTier": "", + "mark": null, + "attr1": "", + "attr2": "", + "attr3": "", + "attr4": "", + "attr5": "", + "attr6": "", + "attr7": "", + "attr8": "", + "attr9": "", + "attr10": "", + "attr11": "", + "attr12": "", + "attr13": "", + "attr14": "", + "attr15": "", + "attr16": "", + "attr17": "", + "attr18": "PDManer", + "attr19": "", + "attr20": "", + "origin": "PASTE" + }, + { + "id": "64944BC7-BE2C-41EB-B33B-1859F4B38683", + "defKey": "modifier_id", + "defName": "修改人 Id", + "intro": " sys_user.id", + "baseDataType": "BIGINT", + "bizDomainType": "", + "dbDataType": "BIGINT", + "dataLen": "", + "numScale": "", + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "", + "stndFieldId": "", + "stndDictKey": "", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "", + "dictItems": [], + "fieldTier": "", + "mark": null, + "attr1": "", + "attr2": "", + "attr3": "", + "attr4": "", + "attr5": "", + "attr6": "", + "attr7": "", + "attr8": "", + "attr9": "", + "attr10": "", + "attr11": "", + "attr12": "", + "attr13": "", + "attr14": "", + "attr15": "", + "attr16": "", + "attr17": "", + "attr18": "PDManer", + "attr19": "", + "attr20": "", + "origin": "PASTE" + }, + { + "id": "04BAECED-0468-4CE1-B73B-8E9581ABCFDD", + "defKey": "create_time", + "defName": "创建时间", + "intro": "", + "baseDataType": "DATETIME", + "bizDomainType": "", + "dbDataType": "DATETIME", + "dataLen": "", + "numScale": "", + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "", + "stndFieldId": "", + "stndDictKey": "", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "", + "dictItems": [], + "fieldTier": "", + "mark": null, + "attr1": "", + "attr2": "", + "attr3": "", + "attr4": "", + "attr5": "", + "attr6": "", + "attr7": "", + "attr8": "", + "attr9": "", + "attr10": "", + "attr11": "", + "attr12": "", + "attr13": "", + "attr14": "", + "attr15": "", + "attr16": "", + "attr17": "", + "attr18": "PDManer", + "attr19": "", + "attr20": "", + "origin": "PASTE" + }, + { + "id": "55186DB7-D3F2-443E-8378-5E74C2BF335B", + "defKey": "modify_time", + "defName": "修改时间", + "intro": "", + "baseDataType": "DATETIME", + "bizDomainType": "", + "dbDataType": "DATETIME", + "dataLen": "", + "numScale": "", + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "", + "stndFieldId": "", + "stndDictKey": "", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "", + "dictItems": [], + "fieldTier": "", + "mark": null, + "attr1": "", + "attr2": "", + "attr3": "", + "attr4": "", + "attr5": "", + "attr6": "", + "attr7": "", + "attr8": "", + "attr9": "", + "attr10": "", + "attr11": "", + "attr12": "", + "attr13": "", + "attr14": "", + "attr15": "", + "attr16": "", + "attr17": "", + "attr18": "PDManer", + "attr19": "", + "attr20": "", + "origin": "PASTE" + }, + { + "id": "55453AFC-60B5-46F1-9BCD-37DE0445D442", + "defKey": "deleted", + "defName": "是否删除", + "intro": " 0-->未删除、1-->已删除", + "baseDataType": "TINYINT", + "bizDomainType": "", + "dbDataType": "TINYINT", + "dataLen": 1, + "numScale": "", + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "0", + "stndDictId": "", + "stndFieldId": "", + "stndDictKey": "", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "", + "dictItems": [], + "fieldTier": "", + "mark": null, + "attr1": "", + "attr2": "", + "attr3": "", + "attr4": "", + "attr5": "", + "attr6": "", + "attr7": "", + "attr8": "", + "attr9": "", + "attr10": "", + "attr11": "", + "attr12": "", + "attr13": "", + "attr14": "", + "attr15": "", + "attr16": "", + "attr17": "", + "attr18": "PDManer", + "attr19": "", + "attr20": "", + "origin": "PASTE" + } + ], + "indexes": [] + }, + { + "id": "3A0C2179-8576-40CB-8A4D-647318E432BC", + "type": "P", + "defKey": "cst_project", + "defName": "项目信息", + "intro": null, + "schemaName": null, + "props": null, + "mark": null, + "attr1": null, + "attr2": null, + "attr3": null, + "attr4": null, + "attr5": null, + "attr6": null, + "attr7": null, + "attr8": null, + "attr9": null, + "attr10": null, + "attr11": null, + "attr12": null, + "attr13": null, + "attr14": null, + "attr15": null, + "attr16": null, + "attr17": null, + "attr18": null, + "attr19": null, + "attr20": null, + "fields": [ + { + "id": "F03C4CE4-D8CE-4F3A-BB2A-8979B416E5A7", + "defKey": "id", + "defName": "Id", + "intro": null, + "orderValue": null, + "baseDataType": "BIGINT", + "bizDomainType": "", + "dbDataType": "BIGINT", + "dataLen": null, + "numScale": null, + "primaryKey": 1, + "notNull": 1, + "autoIncrement": null, + "defaultValue": null, + "stndDictId": null, + "stndDictKey": null, + "stndFieldId": null, + "stndFieldKey": null, + "mark": null, + "attr1": null, + "attr2": null, + "attr3": null, + "attr4": null, + "attr5": null, + "attr6": null, + "attr7": null, + "attr8": null, + "attr9": null, + "attr10": null, + "attr11": null, + "attr12": null, + "attr13": null, + "attr14": null, + "attr15": null, + "attr16": null, + "attr17": null, + "attr18": null, + "attr19": null, + "attr20": null, + "origin": null, + "stndComplianceType": null, + "stndComplianceLevel": null, + "updatedUserId": null, + "createdUserId": null + }, + { + "id": "544B650E-CF6C-4116-9654-6804D622845A", + "defKey": "project_name", + "defName": "项目名称", + "intro": null, + "orderValue": null, + "baseDataType": "VARCHAR", + "bizDomainType": "", + "dbDataType": "VARCHAR", + "dataLen": 255, + "numScale": null, + "primaryKey": null, + "notNull": 1, + "autoIncrement": null, + "defaultValue": null, + "stndDictId": null, + "stndDictKey": null, + "stndFieldId": null, + "stndFieldKey": null, + "mark": null, + "attr1": null, + "attr2": null, + "attr3": null, + "attr4": null, + "attr5": null, + "attr6": null, + "attr7": null, + "attr8": null, + "attr9": null, + "attr10": null, + "attr11": null, + "attr12": null, + "attr13": null, + "attr14": null, + "attr15": null, + "attr16": null, + "attr17": null, + "attr18": null, + "attr19": null, + "attr20": null, + "origin": null, + "stndComplianceType": null, + "stndComplianceLevel": null, + "updatedUserId": null, + "createdUserId": null + }, + { + "id": "4F4879BD-CC3A-4802-BFDE-105ACCB51314", + "defKey": "contract_picture", + "defName": "合同图片", + "intro": null, + "orderValue": null, + "baseDataType": "VARCHAR", + "bizDomainType": "", + "dbDataType": "VARCHAR", + "dataLen": 512, + "numScale": null, + "primaryKey": null, + "notNull": 1, + "autoIncrement": null, + "defaultValue": "''", + "stndDictId": null, + "stndDictKey": null, + "stndFieldId": null, + "stndFieldKey": null, + "mark": null, + "attr1": null, + "attr2": null, + "attr3": null, + "attr4": null, + "attr5": null, + "attr6": null, + "attr7": null, + "attr8": null, + "attr9": null, + "attr10": null, + "attr11": null, + "attr12": null, + "attr13": null, + "attr14": null, + "attr15": null, + "attr16": null, + "attr17": null, + "attr18": null, + "attr19": null, + "attr20": null, + "origin": null, + "stndComplianceType": null, + "stndComplianceLevel": null, + "updatedUserId": null, + "createdUserId": null + }, + { + "id": "4A29C86B-615B-4A37-BDA1-799A62B7900D", + "defKey": "trans_customer_id", + "defName": "运输方客户 Id", + "intro": "", + "baseDataType": "BIGINT", + "bizDomainType": "", + "dbDataType": "BIGINT", + "dataLen": "", + "numScale": "", + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "", + "stndFieldId": "", + "stndDictKey": "", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "", + "dictItems": null, + "fieldTier": "", + "mark": null, + "attr1": "", + "attr2": "", + "attr3": "", + "attr4": "", + "attr5": "", + "attr6": "", + "attr7": "", + "attr8": "", + "attr9": "", + "attr10": "", + "attr11": "", + "attr12": "", + "attr13": "", + "attr14": "", + "attr15": "", + "attr16": "", + "attr17": "", + "attr18": "", + "attr19": "", + "attr20": "", + "origin": "UI" + }, + { + "id": "91DDD745-14EB-46E7-9942-8C0599CE28D8", + "defKey": "trans_org_id", + "defName": "运输方组织 Id", + "intro": "", + "baseDataType": "BIGINT", + "bizDomainType": "", + "dbDataType": "BIGINT", + "dataLen": "", + "numScale": "", + "primaryKey": 0, + "notNull": 0, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "", + "stndFieldId": "", + "stndDictKey": "", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "", + "dictItems": null, + "fieldTier": "", + "mark": null, + "attr1": "", + "attr2": "", + "attr3": "", + "attr4": "", + "attr5": "", + "attr6": "", + "attr7": "", + "attr8": "", + "attr9": "", + "attr10": "", + "attr11": "", + "attr12": "", + "attr13": "", + "attr14": "", + "attr15": "", + "attr16": "", + "attr17": "", + "attr18": "", + "attr19": "", + "attr20": "", + "origin": "UI" + }, + { + "id": "C980261A-D333-4185-ABE8-C068D9D9A50D", + "defKey": "fringe_customer_id", + "defName": "产废方/购买方客户 Id", + "intro": "", + "baseDataType": "BIGINT", + "bizDomainType": "", + "dbDataType": "BIGINT", + "dataLen": "", + "numScale": "", + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "", + "stndFieldId": "", + "stndDictKey": "", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "", + "dictItems": null, + "fieldTier": "", + "mark": null, + "attr1": "", + "attr2": "", + "attr3": "", + "attr4": "", + "attr5": "", + "attr6": "", + "attr7": "", + "attr8": "", + "attr9": "", + "attr10": "", + "attr11": "", + "attr12": "", + "attr13": "", + "attr14": "", + "attr15": "", + "attr16": "", + "attr17": "", + "attr18": "", + "attr19": "", + "attr20": "", + "origin": "PASTE" + }, + { + "id": "A5E7568A-8179-45A4-81ED-9F564F964417", + "defKey": "fringe_org_id", + "defName": "产废方/购买方组织 Id", + "intro": "", + "baseDataType": "BIGINT", + "bizDomainType": "", + "dbDataType": "BIGINT", + "dataLen": "", + "numScale": "", + "primaryKey": 0, + "notNull": 0, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "", + "stndFieldId": "", + "stndDictKey": "", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "", + "dictItems": null, + "fieldTier": "", + "mark": null, + "attr1": "", + "attr2": "", + "attr3": "", + "attr4": "", + "attr5": "", + "attr6": "", + "attr7": "", + "attr8": "", + "attr9": "", + "attr10": "", + "attr11": "", + "attr12": "", + "attr13": "", + "attr14": "", + "attr15": "", + "attr16": "", + "attr17": "", + "attr18": "", + "attr19": "", + "attr20": "", + "origin": "PASTE" + }, + { + "id": "597B5D1A-1D50-4CD8-875E-1A69F9392EE3", + "defKey": "province", + "defName": "省", + "intro": "代码", + "baseDataType": "VARCHAR", + "bizDomainType": "", + "dbDataType": "VARCHAR", + "dataLen": 16, + "numScale": null, + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": null, + "stndFieldId": null, + "stndDictKey": null, + "stndFieldKey": null, + "stndComplianceLevel": null, + "stndComplianceType": null, + "dictFrom": "", + "dictItems": null, + "fieldTier": "", + "mark": null, + "attr1": null, + "attr2": null, + "attr3": null, + "attr4": null, + "attr5": null, + "attr6": null, + "attr7": null, + "attr8": null, + "attr9": null, + "attr10": null, + "attr11": null, + "attr12": null, + "attr13": null, + "attr14": null, + "attr15": null, + "attr16": null, + "attr17": null, + "attr18": null, + "attr19": null, + "attr20": null, + "origin": "PASTE" + }, + { + "id": "20869D33-52F4-4701-85C4-CBAC9F500F35", + "defKey": "city", + "defName": "市", + "intro": "代码", + "baseDataType": "VARCHAR", + "bizDomainType": "", + "dbDataType": "VARCHAR", + "dataLen": 16, + "numScale": null, + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": null, + "stndFieldId": null, + "stndDictKey": null, + "stndFieldKey": null, + "stndComplianceLevel": null, + "stndComplianceType": null, + "dictFrom": "", + "dictItems": null, + "fieldTier": "", + "mark": null, + "attr1": null, + "attr2": null, + "attr3": null, + "attr4": null, + "attr5": null, + "attr6": null, + "attr7": null, + "attr8": null, + "attr9": null, + "attr10": null, + "attr11": null, + "attr12": null, + "attr13": null, + "attr14": null, + "attr15": null, + "attr16": null, + "attr17": null, + "attr18": null, + "attr19": null, + "attr20": null, + "origin": "PASTE" + }, + { + "id": "423AF43C-3F75-4AE3-86D3-869E13F697AB", + "defKey": "area", + "defName": "区县", + "intro": "代码", + "baseDataType": "VARCHAR", + "bizDomainType": "", + "dbDataType": "VARCHAR", + "dataLen": 16, + "numScale": null, + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": null, + "stndFieldId": null, + "stndDictKey": null, + "stndFieldKey": null, + "stndComplianceLevel": null, + "stndComplianceType": null, + "dictFrom": "", + "dictItems": null, + "fieldTier": "", + "mark": null, + "attr1": null, + "attr2": null, + "attr3": null, + "attr4": null, + "attr5": null, + "attr6": null, + "attr7": null, + "attr8": null, + "attr9": null, + "attr10": null, + "attr11": null, + "attr12": null, + "attr13": null, + "attr14": null, + "attr15": null, + "attr16": null, + "attr17": null, + "attr18": null, + "attr19": null, + "attr20": null, + "origin": "PASTE" + }, + { + "id": "08B1E697-D5CE-4710-9567-21F1E9CED7AA", + "defKey": "town", + "defName": "乡镇街道", + "intro": "代码", + "baseDataType": "VARCHAR", + "bizDomainType": "", + "dbDataType": "VARCHAR", + "dataLen": 64, + "numScale": null, + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "''", + "stndDictId": null, + "stndFieldId": null, + "stndDictKey": null, + "stndFieldKey": null, + "stndComplianceLevel": null, + "stndComplianceType": null, + "dictFrom": "", + "dictItems": null, + "fieldTier": "", + "mark": null, + "attr1": null, + "attr2": null, + "attr3": null, + "attr4": null, + "attr5": null, + "attr6": null, + "attr7": null, + "attr8": null, + "attr9": null, + "attr10": null, + "attr11": null, + "attr12": null, + "attr13": null, + "attr14": null, + "attr15": null, + "attr16": null, + "attr17": null, + "attr18": null, + "attr19": null, + "attr20": null, + "origin": "PASTE" + }, + { + "id": "FD235988-215E-4CDD-9B0C-00D8B5EED3A6", + "defKey": "province_name", + "defName": "省", + "intro": "名称", + "baseDataType": "VARCHAR", + "bizDomainType": "", + "dbDataType": "VARCHAR", + "dataLen": 255, + "numScale": null, + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": null, + "stndFieldId": null, + "stndDictKey": null, + "stndFieldKey": null, + "stndComplianceLevel": null, + "stndComplianceType": null, + "dictFrom": "", + "dictItems": null, + "fieldTier": "", + "mark": null, + "attr1": null, + "attr2": null, + "attr3": null, + "attr4": null, + "attr5": null, + "attr6": null, + "attr7": null, + "attr8": null, + "attr9": null, + "attr10": null, + "attr11": null, + "attr12": null, + "attr13": null, + "attr14": null, + "attr15": null, + "attr16": null, + "attr17": null, + "attr18": null, + "attr19": null, + "attr20": null, + "origin": "PASTE" + }, + { + "id": "19CBC2F7-3D35-4B07-8996-3ABE40645CE3", + "defKey": "city_name", + "defName": "市", + "intro": "名称", + "baseDataType": "VARCHAR", + "bizDomainType": "", + "dbDataType": "VARCHAR", + "dataLen": 255, + "numScale": null, + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": null, + "stndFieldId": null, + "stndDictKey": null, + "stndFieldKey": null, + "stndComplianceLevel": null, + "stndComplianceType": null, + "dictFrom": "", + "dictItems": null, + "fieldTier": "", + "mark": null, + "attr1": null, + "attr2": null, + "attr3": null, + "attr4": null, + "attr5": null, + "attr6": null, + "attr7": null, + "attr8": null, + "attr9": null, + "attr10": null, + "attr11": null, + "attr12": null, + "attr13": null, + "attr14": null, + "attr15": null, + "attr16": null, + "attr17": null, + "attr18": null, + "attr19": null, + "attr20": null, + "origin": "PASTE" + }, + { + "id": "71DFD58F-AAD0-4722-94C9-51551F3FB0F0", + "defKey": "area_name", + "defName": "区县", + "intro": "名称", + "baseDataType": "VARCHAR", + "bizDomainType": "", + "dbDataType": "VARCHAR", + "dataLen": 255, + "numScale": null, + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": null, + "stndFieldId": null, + "stndDictKey": null, + "stndFieldKey": null, + "stndComplianceLevel": null, + "stndComplianceType": null, + "dictFrom": "", + "dictItems": null, + "fieldTier": "", + "mark": null, + "attr1": null, + "attr2": null, + "attr3": null, + "attr4": null, + "attr5": null, + "attr6": null, + "attr7": null, + "attr8": null, + "attr9": null, + "attr10": null, + "attr11": null, + "attr12": null, + "attr13": null, + "attr14": null, + "attr15": null, + "attr16": null, + "attr17": null, + "attr18": null, + "attr19": null, + "attr20": null, + "origin": "PASTE" + }, + { + "id": "55B87BC5-6484-477B-BD3D-34D5E20AC7F0", + "defKey": "town_name", + "defName": "乡镇街道", + "intro": "名称", + "baseDataType": "VARCHAR", + "bizDomainType": "", + "dbDataType": "VARCHAR", + "dataLen": 255, + "numScale": null, + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "''", + "stndDictId": null, + "stndFieldId": null, + "stndDictKey": null, + "stndFieldKey": null, + "stndComplianceLevel": null, + "stndComplianceType": null, + "dictFrom": "", + "dictItems": null, + "fieldTier": "", + "mark": null, + "attr1": null, + "attr2": null, + "attr3": null, + "attr4": null, + "attr5": null, + "attr6": null, + "attr7": null, + "attr8": null, + "attr9": null, + "attr10": null, + "attr11": null, + "attr12": null, + "attr13": null, + "attr14": null, + "attr15": null, + "attr16": null, + "attr17": null, + "attr18": null, + "attr19": null, + "attr20": null, + "origin": "PASTE" + }, + { + "id": "A3B26FA5-53DA-444D-B3CE-F929DADD7FB5", + "defKey": "address", + "defName": "详细地址", + "intro": null, + "baseDataType": "VARCHAR", + "bizDomainType": "", + "dbDataType": "VARCHAR", + "dataLen": 255, + "numScale": null, + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": null, + "stndFieldId": null, + "stndDictKey": null, + "stndFieldKey": null, + "stndComplianceLevel": null, + "stndComplianceType": null, + "dictFrom": "", + "dictItems": null, + "fieldTier": "", + "mark": null, + "attr1": null, + "attr2": null, + "attr3": null, + "attr4": null, + "attr5": null, + "attr6": null, + "attr7": null, + "attr8": null, + "attr9": null, + "attr10": null, + "attr11": null, + "attr12": null, + "attr13": null, + "attr14": null, + "attr15": null, + "attr16": null, + "attr17": null, + "attr18": null, + "attr19": null, + "attr20": null, + "origin": "PASTE" + }, + { + "id": "A910DD0C-8C2F-455F-95AD-703221514B20", + "defKey": "lng", + "defName": "经度", + "intro": null, + "baseDataType": "DOUBLE", + "bizDomainType": "", + "dbDataType": "DOUBLE", + "dataLen": null, + "numScale": null, + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": null, + "stndDictId": null, + "stndFieldId": null, + "stndDictKey": null, + "stndFieldKey": null, + "stndComplianceLevel": null, + "stndComplianceType": null, + "dictFrom": "", + "dictItems": null, + "fieldTier": "", + "mark": null, + "attr1": null, + "attr2": null, + "attr3": null, + "attr4": null, + "attr5": null, + "attr6": null, + "attr7": null, + "attr8": null, + "attr9": null, + "attr10": null, + "attr11": null, + "attr12": null, + "attr13": null, + "attr14": null, + "attr15": null, + "attr16": null, + "attr17": null, + "attr18": null, + "attr19": null, + "attr20": null, + "origin": "PASTE" + }, + { + "id": "891E43C5-E1A6-4939-A9C3-4E2197467D2B", + "defKey": "lat", + "defName": "纬度", + "intro": null, + "baseDataType": "DOUBLE", + "bizDomainType": "", + "dbDataType": "DOUBLE", + "dataLen": null, + "numScale": null, + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": null, + "stndDictId": null, + "stndFieldId": null, + "stndDictKey": null, + "stndFieldKey": null, + "stndComplianceLevel": null, + "stndComplianceType": null, + "dictFrom": "", + "dictItems": null, + "fieldTier": "", + "mark": null, + "attr1": null, + "attr2": null, + "attr3": null, + "attr4": null, + "attr5": null, + "attr6": null, + "attr7": null, + "attr8": null, + "attr9": null, + "attr10": null, + "attr11": null, + "attr12": null, + "attr13": null, + "attr14": null, + "attr15": null, + "attr16": null, + "attr17": null, + "attr18": null, + "attr19": null, + "attr20": null, + "origin": "PASTE" + }, + { + "id": "56ACF0F4-9740-4C7C-9F1D-5323160E4C81", + "defKey": "contract_start_date", + "defName": "合同有效期", + "intro": null, + "orderValue": null, + "baseDataType": "DATE", + "bizDomainType": "", + "dbDataType": "DATE", + "dataLen": "", + "numScale": null, + "primaryKey": null, + "notNull": 1, + "autoIncrement": null, + "defaultValue": null, + "stndDictId": null, + "stndDictKey": null, + "stndFieldId": null, + "stndFieldKey": null, + "mark": null, + "attr1": null, + "attr2": null, + "attr3": null, + "attr4": null, + "attr5": null, + "attr6": null, + "attr7": null, + "attr8": null, + "attr9": null, + "attr10": null, + "attr11": null, + "attr12": null, + "attr13": null, + "attr14": null, + "attr15": null, + "attr16": null, + "attr17": null, + "attr18": null, + "attr19": null, + "attr20": null, + "origin": null, + "stndComplianceType": null, + "stndComplianceLevel": null, + "updatedUserId": null, + "createdUserId": null + }, + { + "id": "95272681-6D8F-455C-B001-E673DB9C5ABE", + "defKey": "contract_end_date", + "defName": "合同有效期", + "intro": null, + "baseDataType": "DATE", + "bizDomainType": "", + "dbDataType": "DATE", + "dataLen": "", + "numScale": null, + "primaryKey": 0, + "notNull": 0, + "autoIncrement": 0, + "defaultValue": null, + "stndDictId": null, + "stndFieldId": null, + "stndDictKey": null, + "stndFieldKey": null, + "stndComplianceLevel": null, + "stndComplianceType": null, + "dictFrom": "", + "dictItems": null, + "fieldTier": "", + "mark": null, + "attr1": null, + "attr2": null, + "attr3": null, + "attr4": null, + "attr5": null, + "attr6": null, + "attr7": null, + "attr8": null, + "attr9": null, + "attr10": null, + "attr11": null, + "attr12": null, + "attr13": null, + "attr14": null, + "attr15": null, + "attr16": null, + "attr17": null, + "attr18": null, + "attr19": null, + "attr20": null, + "origin": "PASTE" + }, + { + "id": "006D68E5-8719-4AE7-8B5A-4747AD63863C", + "defKey": "creator_id", + "defName": "创建人 Id", + "intro": " sys_user.id", + "baseDataType": "BIGINT", + "bizDomainType": "", + "dbDataType": "BIGINT", + "dataLen": "", + "numScale": "", + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "", + "stndFieldId": "", + "stndDictKey": "", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "", + "dictItems": null, + "fieldTier": "", + "mark": null, + "attr1": "", + "attr2": "", + "attr3": "", + "attr4": "", + "attr5": "", + "attr6": "", + "attr7": "", + "attr8": "", + "attr9": "", + "attr10": "", + "attr11": "", + "attr12": "", + "attr13": "", + "attr14": "", + "attr15": "", + "attr16": "", + "attr17": "", + "attr18": "PDManer", + "attr19": "", + "attr20": "", + "origin": "PASTE" + }, + { + "id": "37072BDC-3D3F-46C4-A99D-C19741E47091", + "defKey": "modifier_id", + "defName": "修改人 Id", + "intro": " sys_user.id", + "baseDataType": "BIGINT", + "bizDomainType": "", + "dbDataType": "BIGINT", + "dataLen": "", + "numScale": "", + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "", + "stndFieldId": "", + "stndDictKey": "", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "", + "dictItems": [], + "fieldTier": "", + "mark": null, + "attr1": "", + "attr2": "", + "attr3": "", + "attr4": "", + "attr5": "", + "attr6": "", + "attr7": "", + "attr8": "", + "attr9": "", + "attr10": "", + "attr11": "", + "attr12": "", + "attr13": "", + "attr14": "", + "attr15": "", + "attr16": "", + "attr17": "", + "attr18": "PDManer", + "attr19": "", + "attr20": "", + "origin": "PASTE" + }, + { + "id": "93452E2B-7BBC-4ADC-BD2C-C4BA36E9ED8A", + "defKey": "create_time", + "defName": "创建时间", + "intro": "", + "baseDataType": "DATETIME", + "bizDomainType": "", + "dbDataType": "DATETIME", + "dataLen": "", + "numScale": "", + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "", + "stndFieldId": "", + "stndDictKey": "", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "", + "dictItems": [], + "fieldTier": "", + "mark": null, + "attr1": "", + "attr2": "", + "attr3": "", + "attr4": "", + "attr5": "", + "attr6": "", + "attr7": "", + "attr8": "", + "attr9": "", + "attr10": "", + "attr11": "", + "attr12": "", + "attr13": "", + "attr14": "", + "attr15": "", + "attr16": "", + "attr17": "", + "attr18": "PDManer", + "attr19": "", + "attr20": "", + "origin": "PASTE" + }, + { + "id": "EDCF1D2F-FBA6-451A-B1E7-9F4929CF1942", + "defKey": "modify_time", + "defName": "修改时间", + "intro": "", + "baseDataType": "DATETIME", + "bizDomainType": "", + "dbDataType": "DATETIME", + "dataLen": "", + "numScale": "", + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "", + "stndFieldId": "", + "stndDictKey": "", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "", + "dictItems": [], + "fieldTier": "", + "mark": null, + "attr1": "", + "attr2": "", + "attr3": "", + "attr4": "", + "attr5": "", + "attr6": "", + "attr7": "", + "attr8": "", + "attr9": "", + "attr10": "", + "attr11": "", + "attr12": "", + "attr13": "", + "attr14": "", + "attr15": "", + "attr16": "", + "attr17": "", + "attr18": "PDManer", + "attr19": "", + "attr20": "", + "origin": "PASTE" + }, + { + "id": "D336B018-F9D1-449F-99FD-F2AC23C384BF", + "defKey": "deleted", + "defName": "是否删除", + "intro": " 0-->未删除、1-->已删除", + "baseDataType": "TINYINT", + "bizDomainType": "", + "dbDataType": "TINYINT", + "dataLen": 1, + "numScale": "", + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "0", + "stndDictId": "", + "stndFieldId": "", + "stndDictKey": "", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "", + "dictItems": [], + "fieldTier": "", + "mark": null, + "attr1": "", + "attr2": "", + "attr3": "", + "attr4": "", + "attr5": "", + "attr6": "", + "attr7": "", + "attr8": "", + "attr9": "", + "attr10": "", + "attr11": "", + "attr12": "", + "attr13": "", + "attr14": "", + "attr15": "", + "attr16": "", + "attr17": "", + "attr18": "PDManer", + "attr19": "", + "attr20": "", + "origin": "PASTE" + } + ], + "correlations": null, + "indexes": [] } ], "diagrams": [], "readonly": false, "allowWs": false }, - "updateTime": 1765202732313, - "signature": "fa1e20d552dc093afa934e0b2e0340df", + "updateTime": 1765274725045, + "signature": "7e953ff0dc6a0f9a3829d21fb8295b2d", "branchId": "1111" } \ No newline at end of file