From 26f4c57e014d575f117613d882d664db0e037f4a Mon Sep 17 00:00:00 2001 From: lzq <2495532633@qq.com> Date: Sat, 6 Dec 2025 17:34:58 +0800 Subject: [PATCH] 1 --- .../njzscloud/common/gen/TplController.java | 50 +- .../com/njzscloud/common/gen/TplService.java | 8 + .../gen/config/GenAutoConfiguration.java | 4 +- .../common/gen/support/DbMetaData.java | 20 + .../common/gen/support/Generator.java | 5 +- z-doc/pdma/njzscloud-dispose.pdma | 12545 +++++++++++++--- 6 files changed, 10417 insertions(+), 2215 deletions(-) diff --git a/njzscloud-common/njzscloud-common-gen/src/main/java/com/njzscloud/common/gen/TplController.java b/njzscloud-common/njzscloud-common-gen/src/main/java/com/njzscloud/common/gen/TplController.java index 39d8838..9a796a3 100644 --- a/njzscloud-common/njzscloud-common-gen/src/main/java/com/njzscloud/common/gen/TplController.java +++ b/njzscloud-common/njzscloud-common-gen/src/main/java/com/njzscloud/common/gen/TplController.java @@ -1,6 +1,7 @@ package com.njzscloud.common.gen; import cn.hutool.core.date.DateTime; +import cn.hutool.core.map.MapUtil; import cn.hutool.core.util.IdUtil; import cn.hutool.core.util.StrUtil; import cn.hutool.core.util.ZipUtil; @@ -19,6 +20,7 @@ import org.springframework.web.bind.annotation.*; import java.io.ByteArrayInputStream; import java.io.ByteArrayOutputStream; import java.io.InputStream; +import java.util.HashMap; import java.util.List; import java.util.Map; @@ -60,8 +62,8 @@ public class TplController { return R.success(); } - @PostMapping("/generate") - public void generate(@RequestParam("tplNames") String[] tplNames, + @PostMapping("/download") + public void download(@RequestParam("tplNames") String[] tplNames, @RequestParam("tableName") String tableName, @RequestBody(required = false) Map data, HttpServletResponse response) { @@ -89,6 +91,50 @@ public class TplController { ServletUtil.download(response, out.toByteArray(), Mime.ZIP, DateTime.now() + ".zip"); } + @PostMapping("/preview") + public R preview(@RequestParam("tplNames") String[] tplNames, + @RequestParam("tableName") String tableName, + @RequestBody(required = false) Map data) { + Map> map = new HashMap<>(); + for (String tplName : tplNames) { + Tuple3 res = Generator.generate(tplName, tableName, data); + String res0 = res.get_0(); + String res1 = res.get_1(); + String res2 = res.get_2(); + StringBuilder pathBuilder = new StringBuilder(); + if (StrUtil.isNotBlank(res0)) { + pathBuilder.append(res0); + if (!res0.endsWith("/")) pathBuilder.append("/"); + } + if (StrUtil.isNotBlank(res1)) pathBuilder.append(res1); + else pathBuilder.append(IdUtil.fastSimpleUUID()).append(".txt"); + map.put(tplName, MapUtil.builder() + .put("path", pathBuilder.toString()) + .put("content", res2) + .build()); + } + return R.success(map); + } + + + /** + * 获取表信息 + */ + @GetMapping("/list_table") + public R>> listTable(@RequestParam(value = "tableName", required = false) String tableName) { + return R.success(tplService.listTable(tableName)); + } + + + /** + * 获取所有模板 + */ + @GetMapping("/list") + public R listAll() { + return R.success(tplService.list()); + } + + /** * 详情 */ diff --git a/njzscloud-common/njzscloud-common-gen/src/main/java/com/njzscloud/common/gen/TplService.java b/njzscloud-common/njzscloud-common-gen/src/main/java/com/njzscloud/common/gen/TplService.java index e02e9b2..7d911b2 100644 --- a/njzscloud-common/njzscloud-common-gen/src/main/java/com/njzscloud/common/gen/TplService.java +++ b/njzscloud-common/njzscloud-common-gen/src/main/java/com/njzscloud/common/gen/TplService.java @@ -6,10 +6,12 @@ import com.baomidou.mybatisplus.core.toolkit.Wrappers; import com.baomidou.mybatisplus.extension.service.IService; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; import com.njzscloud.common.core.ex.Exceptions; +import com.njzscloud.common.gen.support.DbMetaData; import com.njzscloud.common.gen.support.TemplateEngine; import com.njzscloud.common.gen.support.Tpl; import com.njzscloud.common.mp.support.PageParam; import com.njzscloud.common.mp.support.PageResult; +import lombok.RequiredArgsConstructor; import lombok.extern.slf4j.Slf4j; import org.springframework.stereotype.Service; import org.springframework.transaction.annotation.Transactional; @@ -22,6 +24,7 @@ import java.util.Map; */ @Slf4j @Service +@RequiredArgsConstructor public class TplService extends ServiceImpl implements IService { /** @@ -99,4 +102,9 @@ public class TplService extends ServiceImpl implements ISe return PageResult.of(this.page(pageParam.toPage(), Wrappers.query(tplEntity))); } + private final DbMetaData dbMetaData; + + public List> listTable(String tableName) { + return dbMetaData.getTables(tableName); + } } diff --git a/njzscloud-common/njzscloud-common-gen/src/main/java/com/njzscloud/common/gen/config/GenAutoConfiguration.java b/njzscloud-common/njzscloud-common-gen/src/main/java/com/njzscloud/common/gen/config/GenAutoConfiguration.java index 18635f8..652ce4e 100644 --- a/njzscloud-common/njzscloud-common-gen/src/main/java/com/njzscloud/common/gen/config/GenAutoConfiguration.java +++ b/njzscloud-common/njzscloud-common-gen/src/main/java/com/njzscloud/common/gen/config/GenAutoConfiguration.java @@ -15,8 +15,8 @@ import javax.sql.DataSource; public class GenAutoConfiguration { @Bean - public TplService sysTplService() { - return new TplService(); + public TplService sysTplService(DbMetaData dbMetaData) { + return new TplService(dbMetaData); } @Bean diff --git a/njzscloud-common/njzscloud-common-gen/src/main/java/com/njzscloud/common/gen/support/DbMetaData.java b/njzscloud-common/njzscloud-common-gen/src/main/java/com/njzscloud/common/gen/support/DbMetaData.java index fbbbd82..2369aa6 100644 --- a/njzscloud-common/njzscloud-common-gen/src/main/java/com/njzscloud/common/gen/support/DbMetaData.java +++ b/njzscloud-common/njzscloud-common-gen/src/main/java/com/njzscloud/common/gen/support/DbMetaData.java @@ -70,4 +70,24 @@ public class DbMetaData { } return tableInfos; } + + public List> getTables(String tableName) { + try (Connection connection = dataSource.getConnection()) { + List> tableInfos = new ArrayList<>(); + DatabaseMetaData metaData = connection.getMetaData(); + try (ResultSet tablesData = metaData.getTables(null, null, StrUtil.isNotBlank(tableName) ? tableName : "%", new String[]{"TABLE"})) { + while (tablesData.next()) { + String tableName_ = tablesData.getString("TABLE_NAME"); + tableInfos.add(MapUtil.builder() + .put("name", tableName_) + .put("comment", tablesData.getString("REMARKS")) + .build()); + } + } + return tableInfos; + } catch (Exception e) { + log.error("获取数据库元数据失败", e); + return Collections.emptyList(); + } + } } diff --git a/njzscloud-common/njzscloud-common-gen/src/main/java/com/njzscloud/common/gen/support/Generator.java b/njzscloud-common/njzscloud-common-gen/src/main/java/com/njzscloud/common/gen/support/Generator.java index 4599854..75863db 100644 --- a/njzscloud-common/njzscloud-common-gen/src/main/java/com/njzscloud/common/gen/support/Generator.java +++ b/njzscloud-common/njzscloud-common-gen/src/main/java/com/njzscloud/common/gen/support/Generator.java @@ -19,10 +19,11 @@ import java.util.Map; @Slf4j public class Generator { + private static final DbMetaData dbMetaData = SpringUtil.getBean(DbMetaData.class); + private static final TplService tplService = SpringUtil.getBean(TplService.class); private static Tuple3 generate0(String tplName, String tableName, Map data) { - DbMetaData dbMetaData = SpringUtil.getBean(DbMetaData.class); - TplService tplService = SpringUtil.getBean(TplService.class); + Assert.notBlank(tableName, () -> Exceptions.clierr("未指定表名称")); data.put("tableName", tableName); List> table = dbMetaData.getMetaData(tableName); diff --git a/z-doc/pdma/njzscloud-dispose.pdma b/z-doc/pdma/njzscloud-dispose.pdma index bea1352..235021c 100644 --- a/z-doc/pdma/njzscloud-dispose.pdma +++ b/z-doc/pdma/njzscloud-dispose.pdma @@ -3137,6 +3137,29 @@ "diagramRefs": [], "peerOrder": 1 }, + { + "id": "76F28967-EDEA-4FA2-9E00-FC0A14C8D915", + "defKey": "mfg", + "defName": "生产", + "classifyType": "MANUAL", + "manualClassify": "[\"P\"]", + "bindSchema": 0, + "children": null, + "entityRefs": [ + { + "refObjectId": "0B223F50-E8AF-40F4-8444-1B22D1171407", + "refObjectType": "P", + "orderValue": 1 + }, + { + "refObjectId": "8597F6A3-0AB9-4885-BC3A-72C3ACC4B756", + "refObjectType": "P", + "orderValue": 2 + } + ], + "diagramRefs": [], + "peerOrder": 2 + }, { "id": "C2ED7A76-B66C-4323-996C-0EB696D22C68", "defKey": "goods", @@ -3158,7 +3181,7 @@ } ], "diagramRefs": [], - "peerOrder": 2 + "peerOrder": 3 }, { "id": "8FF17ADC-6C66-4DBD-B7FC-0C0B6E35A910", @@ -3196,14 +3219,14 @@ } ], "diagramRefs": [], - "peerOrder": 3 + "peerOrder": 4 }, { "id": "47A6C9D4-056A-48B0-B6B2-4BF5AC78D0E3", "defKey": "wh", "defName": "仓储", - "classifyType": "AUTO", - "manualClassify": "[]", + "classifyType": "MANUAL", + "manualClassify": "[\"P\"]", "bindSchema": 0, "children": null, "entityRefs": [ @@ -3211,10 +3234,73 @@ "refObjectId": "9645DE46-7F49-4C24-99F2-9C8D88C5B328", "refObjectType": "P", "orderValue": 1 + }, + { + "refObjectId": "04B05244-7665-40E6-9A98-BDB20746A886", + "refObjectType": "P", + "orderValue": 2 + }, + { + "refObjectId": "153541F6-C971-4324-B97C-BEF689627B24", + "refObjectType": "P", + "orderValue": 3 + }, + { + "refObjectId": "C9A36E0B-ECA6-4D3C-AEE5-691F607359F6", + "refObjectType": "P", + "orderValue": 4 } ], "diagramRefs": [], - "peerOrder": 4 + "peerOrder": 5 + }, + { + "id": "33C5A65F-6DAF-4CE2-9E03-E170AA482B8F", + "defKey": "cst", + "defName": "收/销/运", + "classifyType": "MANUAL", + "manualClassify": "[\"P\"]", + "bindSchema": 0, + "children": null, + "entityRefs": [ + { + "refObjectId": "1A2D551C-214D-469D-B0C5-917C29D725B2", + "refObjectType": "P", + "orderValue": 1 + }, + { + "refObjectId": "DECB0762-9BE3-429A-81F7-891B7C960B04", + "refObjectType": "P", + "orderValue": 2 + }, + { + "refObjectId": "DF643AC9-1A78-408B-9F20-9C659BC475FA", + "refObjectType": "P", + "orderValue": 3 + }, + { + "refObjectId": "718C57B0-4799-48E1-8651-57527A3BFF8B", + "refObjectType": "P", + "orderValue": 4 + }, + { + "refObjectId": "F13139EC-3554-4C1E-8C09-1A6C238C539A", + "refObjectType": "P", + "orderValue": 5 + }, + { + "refObjectId": "38B910DC-4D79-448E-9EA4-CED1E92B03DE", + "refObjectType": "P", + "orderValue": 6 + }, + { + "refObjectId": "F573B178-BE6E-48AB-8AF0-6121E7320EB9", + "refObjectType": "P", + "orderValue": 7 + } + ], + "diagramRefs": [], + "peerOrder": 6 } ], "flat": { @@ -3350,44 +3436,84 @@ "orderValue": 26 }, { - "refObjectId": "628E0908-F153-49E6-8B63-CC856654025F", + "refObjectId": "153541F6-C971-4324-B97C-BEF689627B24", "refObjectType": "P", "orderValue": 27 }, { - "refObjectId": "153541F6-C971-4324-B97C-BEF689627B24", + "refObjectId": "C9A36E0B-ECA6-4D3C-AEE5-691F607359F6", "refObjectType": "P", "orderValue": 28 }, { - "refObjectId": "C9A36E0B-ECA6-4D3C-AEE5-691F607359F6", + "refObjectId": "3B83C23F-D49C-4D67-830C-882D91A57927", "refObjectType": "P", "orderValue": 29 }, { - "refObjectId": "3B83C23F-D49C-4D67-830C-882D91A57927", + "refObjectId": "EDDB991D-570B-493F-AF67-97787AC9BAFC", "refObjectType": "P", "orderValue": 30 }, { - "refObjectId": "EDDB991D-570B-493F-AF67-97787AC9BAFC", + "refObjectId": "48C64C11-5A89-4DDD-95A6-3EBF40F399FB", "refObjectType": "P", "orderValue": 31 }, { - "refObjectId": "48C64C11-5A89-4DDD-95A6-3EBF40F399FB", + "refObjectId": "4476CB18-4B15-486E-A0AD-DA49AB267305", "refObjectType": "P", "orderValue": 32 }, { - "refObjectId": "4476CB18-4B15-486E-A0AD-DA49AB267305", + "refObjectId": "31EE5227-5597-42B8-8D7A-B558F708C076", "refObjectType": "P", "orderValue": 33 }, { - "refObjectId": "31EE5227-5597-42B8-8D7A-B558F708C076", + "refObjectId": "0B223F50-E8AF-40F4-8444-1B22D1171407", "refObjectType": "P", "orderValue": 34 + }, + { + "refObjectId": "8597F6A3-0AB9-4885-BC3A-72C3ACC4B756", + "refObjectType": "P", + "orderValue": 35 + }, + { + "refObjectId": "1A2D551C-214D-469D-B0C5-917C29D725B2", + "refObjectType": "P", + "orderValue": 36 + }, + { + "refObjectId": "DECB0762-9BE3-429A-81F7-891B7C960B04", + "refObjectType": "P", + "orderValue": 37 + }, + { + "refObjectId": "718C57B0-4799-48E1-8651-57527A3BFF8B", + "refObjectType": "P", + "orderValue": 38 + }, + { + "refObjectId": "F13139EC-3554-4C1E-8C09-1A6C238C539A", + "refObjectType": "P", + "orderValue": 39 + }, + { + "refObjectId": "38B910DC-4D79-448E-9EA4-CED1E92B03DE", + "refObjectType": "P", + "orderValue": 40 + }, + { + "refObjectId": "F573B178-BE6E-48AB-8AF0-6121E7320EB9", + "refObjectType": "P", + "orderValue": 41 + }, + { + "refObjectId": "DF643AC9-1A78-408B-9F20-9C659BC475FA", + "refObjectType": "P", + "orderValue": 42 } ], "diagramRefs": [] @@ -12667,7 +12793,7 @@ "baseDataType": "VARCHAR", "bizDomainType": "", "dbDataType": "VARCHAR", - "dataLen": "", + "dataLen": 16, "numScale": "", "primaryKey": 0, "notNull": 1, @@ -13054,6 +13180,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": "DB75E8FF-191C-4B6E-A8DA-124AEC238F12", "defKey": "goods_name", @@ -13238,6 +13410,98 @@ "origin": "UI", "defKey": "sort" }, + { + "id": "A6AF8486-5774-49B9-B501-F97503BE0842", + "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": "88E165E5-FC8F-4E07-87FD-A0E68628DFC4", + "defKey": "canuse", + "defName": "是否可用", + "intro": "0-->否、1-->是", + "baseDataType": "TINYINT", + "bizDomainType": "", + "dbDataType": "TINYINT", + "dataLen": 1, + "numScale": "", + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "1", + "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": "2FCC61E1-1433-4491-AC59-E09D63B762B3", "defKey": "memo", @@ -13288,7 +13552,7 @@ "id": "8AF726FB-0918-4FED-A0D0-604C48B01ADD", "defKey": "creator_id", "defName": "创建人 Id", - "intro": " sys_user.id", + "intro": "sys_user.id", "baseDataType": "BIGINT", "bizDomainType": "", "dbDataType": "BIGINT", @@ -13949,10 +14213,148 @@ "updatedUserId": null, "createdUserId": null }, + { + "id": "AB843F40-8EA2-466B-9C7B-CF8D350AF1E1", + "defKey": "total_quantity", + "defName": "总量", + "intro": null, + "baseDataType": "INT", + "bizDomainType": "", + "dbDataType": "INT", + "dataLen": "", + "numScale": "", + "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": "5F814C7B-2B16-432F-9EFF-E308C4106CE3", + "defKey": "used_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": "2E84CC1D-B5A8-490D-9E4F-E44221AFFF41", + "defKey": "remaining_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": "6FA8EBBB-DCA3-49A8-99B8-E3ACC9A22312", "defKey": "unit", - "defName": "单位", + "defName": "计量单位", "intro": "字典代码:unit", "baseDataType": "VARCHAR", "bizDomainType": "", @@ -13996,50 +14398,50 @@ "origin": "UI" }, { - "id": "5F814C7B-2B16-432F-9EFF-E308C4106CE3", - "defKey": "used", - "defName": "已用", - "intro": "", - "baseDataType": "DECIMAL", + "id": "94991B9E-1303-406C-BD42-EDBDBE2454C9", + "defKey": "location", + "defName": "位置", + "intro": null, + "baseDataType": "VARCHAR", "bizDomainType": "", - "dbDataType": "DECIMAL", - "dataLen": 16, - "numScale": 6, + "dbDataType": "VARCHAR", + "dataLen": 128, + "numScale": "", "primaryKey": 0, "notNull": 1, "autoIncrement": 0, - "defaultValue": "0.0", - "stndDictId": "", - "stndFieldId": "", - "stndDictKey": "", - "stndFieldKey": "", - "stndComplianceLevel": "", - "stndComplianceType": "", + "defaultValue": "", + "stndDictId": null, + "stndFieldId": null, + "stndDictKey": null, + "stndFieldKey": null, + "stndComplianceLevel": null, + "stndComplianceType": null, "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" + "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": "A1989973-59EA-4336-B75D-4A09B84600A5", @@ -14091,7 +14493,7 @@ "id": "F260333D-1C1F-4FB5-A6A8-6A724FE3CAB3", "defKey": "modifier_id", "defName": "修改人 Id", - "intro": " sys_user.id", + "intro": "sys_user.id", "baseDataType": "BIGINT", "bizDomainType": "", "dbDataType": "BIGINT", @@ -14288,8 +14690,8 @@ { "id": "04B05244-7665-40E6-9A98-BDB20746A886", "type": "P", - "defKey": "wh_stock_order", - "defName": "出入库单(单物料)", + "defKey": "wh_io_order", + "defName": "出入库单", "intro": null, "schemaName": null, "props": null, @@ -14363,65 +14765,19 @@ }, { "id": "DE69F46B-C278-4A16-9CA5-F1D37FED3D55", - "defKey": "batch_no", - "defName": "出入库编号", + "defKey": "sn", + "defName": "编号", "intro": null, "orderValue": null, - "baseDataType": "CHAR", + "baseDataType": "VARCHAR", "bizDomainType": "", - "dbDataType": "CHAR", - "dataLen": 64, - "numScale": null, - "primaryKey": null, - "notNull": null, - "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": "04A06DAD-E2A3-4238-912C-A6BB87BEF97B", - "defKey": "order_id", - "defName": "上游业务订单Id(如销售订单、采购订单等)", - "intro": null, - "orderValue": null, - "baseDataType": "BIGINT", - "bizDomainType": "", - "dbDataType": "BIGINT", - "dataLen": null, + "dbDataType": "VARCHAR", + "dataLen": 128, "numScale": null, "primaryKey": null, "notNull": 1, "autoIncrement": null, - "defaultValue": null, + "defaultValue": "", "stndDictId": null, "stndDictKey": null, "stndFieldId": null, @@ -14454,22 +14810,83 @@ "createdUserId": null }, { - "id": "8A4066F4-9503-46B9-9656-CC88BCC04D7B", - "defKey": "order_type", - "defName": "单据类型(字典):IN=入库单、OUT=出库单", - "intro": null, - "orderValue": null, + "id": "D91A56A4-BD7F-44D2-A93B-6380A9D1A684", + "defKey": "io_type", + "defName": "出入库类型", + "intro": "", "baseDataType": "CHAR", "bizDomainType": "", "dbDataType": "CHAR", + "dataLen": 3, + "numScale": "", + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "io_type", + "stndFieldId": "", + "stndDictKey": "io_type", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "Manual", + "dictItems": [ + { + "itemKey": "Chu", + "itemName": "出库", + "parentKey": "", + "intro": "", + "id": "FEA2756B-70FE-4070-B0EB-DD20EA859F64" + }, + { + "itemKey": "Ru", + "itemName": "入库", + "parentKey": "", + "intro": "", + "id": "561AD9C9-17D5-4A1A-A653-A145400CA866" + } + ], + "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": "8A4066F4-9503-46B9-9656-CC88BCC04D7B", + "defKey": "order_category", + "defName": "订单类型", + "intro": null, + "orderValue": null, + "baseDataType": "VARCHAR", + "bizDomainType": "", + "dbDataType": "VARCHAR", "dataLen": 16, "numScale": null, "primaryKey": null, "notNull": 1, "autoIncrement": null, "defaultValue": null, - "stndDictId": null, - "stndDictKey": null, + "stndDictId": "order_category", + "stndDictKey": "order_category", "stndFieldId": null, "stndFieldKey": null, "mark": null, @@ -14497,12 +14914,29 @@ "stndComplianceType": null, "stndComplianceLevel": null, "updatedUserId": null, - "createdUserId": null + "createdUserId": null, + "dictFrom": "Manual", + "dictItems": [ + { + "itemKey": "XiaoShou", + "itemName": "销售", + "parentKey": "", + "intro": "", + "id": "A7B0FB0C-CDB4-4AC3-BC1E-B178A82AA5B4" + }, + { + "itemKey": "CaiGou", + "itemName": "采购", + "parentKey": "", + "intro": "", + "id": "7938B08C-655D-46ED-B0C0-9F2BC79D66DD" + } + ] }, { - "id": "5D2CA9C5-0D85-452C-80D8-03056008D712", - "defKey": "warehouse_id", - "defName": "仓库 Id; wh_warehouse.id", + "id": "04A06DAD-E2A3-4238-912C-A6BB87BEF97B", + "defKey": "order_id", + "defName": "业务订单 Id", "intro": null, "orderValue": null, "baseDataType": "BIGINT", @@ -14510,7 +14944,7 @@ "dbDataType": "BIGINT", "dataLen": null, "numScale": null, - "primaryKey": null, + "primaryKey": 1, "notNull": 1, "autoIncrement": null, "defaultValue": null, @@ -14547,19 +14981,19 @@ }, { "id": "7723E97E-7F1F-432D-A7DA-4706BB0F16CD", - "defKey": "order_no", - "defName": "关联业务单号(可选,用于展示用单号)", - "intro": null, + "defKey": "order_sn", + "defName": "单号", + "intro": "", "orderValue": null, - "baseDataType": "CHAR", + "baseDataType": "VARCHAR", "bizDomainType": "", - "dbDataType": "CHAR", - "dataLen": 32, + "dbDataType": "VARCHAR", + "dataLen": 128, "numScale": null, "primaryKey": null, - "notNull": null, + "notNull": 1, "autoIncrement": null, - "defaultValue": "NULL", + "defaultValue": "", "stndDictId": null, "stndDictKey": null, "stndFieldId": null, @@ -14592,10 +15026,10 @@ "createdUserId": null }, { - "id": "1C4D921C-F8BF-4E27-A9BE-ABCF2033D1EE", - "defKey": "customer_id", - "defName": "客户 Id; tb_customer.id,仅出库单使用", - "intro": null, + "id": "5D2CA9C5-0D85-452C-80D8-03056008D712", + "defKey": "warehouse_id", + "defName": "仓库 Id", + "intro": "wh_warehouse.id", "orderValue": null, "baseDataType": "BIGINT", "bizDomainType": "", @@ -14603,52 +15037,6 @@ "dataLen": null, "numScale": null, "primaryKey": null, - "notNull": null, - "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": "73E9B263-6FC2-4CAF-9E5D-40E78CBBF3D2", - "defKey": "operate_time", - "defName": "出入库时间(入库=到货/入库时间,出库=发货时间)", - "intro": null, - "orderValue": null, - "baseDataType": "DATETIME", - "bizDomainType": "", - "dbDataType": "DATETIME", - "dataLen": null, - "numScale": null, - "primaryKey": null, "notNull": 1, "autoIncrement": null, "defaultValue": null, @@ -14685,19 +15073,19 @@ }, { "id": "385889C0-E756-48F3-8BA6-E12282F2AB12", - "defKey": "locator", - "defName": "仓内存放位置(货架/库位等,入库使用为主)", + "defKey": "location", + "defName": "存放位置", "intro": null, "orderValue": null, - "baseDataType": "CHAR", + "baseDataType": "VARCHAR", "bizDomainType": "", - "dbDataType": "CHAR", - "dataLen": 64, + "dbDataType": "VARCHAR", + "dataLen": 128, "numScale": null, "primaryKey": null, - "notNull": null, + "notNull": 1, "autoIncrement": null, - "defaultValue": "NULL", + "defaultValue": "''", "stndDictId": null, "stndDictKey": null, "stndFieldId": null, @@ -14730,50 +15118,234 @@ "createdUserId": null }, { - "id": "0763C5A7-A435-4C2B-B423-464359C40FBB", - "defKey": "material_id", - "defName": "物料 Id; tb_material.id", - "intro": null, - "orderValue": null, + "id": "30B361E4-69DC-47B8-A054-993334D1F1D9", + "defKey": "goods_category_id", + "defName": "产品分类 Id", + "intro": "", "baseDataType": "BIGINT", "bizDomainType": "", "dbDataType": "BIGINT", - "dataLen": null, - "numScale": null, - "primaryKey": null, + "dataLen": "", + "numScale": "", + "primaryKey": 0, "notNull": 1, - "autoIncrement": null, - "defaultValue": null, - "stndDictId": null, - "stndDictKey": null, - "stndFieldId": null, - "stndFieldKey": null, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "", + "stndFieldId": "", + "stndDictKey": "", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "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": null, - "stndComplianceType": null, - "stndComplianceLevel": null, - "updatedUserId": null, - "createdUserId": null + "attr1": "", + "attr2": "", + "attr3": "", + "attr4": "", + "attr5": "", + "attr6": "", + "attr7": "", + "attr8": "", + "attr9": "", + "attr10": "", + "attr11": "", + "attr12": "", + "attr13": "", + "attr14": "", + "attr15": "", + "attr16": "", + "attr17": "", + "attr18": "", + "attr19": "", + "attr20": "", + "origin": "UI" + }, + { + "id": "06A0B175-DCEC-407C-B50A-90639AF948C4", + "defKey": "goods_category_name", + "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": "PASTE" + }, + { + "id": "044C1910-CB37-4BF5-B1B1-096C5CCBA596", + "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": "138A2CB9-CA3B-40DE-9E83-CDACE457102A", + "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": "PASTE" + }, + { + "id": "F1266F3B-0E9A-4D20-8E10-9D3A862582EE", + "defKey": "good_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": "PASTE" }, { "id": "198AC965-43F6-4DCA-B1F9-8D613FA2C1C9", @@ -14781,15 +15353,15 @@ "defName": "数量", "intro": null, "orderValue": null, - "baseDataType": "DOUBLE", + "baseDataType": "INT", "bizDomainType": "", - "dbDataType": "DOUBLE", - "dataLen": 16, - "numScale": 3, + "dbDataType": "INT", + "dataLen": "", + "numScale": "", "primaryKey": null, "notNull": 1, "autoIncrement": null, - "defaultValue": "0", + "defaultValue": "", "stndDictId": null, "stndDictKey": null, "stndFieldId": null, @@ -14822,20 +15394,66 @@ "createdUserId": null }, { - "id": "5B69081B-F702-4796-B467-63C52062EE58", - "defKey": "remark", - "defName": "备注信息", + "id": "60E619A9-F46E-4FA2-95C8-C5D008309685", + "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": "73E9B263-6FC2-4CAF-9E5D-40E78CBBF3D2", + "defKey": "io_time", + "defName": "出入库时间", "intro": null, "orderValue": null, - "baseDataType": "CHAR", + "baseDataType": "DATETIME", "bizDomainType": "", - "dbDataType": "CHAR", - "dataLen": 255, + "dbDataType": "DATETIME", + "dataLen": null, "numScale": null, "primaryKey": null, - "notNull": null, + "notNull": 1, "autoIncrement": null, - "defaultValue": "NULL", + "defaultValue": null, "stndDictId": null, "stndDictKey": null, "stndFieldId": null, @@ -14870,8 +15488,8 @@ { "id": "F42DE23F-C81C-4A98-8C16-E591F542559D", "defKey": "responsible_id", - "defName": "经办人/责任人 Id; sys_user.id", - "intro": null, + "defName": "责任人 Id", + "intro": "sys_user.id", "orderValue": null, "baseDataType": "BIGINT", "bizDomainType": "", @@ -14879,9 +15497,9 @@ "dataLen": null, "numScale": null, "primaryKey": null, - "notNull": null, + "notNull": 1, "autoIncrement": null, - "defaultValue": "NULL", + "defaultValue": "", "stndDictId": null, "stndDictKey": null, "stndFieldId": null, @@ -14914,234 +15532,280 @@ "createdUserId": null }, { - "id": "EE62F066-E05D-4592-991B-3C6FC87EA9D1", + "id": "D77EEF3E-60D0-449F-8E94-619785DD8F1C", + "defKey": "memo", + "defName": "备注", + "intro": "", + "baseDataType": "VARCHAR", + "bizDomainType": "", + "dbDataType": "VARCHAR", + "dataLen": 512, + "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": "1445C463-8DF1-46FD-91E6-83FE4EE2A228", + "origin": "UI" + }, + { + "id": "EF7583D8-A19D-4FB5-8052-80A886C707D4", "defKey": "creator_id", - "defName": "创建人 Id; sys_user.id", - "intro": null, - "orderValue": null, + "defName": "创建人 Id", + "intro": " sys_user.id", "baseDataType": "BIGINT", "bizDomainType": "", "dbDataType": "BIGINT", - "dataLen": null, - "numScale": null, - "primaryKey": null, + "dataLen": "", + "numScale": "", + "primaryKey": 0, "notNull": 1, - "autoIncrement": null, - "defaultValue": null, - "stndDictId": null, - "stndDictKey": null, - "stndFieldId": null, - "stndFieldKey": null, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "", + "stndFieldId": "", + "stndDictKey": "", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "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": null, - "stndComplianceType": null, - "stndComplianceLevel": null, - "updatedUserId": null, - "createdUserId": 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": "BFBAF900-AE05-4D20-8358-FCF62BC24A8B", + "id": "3E76AB4F-4F37-4CB0-8C03-942BD5A08718", "defKey": "modifier_id", - "defName": "修改人 Id; sys_user.id", - "intro": null, - "orderValue": null, + "defName": "修改人 Id", + "intro": " sys_user.id", "baseDataType": "BIGINT", "bizDomainType": "", "dbDataType": "BIGINT", - "dataLen": null, - "numScale": null, - "primaryKey": null, + "dataLen": "", + "numScale": "", + "primaryKey": 0, "notNull": 1, - "autoIncrement": null, - "defaultValue": null, - "stndDictId": null, - "stndDictKey": null, - "stndFieldId": null, - "stndFieldKey": null, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "", + "stndFieldId": "", + "stndDictKey": "", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "", + "dictItems": [], + "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": null, - "stndComplianceType": null, - "stndComplianceLevel": null, - "updatedUserId": null, - "createdUserId": 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": "AACA73C0-093D-45B3-9C4C-7BEDD1BB794C", + "id": "45BB4EE6-53AA-4EB6-88C6-8D6F56F86DD2", "defKey": "create_time", "defName": "创建时间", - "intro": null, - "orderValue": null, + "intro": "", "baseDataType": "DATETIME", "bizDomainType": "", "dbDataType": "DATETIME", - "dataLen": null, - "numScale": null, - "primaryKey": null, + "dataLen": "", + "numScale": "", + "primaryKey": 0, "notNull": 1, - "autoIncrement": null, - "defaultValue": null, - "stndDictId": null, - "stndDictKey": null, - "stndFieldId": null, - "stndFieldKey": null, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "", + "stndFieldId": "", + "stndDictKey": "", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "", + "dictItems": [], + "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": null, - "stndComplianceType": null, - "stndComplianceLevel": null, - "updatedUserId": null, - "createdUserId": 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": "2755AC44-4A45-4BCF-9C6A-35F2BC74844A", + "id": "26C9C1D8-B921-49B4-8E2C-582B3988DAE8", "defKey": "modify_time", "defName": "修改时间", - "intro": null, - "orderValue": null, + "intro": "", "baseDataType": "DATETIME", "bizDomainType": "", "dbDataType": "DATETIME", - "dataLen": null, - "numScale": null, - "primaryKey": null, + "dataLen": "", + "numScale": "", + "primaryKey": 0, "notNull": 1, - "autoIncrement": null, - "defaultValue": null, - "stndDictId": null, - "stndDictKey": null, - "stndFieldId": null, - "stndFieldKey": null, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "", + "stndFieldId": "", + "stndDictKey": "", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "", + "dictItems": [], + "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": null, - "stndComplianceType": null, - "stndComplianceLevel": null, - "updatedUserId": null, - "createdUserId": 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": "DA85D4AF-C3A8-4EF7-87D4-471AA511B764", + "id": "3A8C7853-53D7-4C83-80B2-61F10D7F7251", "defKey": "deleted", - "defName": "是否删除; 0-->未删除、1-->已删除", - "intro": null, - "orderValue": null, + "defName": "是否删除", + "intro": " 0-->未删除、1-->已删除", "baseDataType": "TINYINT", "bizDomainType": "", "dbDataType": "TINYINT", "dataLen": 1, - "numScale": null, - "primaryKey": null, + "numScale": "", + "primaryKey": 0, "notNull": 1, - "autoIncrement": null, + "autoIncrement": 0, "defaultValue": "0", - "stndDictId": null, - "stndDictKey": null, - "stndFieldId": null, - "stndFieldKey": null, + "stndDictId": "", + "stndFieldId": "", + "stndDictKey": "", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "", + "dictItems": [], + "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": null, - "stndComplianceType": null, - "stndComplianceLevel": null, - "updatedUserId": null, - "createdUserId": 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, @@ -15157,653 +15821,11 @@ } ] }, - { - "id": "628E0908-F153-49E6-8B63-CC856654025F", - "type": "P", - "defKey": "wh_stock_alert", - "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": "EB95CFC7-2A0D-4761-BC08-FD5ED0607686", - "defKey": "id", - "defName": "主键", - "intro": null, - "orderValue": null, - "baseDataType": "BIGINT", - "bizDomainType": "", - "dbDataType": "BIGINT", - "dataLen": null, - "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": "DAA08A29-21A9-4736-98F4-811FADC3766C", - "defKey": "warehouse_id", - "defName": "仓库 Id", - "intro": null, - "orderValue": null, - "baseDataType": "BIGINT", - "bizDomainType": "", - "dbDataType": "BIGINT", - "dataLen": null, - "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": "B3B4A916-2478-46FA-B83A-DC3A5616A0DE", - "defKey": "material_id", - "defName": "物料 Id", - "intro": null, - "orderValue": null, - "baseDataType": "BIGINT", - "bizDomainType": "", - "dbDataType": "BIGINT", - "dataLen": null, - "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": "90385700-69DE-4D5A-9774-244862725E13", - "defKey": "alert_type", - "defName": "预警类型(字典):LOW=低库存预警、HIGH=高库存预警", - "intro": null, - "orderValue": null, - "baseDataType": "CHAR", - "bizDomainType": "", - "dbDataType": "CHAR", - "dataLen": 16, - "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": "A10DE84E-0207-4011-94F8-840F5DC0F435", - "defKey": "current_quantity", - "defName": "触发时库存", - "intro": null, - "orderValue": null, - "baseDataType": "DOUBLE", - "bizDomainType": "", - "dbDataType": "DOUBLE", - "dataLen": 16, - "numScale": 3, - "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": "9FF6293A-16D9-48B1-82B5-72B2EC98F564", - "defKey": "status", - "defName": "处理状态(字典):UNRESOLVED=未处理、RESOLVED=已处理", - "intro": null, - "orderValue": null, - "baseDataType": "CHAR", - "bizDomainType": "", - "dbDataType": "CHAR", - "dataLen": 16, - "numScale": null, - "primaryKey": null, - "notNull": 1, - "autoIncrement": null, - "defaultValue": "UNRESOLVED", - "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": "02377765-DC5F-4FC3-A517-0DD672837020", - "defKey": "suggestion", - "defName": "处理建议", - "intro": null, - "orderValue": null, - "baseDataType": "CHAR", - "bizDomainType": "", - "dbDataType": "CHAR", - "dataLen": 255, - "numScale": null, - "primaryKey": null, - "notNull": null, - "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": "CAAA2DD9-D8F7-4662-A363-ADFED1B477D8", - "defKey": "alert_time", - "defName": "预警时间", - "intro": null, - "orderValue": null, - "baseDataType": "DATETIME", - "bizDomainType": "", - "dbDataType": "DATETIME", - "dataLen": null, - "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": "DB6D9FA7-9117-4C3A-A7C2-E0868BB1D009", - "defKey": "creator_id", - "defName": "创建人 Id; sys_user.id", - "intro": null, - "orderValue": null, - "baseDataType": "BIGINT", - "bizDomainType": "", - "dbDataType": "BIGINT", - "dataLen": null, - "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": "17E32D21-5ABF-4885-8E85-6D22FFD5C041", - "defKey": "modifier_id", - "defName": "修改人 Id; sys_user.id", - "intro": null, - "orderValue": null, - "baseDataType": "BIGINT", - "bizDomainType": "", - "dbDataType": "BIGINT", - "dataLen": null, - "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": "CEA2921A-43F5-4D73-8CBC-4C64326F1CB7", - "defKey": "create_time", - "defName": "创建时间", - "intro": null, - "orderValue": null, - "baseDataType": "DATETIME", - "bizDomainType": "", - "dbDataType": "DATETIME", - "dataLen": null, - "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": "24D49A7A-8210-4FCC-8D9E-F1DD022011F5", - "defKey": "modify_time", - "defName": "修改时间", - "intro": null, - "orderValue": null, - "baseDataType": "DATETIME", - "bizDomainType": "", - "dbDataType": "DATETIME", - "dataLen": null, - "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": "95C01E18-939C-4B56-BE63-33CA0358334B", - "defKey": "deleted", - "defName": "是否删除; 0-->未删除、1-->已删除", - "intro": null, - "orderValue": null, - "baseDataType": "TINYINT", - "bizDomainType": "", - "dbDataType": "TINYINT", - "dataLen": 1, - "numScale": null, - "primaryKey": null, - "notNull": 1, - "autoIncrement": null, - "defaultValue": "0", - "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 - } - ], - "correlations": null, - "indexes": [ - { - "id": "8DCA45A9-DEBE-4F3B-AE74-B43249671669", - "type": "PRIMARY KEY", - "defKey": null, - "defName": null, - "intro": null, - "orderValue": null, - "fields": [] - } - ] - }, { "id": "153541F6-C971-4324-B97C-BEF689627B24", "type": "P", - "defKey": "wh_stocktaking_task", - "defName": "库存盘点任务", + "defKey": "wh_warehouse_check_plan", + "defName": "库存盘点计划", "intro": null, "schemaName": null, "props": null, @@ -15832,7 +15854,7 @@ { "id": "77F8F702-A08D-4C91-8859-2EA8A16FABAF", "defKey": "id", - "defName": "主键", + "defName": "Id", "intro": null, "orderValue": null, "baseDataType": "BIGINT", @@ -15840,7 +15862,7 @@ "dbDataType": "BIGINT", "dataLen": null, "numScale": null, - "primaryKey": null, + "primaryKey": 1, "notNull": 1, "autoIncrement": null, "defaultValue": null, @@ -15877,21 +15899,21 @@ }, { "id": "47D7EC42-0B7E-4224-AAB8-C26A39AC842B", - "defKey": "task_no", - "defName": "盘点编号", + "defKey": "sn", + "defName": "编号", "intro": null, "orderValue": null, - "baseDataType": "CHAR", + "baseDataType": "VARCHAR", "bizDomainType": "", - "dbDataType": "CHAR", - "dataLen": 32, + "dbDataType": "VARCHAR", + "dataLen": 128, "numScale": null, "primaryKey": null, "notNull": 1, "autoIncrement": null, "defaultValue": null, - "stndDictId": null, - "stndDictKey": null, + "stndDictId": "", + "stndDictKey": "", "stndFieldId": null, "stndFieldKey": null, "mark": null, @@ -15919,7 +15941,83 @@ "stndComplianceType": null, "stndComplianceLevel": null, "updatedUserId": null, - "createdUserId": null + "createdUserId": null, + "dictFrom": "" + }, + { + "id": "C831DF36-FB66-4CF3-851B-D4E81463C114", + "defKey": "plan_status", + "defName": "状态", + "intro": "", + "baseDataType": "VARCHAR", + "bizDomainType": "", + "dbDataType": "VARCHAR", + "dataLen": 32, + "numScale": "", + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "plan_status", + "stndFieldId": "", + "stndDictKey": "plan_status", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "Manual", + "dictItems": [ + { + "itemKey": "DaiZhiXing", + "itemName": "待执行", + "parentKey": "", + "intro": "", + "id": "781E9A57-8FB7-4D44-9CA0-1DB836BCC2FD" + }, + { + "itemKey": "ZhiXingZhong", + "itemName": "执行中", + "parentKey": "", + "intro": "", + "id": "DB8E76CA-21CE-4B1E-95D4-A57534E40E92" + }, + { + "itemKey": "WanCheng", + "itemName": "完成", + "parentKey": "", + "intro": "", + "id": "C68C27DC-9927-4F55-B71A-8DED55F6743C" + }, + { + "itemKey": "QuXiao", + "itemName": "取消", + "parentKey": "", + "intro": "", + "id": "C8D688B5-3D4D-477F-A453-C4CD8D78F470" + } + ], + "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": "DA766A3D-1668-42C6-9CFB-1F9D00103263", @@ -15967,102 +16065,10 @@ "updatedUserId": null, "createdUserId": null }, - { - "id": "589F66B6-E3DE-40C4-9AAE-4ADA6AD7A3ED", - "defKey": "checker_id", - "defName": "盘点人 Id; sys_user.id", - "intro": null, - "orderValue": null, - "baseDataType": "BIGINT", - "bizDomainType": "", - "dbDataType": "BIGINT", - "dataLen": null, - "numScale": null, - "primaryKey": null, - "notNull": null, - "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": "690F0A5C-E8D9-40CC-8927-A01CA6B757C0", - "defKey": "reviewer_id", - "defName": "复核人 Id; sys_user.id", - "intro": null, - "orderValue": null, - "baseDataType": "BIGINT", - "bizDomainType": "", - "dbDataType": "BIGINT", - "dataLen": null, - "numScale": null, - "primaryKey": null, - "notNull": null, - "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": "2AEF93A4-2704-41E4-BDC6-768DBC192EE9", - "defKey": "task_time", - "defName": "盘点时间", + "defKey": "plan_complete_time", + "defName": "计划完成时间", "intro": null, "orderValue": null, "baseDataType": "DATETIME", @@ -16106,112 +16112,66 @@ "createdUserId": null }, { - "id": "C069360B-FE04-4648-8AE1-BDE5E0030554", - "defKey": "item_count", - "defName": "盘点项数", - "intro": null, - "orderValue": null, - "baseDataType": "MEDIUMINT", + "id": "D1DE9F74-74BF-441B-9040-AC9363F9FDB9", + "defKey": "complete_time", + "defName": "实际完成时间", + "intro": "", + "baseDataType": "DATETIME", "bizDomainType": "", - "dbDataType": "MEDIUMINT", - "dataLen": null, - "numScale": null, - "primaryKey": null, - "notNull": 1, - "autoIncrement": null, - "defaultValue": "0", - "stndDictId": null, - "stndDictKey": null, - "stndFieldId": null, - "stndFieldKey": null, + "dbDataType": "DATETIME", + "dataLen": "", + "numScale": "", + "primaryKey": 0, + "notNull": 0, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "", + "stndFieldId": "", + "stndDictKey": "", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "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": null, - "stndComplianceType": null, - "stndComplianceLevel": null, - "updatedUserId": null, - "createdUserId": null - }, - { - "id": "439AC003-8182-4A50-98F0-95A31B88905B", - "defKey": "abnormal_count", - "defName": "差异项数", - "intro": null, - "orderValue": null, - "baseDataType": "MEDIUMINT", - "bizDomainType": "", - "dbDataType": "MEDIUMINT", - "dataLen": null, - "numScale": null, - "primaryKey": null, - "notNull": 1, - "autoIncrement": null, - "defaultValue": "0", - "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 + "attr1": "", + "attr2": "", + "attr3": "", + "attr4": "", + "attr5": "", + "attr6": "", + "attr7": "", + "attr8": "", + "attr9": "", + "attr10": "", + "attr11": "", + "attr12": "", + "attr13": "", + "attr14": "", + "attr15": "", + "attr16": "", + "attr17": "", + "attr18": "", + "attr19": "", + "attr20": "", + "origin": "UI" }, { "id": "33580E5A-0E39-469F-A0DC-A18904B89557", - "defKey": "remark", + "defKey": "memo", "defName": "备注", "intro": null, "orderValue": null, - "baseDataType": "CHAR", + "baseDataType": "VARCHAR", "bizDomainType": "", - "dbDataType": "CHAR", - "dataLen": 255, + "dbDataType": "VARCHAR", + "dataLen": 512, "numScale": null, "primaryKey": null, - "notNull": null, + "notNull": 1, "autoIncrement": null, - "defaultValue": "NULL", + "defaultValue": "''", "stndDictId": null, "stndDictKey": null, "stndFieldId": null, @@ -16234,244 +16194,245 @@ "attr15": null, "attr16": null, "attr17": null, - "attr18": null, + "attr18": "PDManer", "attr19": null, "attr20": null, "origin": null, "stndComplianceType": null, "stndComplianceLevel": null, "updatedUserId": null, - "createdUserId": null + "createdUserId": null, + "dictItems": [] }, { - "id": "08134062-F3A9-4E18-8481-990984DF15FC", + "id": "D7804FC1-95F1-450A-8DB0-DA3FC330ACF8", "defKey": "creator_id", - "defName": "创建人 Id; sys_user.id", - "intro": null, - "orderValue": null, + "defName": "创建人 Id", + "intro": " sys_user.id", "baseDataType": "BIGINT", "bizDomainType": "", "dbDataType": "BIGINT", - "dataLen": null, - "numScale": null, - "primaryKey": null, + "dataLen": "", + "numScale": "", + "primaryKey": 0, "notNull": 1, - "autoIncrement": null, - "defaultValue": null, - "stndDictId": null, - "stndDictKey": null, - "stndFieldId": null, - "stndFieldKey": null, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "", + "stndFieldId": "", + "stndDictKey": "", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "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": null, - "stndComplianceType": null, - "stndComplianceLevel": null, - "updatedUserId": null, - "createdUserId": 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": "FF188955-E844-42A5-9099-BE2C7869910F", + "id": "A98E8CEC-565C-47EF-880D-0275DFB81451", "defKey": "modifier_id", - "defName": "修改人 Id; sys_user.id", - "intro": null, - "orderValue": null, + "defName": "修改人 Id", + "intro": " sys_user.id", "baseDataType": "BIGINT", "bizDomainType": "", "dbDataType": "BIGINT", - "dataLen": null, - "numScale": null, - "primaryKey": null, + "dataLen": "", + "numScale": "", + "primaryKey": 0, "notNull": 1, - "autoIncrement": null, - "defaultValue": null, - "stndDictId": null, - "stndDictKey": null, - "stndFieldId": null, - "stndFieldKey": null, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "", + "stndFieldId": "", + "stndDictKey": "", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "", + "dictItems": [], + "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": null, - "stndComplianceType": null, - "stndComplianceLevel": null, - "updatedUserId": null, - "createdUserId": 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": "A67FB8D1-4B15-415B-A1EB-07F00E0471F7", + "id": "0974A666-5A74-48A9-81FE-5B87567103B7", "defKey": "create_time", "defName": "创建时间", - "intro": null, - "orderValue": null, + "intro": "", "baseDataType": "DATETIME", "bizDomainType": "", "dbDataType": "DATETIME", - "dataLen": null, - "numScale": null, - "primaryKey": null, + "dataLen": "", + "numScale": "", + "primaryKey": 0, "notNull": 1, - "autoIncrement": null, - "defaultValue": null, - "stndDictId": null, - "stndDictKey": null, - "stndFieldId": null, - "stndFieldKey": null, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "", + "stndFieldId": "", + "stndDictKey": "", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "", + "dictItems": [], + "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": null, - "stndComplianceType": null, - "stndComplianceLevel": null, - "updatedUserId": null, - "createdUserId": 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": "680E2133-4E5C-4A5F-9FD7-FD57452D4B7E", + "id": "CB978321-039B-488F-8CF7-62D7BCE3DD3F", "defKey": "modify_time", "defName": "修改时间", - "intro": null, - "orderValue": null, + "intro": "", "baseDataType": "DATETIME", "bizDomainType": "", "dbDataType": "DATETIME", - "dataLen": null, - "numScale": null, - "primaryKey": null, + "dataLen": "", + "numScale": "", + "primaryKey": 0, "notNull": 1, - "autoIncrement": null, - "defaultValue": null, - "stndDictId": null, - "stndDictKey": null, - "stndFieldId": null, - "stndFieldKey": null, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "", + "stndFieldId": "", + "stndDictKey": "", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "", + "dictItems": [], + "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": null, - "stndComplianceType": null, - "stndComplianceLevel": null, - "updatedUserId": null, - "createdUserId": 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": "CE09A34D-6E05-47DB-92EE-D21E4F676831", + "id": "8126165A-6867-4137-AB42-F7B9BB0390AD", "defKey": "deleted", - "defName": "是否删除; 0-->未删除、1-->已删除", - "intro": null, - "orderValue": null, + "defName": "是否删除", + "intro": " 0-->未删除、1-->已删除", "baseDataType": "TINYINT", "bizDomainType": "", "dbDataType": "TINYINT", "dataLen": 1, - "numScale": null, - "primaryKey": null, + "numScale": "", + "primaryKey": 0, "notNull": 1, - "autoIncrement": null, + "autoIncrement": 0, "defaultValue": "0", - "stndDictId": null, - "stndDictKey": null, - "stndFieldId": null, - "stndFieldKey": null, + "stndDictId": "", + "stndFieldId": "", + "stndDictKey": "", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "", + "dictItems": [], + "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": null, - "stndComplianceType": null, - "stndComplianceLevel": null, - "updatedUserId": null, - "createdUserId": 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, @@ -16490,7 +16451,7 @@ { "id": "C9A36E0B-ECA6-4D3C-AEE5-691F607359F6", "type": "P", - "defKey": "wh_stocktaking_item", + "defKey": "wh_warehouse_check_detail", "defName": "库存盘点明细", "intro": null, "schemaName": null, @@ -16565,9 +16526,9 @@ }, { "id": "E39ADA63-4F09-4672-B64A-03C02BAD2101", - "defKey": "task_id", - "defName": "盘点任务 Id; wh_stocktaking_task.id", - "intro": null, + "defKey": "check_plan_id", + "defName": "盘点计划 Id", + "intro": "wh_warehouse_check_plan.id", "orderValue": null, "baseDataType": "BIGINT", "bizDomainType": "", @@ -16610,50 +16571,234 @@ "createdUserId": null }, { - "id": "1F44419C-0431-484A-BE07-AFE8AB6B594F", - "defKey": "material_id", - "defName": "物料 Id", - "intro": null, - "orderValue": null, + "id": "EE7E293A-6EC1-4D04-A76E-F52737A07CB6", + "defKey": "goods_category_id", + "defName": "产品分类 Id", + "intro": "", "baseDataType": "BIGINT", "bizDomainType": "", "dbDataType": "BIGINT", - "dataLen": null, - "numScale": null, - "primaryKey": null, + "dataLen": "", + "numScale": "", + "primaryKey": 0, "notNull": 1, - "autoIncrement": null, - "defaultValue": null, - "stndDictId": null, - "stndDictKey": null, - "stndFieldId": null, - "stndFieldKey": null, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "", + "stndFieldId": "", + "stndDictKey": "", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "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": null, - "stndComplianceType": null, - "stndComplianceLevel": null, - "updatedUserId": null, - "createdUserId": null + "attr1": "", + "attr2": "", + "attr3": "", + "attr4": "", + "attr5": "", + "attr6": "", + "attr7": "", + "attr8": "", + "attr9": "", + "attr10": "", + "attr11": "", + "attr12": "", + "attr13": "", + "attr14": "", + "attr15": "", + "attr16": "", + "attr17": "", + "attr18": "", + "attr19": "", + "attr20": "", + "origin": "PASTE" + }, + { + "id": "4BC7A3ED-175D-4669-9F3C-36E61A089679", + "defKey": "goods_category_name", + "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": "PASTE" + }, + { + "id": "2F701052-F9DB-49BA-8176-E182F489B4FD", + "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": "PASTE" + }, + { + "id": "17F4EF19-C77C-4752-A8D7-E87FCAAE3645", + "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": "PASTE" + }, + { + "id": "5580F963-B199-4ACC-9D26-AD0C136498F7", + "defKey": "good_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": "PASTE" }, { "id": "3029D80F-1F00-456B-B7A8-ACD0A8F80903", @@ -16661,15 +16806,15 @@ "defName": "系统库存", "intro": null, "orderValue": null, - "baseDataType": "DOUBLE", + "baseDataType": "INT", "bizDomainType": "", - "dbDataType": "DOUBLE", - "dataLen": 16, - "numScale": 3, + "dbDataType": "INT", + "dataLen": "", + "numScale": "", "primaryKey": null, "notNull": 1, "autoIncrement": null, - "defaultValue": "0", + "defaultValue": "", "stndDictId": null, "stndDictKey": null, "stndFieldId": null, @@ -16707,11 +16852,11 @@ "defName": "实际库存", "intro": null, "orderValue": null, - "baseDataType": "DOUBLE", + "baseDataType": "INT", "bizDomainType": "", - "dbDataType": "DOUBLE", - "dataLen": 16, - "numScale": 3, + "dbDataType": "INT", + "dataLen": "", + "numScale": "", "primaryKey": null, "notNull": 1, "autoIncrement": null, @@ -16753,11 +16898,11 @@ "defName": "差异数量", "intro": null, "orderValue": null, - "baseDataType": "DOUBLE", + "baseDataType": "INT", "bizDomainType": "", - "dbDataType": "DOUBLE", - "dataLen": 16, - "numScale": 3, + "dbDataType": "INT", + "dataLen": "", + "numScale": "", "primaryKey": null, "notNull": 1, "autoIncrement": null, @@ -16793,67 +16938,21 @@ "updatedUserId": null, "createdUserId": null }, - { - "id": "4739164F-0B9D-404F-B29B-FDFF3BFEB4E5", - "defKey": "status", - "defName": "盘点结果状态(字典):NORMAL=无差异、ABNORMAL=有差异", - "intro": null, - "orderValue": null, - "baseDataType": "CHAR", - "bizDomainType": "", - "dbDataType": "CHAR", - "dataLen": 16, - "numScale": null, - "primaryKey": null, - "notNull": 1, - "autoIncrement": null, - "defaultValue": "NORMAL", - "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": "3C79D303-EE0D-439E-A280-78F7EFDA36E7", "defKey": "suggestion", "defName": "处理建议", "intro": null, "orderValue": null, - "baseDataType": "CHAR", + "baseDataType": "VARCHAR", "bizDomainType": "", - "dbDataType": "CHAR", + "dbDataType": "VARCHAR", "dataLen": 255, "numScale": null, "primaryKey": null, - "notNull": null, + "notNull": 1, "autoIncrement": null, - "defaultValue": "NULL", + "defaultValue": "''", "stndDictId": null, "stndDictKey": null, "stndFieldId": null, @@ -16886,234 +16985,280 @@ "createdUserId": null }, { - "id": "B48D1B9F-31F5-48AD-B2DB-1E79F6045031", + "id": "D4A4CC80-6768-43FB-93F7-9FCB99A04FDD", + "defKey": "check_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": "CD701A1D-4DFD-4C3D-852C-45A0D703868C", "defKey": "creator_id", - "defName": "创建人 Id; sys_user.id", - "intro": null, - "orderValue": null, + "defName": "创建人 Id", + "intro": " sys_user.id", "baseDataType": "BIGINT", "bizDomainType": "", "dbDataType": "BIGINT", - "dataLen": null, - "numScale": null, - "primaryKey": null, + "dataLen": "", + "numScale": "", + "primaryKey": 0, "notNull": 1, - "autoIncrement": null, - "defaultValue": null, - "stndDictId": null, - "stndDictKey": null, - "stndFieldId": null, - "stndFieldKey": null, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "", + "stndFieldId": "", + "stndDictKey": "", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "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": null, - "stndComplianceType": null, - "stndComplianceLevel": null, - "updatedUserId": null, - "createdUserId": 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": "FBF831F7-DF6C-4D9D-9780-E1FA58E5A559", + "id": "7AB6AB06-3DAC-44EB-A8C2-1C7A9EEE57D1", "defKey": "modifier_id", - "defName": "修改人 Id; sys_user.id", - "intro": null, - "orderValue": null, + "defName": "修改人 Id", + "intro": " sys_user.id", "baseDataType": "BIGINT", "bizDomainType": "", "dbDataType": "BIGINT", - "dataLen": null, - "numScale": null, - "primaryKey": null, + "dataLen": "", + "numScale": "", + "primaryKey": 0, "notNull": 1, - "autoIncrement": null, - "defaultValue": null, - "stndDictId": null, - "stndDictKey": null, - "stndFieldId": null, - "stndFieldKey": null, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "", + "stndFieldId": "", + "stndDictKey": "", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "", + "dictItems": [], + "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": null, - "stndComplianceType": null, - "stndComplianceLevel": null, - "updatedUserId": null, - "createdUserId": 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": "5183EFDD-5B86-4C12-8005-DD15C72E1821", + "id": "066F13FF-39D3-4A3C-9589-07C2B0DA02B7", "defKey": "create_time", "defName": "创建时间", - "intro": null, - "orderValue": null, + "intro": "", "baseDataType": "DATETIME", "bizDomainType": "", "dbDataType": "DATETIME", - "dataLen": null, - "numScale": null, - "primaryKey": null, + "dataLen": "", + "numScale": "", + "primaryKey": 0, "notNull": 1, - "autoIncrement": null, - "defaultValue": null, - "stndDictId": null, - "stndDictKey": null, - "stndFieldId": null, - "stndFieldKey": null, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "", + "stndFieldId": "", + "stndDictKey": "", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "", + "dictItems": [], + "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": null, - "stndComplianceType": null, - "stndComplianceLevel": null, - "updatedUserId": null, - "createdUserId": 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": "2538798E-9C63-4B8F-84E5-41C9FD4519AC", + "id": "B8AEA916-E963-4398-BFB7-9DE36AD47918", "defKey": "modify_time", "defName": "修改时间", - "intro": null, - "orderValue": null, + "intro": "", "baseDataType": "DATETIME", "bizDomainType": "", "dbDataType": "DATETIME", - "dataLen": null, - "numScale": null, - "primaryKey": null, + "dataLen": "", + "numScale": "", + "primaryKey": 0, "notNull": 1, - "autoIncrement": null, - "defaultValue": null, - "stndDictId": null, - "stndDictKey": null, - "stndFieldId": null, - "stndFieldKey": null, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "", + "stndFieldId": "", + "stndDictKey": "", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "", + "dictItems": [], + "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": null, - "stndComplianceType": null, - "stndComplianceLevel": null, - "updatedUserId": null, - "createdUserId": 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": "838D78CD-F0A3-44C4-94E5-CF30554DC3AF", + "id": "FED8B3D2-13D3-4E45-8E55-E22C2FAB03CD", "defKey": "deleted", - "defName": "是否删除; 0-->未删除、1-->已删除", - "intro": null, - "orderValue": null, + "defName": "是否删除", + "intro": " 0-->未删除、1-->已删除", "baseDataType": "TINYINT", "bizDomainType": "", "dbDataType": "TINYINT", "dataLen": 1, - "numScale": null, - "primaryKey": null, + "numScale": "", + "primaryKey": 0, "notNull": 1, - "autoIncrement": null, + "autoIncrement": 0, "defaultValue": "0", - "stndDictId": null, - "stndDictKey": null, - "stndFieldId": null, - "stndFieldKey": null, + "stndDictId": "", + "stndFieldId": "", + "stndDictKey": "", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "", + "dictItems": [], + "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": null, - "stndComplianceType": null, - "stndComplianceLevel": null, - "updatedUserId": null, - "createdUserId": 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, @@ -18071,19 +18216,12 @@ "id": "3BCCE848-9201-45BD-832A-EB8C1F2C35F0" }, { - "itemKey": "DingDanTiaoZhang", - "itemName": "订单调账", + "itemKey": "TiaoZhang", + "itemName": "调账", "parentKey": "", "intro": "", "id": "268A1731-DE1D-4E00-9FAF-51F3AECE8430" }, - { - "itemKey": "PinTaiDaKuan", - "itemName": "平台打款", - "parentKey": "", - "intro": "", - "id": "52B15474-7D2A-45A8-BE33-DFAA68DB6BD3" - }, { "itemKey": "ZhiFu", "itemName": "支付", @@ -18145,15 +18283,15 @@ "defName": "备注", "intro": null, "orderValue": null, - "baseDataType": "CHAR", + "baseDataType": "VARCHAR", "bizDomainType": "", - "dbDataType": "CHAR", + "dbDataType": "VARCHAR", "dataLen": 512, "numScale": null, "primaryKey": null, - "notNull": null, + "notNull": 1, "autoIncrement": null, - "defaultValue": "NULL", + "defaultValue": "", "stndDictId": null, "stndDictKey": null, "stndFieldId": null, @@ -18432,7 +18570,7 @@ { "id": "48C64C11-5A89-4DDD-95A6-3EBF40F399FB", "type": "P", - "defKey": "fin_money_bill", + "defKey": "fin_bill", "defName": "对账单", "intro": null, "schemaName": null, @@ -18470,6 +18608,52 @@ "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": "3D3621C8-5E84-44AA-B722-CB8653F94FDF", + "defKey": "user_id", + "defName": "用户 Id", + "intro": null, + "orderValue": null, + "baseDataType": "BIGINT", + "bizDomainType": "", + "dbDataType": "BIGINT", + "dataLen": null, + "numScale": null, "primaryKey": null, "notNull": 1, "autoIncrement": null, @@ -18509,7 +18693,7 @@ "id": "F8F12C09-54A4-47A4-9ED6-4AFA8F23382A", "defKey": "company_id", "defName": "企业 Id", - "intro": null, + "intro": "企业用户有值", "orderValue": null, "baseDataType": "BIGINT", "bizDomainType": "", @@ -18517,7 +18701,7 @@ "dataLen": null, "numScale": null, "primaryKey": null, - "notNull": 1, + "notNull": 0, "autoIncrement": null, "defaultValue": null, "stndDictId": null, @@ -18552,66 +18736,81 @@ "createdUserId": null }, { - "id": "3D3621C8-5E84-44AA-B722-CB8653F94FDF", - "defKey": "user_id", - "defName": "个人 Id", - "intro": null, - "orderValue": null, - "baseDataType": "BIGINT", + "id": "7CDBFB14-C98C-4646-9B09-F137B98A75CE", + "defKey": "account_type", + "defName": "账户类型", + "intro": "account_type", + "baseDataType": "VARCHAR", "bizDomainType": "", - "dbDataType": "BIGINT", - "dataLen": null, - "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": "DE747F2F-3B69-4EBE-A97F-1124CDF8887A", - "defKey": "type", - "defName": "账户类型编码(company=企业账户、personal=个人账户)", - "intro": null, - "orderValue": null, - "baseDataType": "CHAR", - "bizDomainType": "", - "dbDataType": "CHAR", + "dbDataType": "VARCHAR", "dataLen": 32, "numScale": null, + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": null, + "stndDictId": "account_type", + "stndFieldId": null, + "stndDictKey": "account_type", + "stndFieldKey": null, + "stndComplianceLevel": null, + "stndComplianceType": null, + "dictFrom": "Manual", + "dictItems": [ + { + "itemKey": "GeRen", + "itemName": "个人", + "parentKey": "", + "intro": "", + "id": "7E8BA416-A591-4600-8C9F-D94798599FF2" + }, + { + "itemKey": "QiYe", + "itemName": "企业", + "parentKey": "", + "intro": "", + "id": "A36987CD-B68D-4C8F-8098-60982342EDE3" + } + ], + "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": "0D3E1F50-E791-4A32-8533-70FA8B155D7A", + "defKey": "bill_period", + "defName": "账期", + "intro": null, + "orderValue": null, + "baseDataType": "DATE", + "bizDomainType": "", + "dbDataType": "DATE", + "dataLen": null, + "numScale": null, "primaryKey": null, "notNull": 1, "autoIncrement": null, - "defaultValue": null, + "defaultValue": "", "stndDictId": null, "stndDictKey": null, "stndFieldId": null, @@ -18649,9 +18848,9 @@ "defName": "账单开始时间", "intro": null, "orderValue": null, - "baseDataType": "TIME", + "baseDataType": "DATE", "bizDomainType": "", - "dbDataType": "TIME", + "dbDataType": "DATE", "dataLen": null, "numScale": null, "primaryKey": null, @@ -18695,9 +18894,9 @@ "defName": "账单结束时间", "intro": null, "orderValue": null, - "baseDataType": "TIME", + "baseDataType": "DATE", "bizDomainType": "", - "dbDataType": "TIME", + "dbDataType": "DATE", "dataLen": null, "numScale": null, "primaryKey": null, @@ -18735,153 +18934,15 @@ "updatedUserId": null, "createdUserId": null }, - { - "id": "0D3E1F50-E791-4A32-8533-70FA8B155D7A", - "defKey": "bill_period", - "defName": "账期", - "intro": null, - "orderValue": null, - "baseDataType": "TIME", - "bizDomainType": "", - "dbDataType": "TIME", - "dataLen": null, - "numScale": null, - "primaryKey": null, - "notNull": null, - "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": "40C5ED73-0C5C-4579-8962-B0C723CB162E", - "defKey": "goods_id", - "defName": "产品id", - "intro": null, - "orderValue": null, - "baseDataType": "BIGINT", - "bizDomainType": "", - "dbDataType": "BIGINT", - "dataLen": null, - "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": "3D0F53BF-9B6E-43A8-9FA5-1D43C2DE70B4", - "defKey": "goods_name", - "defName": "产品名称", - "intro": null, - "orderValue": null, - "baseDataType": "CHAR", - "bizDomainType": "", - "dbDataType": "CHAR", - "dataLen": 255, - "numScale": null, - "primaryKey": null, - "notNull": null, - "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": "421FEC0B-53AA-4E01-ADE6-59395524004F", "defKey": "order_count", "defName": "订单数", "intro": null, "orderValue": null, - "baseDataType": "MEDIUMINT", + "baseDataType": "INT", "bizDomainType": "", - "dbDataType": "MEDIUMINT", + "dbDataType": "INT", "dataLen": null, "numScale": null, "primaryKey": null, @@ -18919,67 +18980,21 @@ "updatedUserId": null, "createdUserId": null }, - { - "id": "818FFEA3-6D9D-44B9-B45F-CAB69B38C8CB", - "defKey": "total_weight", - "defName": "总质量; 单位:千克", - "intro": null, - "orderValue": null, - "baseDataType": "MEDIUMINT", - "bizDomainType": "", - "dbDataType": "MEDIUMINT", - "dataLen": null, - "numScale": null, - "primaryKey": null, - "notNull": null, - "autoIncrement": null, - "defaultValue": "0", - "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": "0B34B198-82A7-4E99-A190-351393FB31A2", "defKey": "car_count", "defName": "总车数", "intro": null, "orderValue": null, - "baseDataType": "MEDIUMINT", + "baseDataType": "INT", "bizDomainType": "", - "dbDataType": "MEDIUMINT", + "dbDataType": "INT", "dataLen": null, "numScale": null, "primaryKey": null, - "notNull": null, + "notNull": 1, "autoIncrement": null, - "defaultValue": "0", + "defaultValue": "", "stndDictId": null, "stndDictKey": null, "stndFieldId": null, @@ -19011,21 +19026,67 @@ "updatedUserId": null, "createdUserId": null }, + { + "id": "6812CCA8-26E3-4C1A-A6DB-010C7B19C536", + "defKey": "total_weight", + "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": "6A771FD2-567C-4570-A211-B74CE314FFB5", - "defKey": "discount_money", + "defKey": "discount_amount", "defName": "优惠金额", "intro": null, "orderValue": null, - "baseDataType": "DOUBLE", + "baseDataType": "DECIMAL", "bizDomainType": "", - "dbDataType": "DOUBLE", + "dbDataType": "DECIMAL", "dataLen": 14, "numScale": 2, "primaryKey": null, "notNull": 1, "autoIncrement": null, - "defaultValue": "0.00", + "defaultValue": "0", "stndDictId": null, "stndDictKey": null, "stndFieldId": null, @@ -19059,19 +19120,19 @@ }, { "id": "A4A35716-01F5-4C3F-8437-41023CEF6FE7", - "defKey": "total_money", + "defKey": "total_amount", "defName": "账单金额", "intro": null, "orderValue": null, - "baseDataType": "DOUBLE", + "baseDataType": "DECIMAL", "bizDomainType": "", - "dbDataType": "DOUBLE", + "dbDataType": "DECIMAL", "dataLen": 14, "numScale": 2, "primaryKey": null, "notNull": 1, "autoIncrement": null, - "defaultValue": null, + "defaultValue": "", "stndDictId": null, "stndDictKey": null, "stndFieldId": null, @@ -19104,234 +19165,280 @@ "createdUserId": null }, { - "id": "6AF1C543-AF5D-483F-9E44-1CC1EF92068A", + "id": "F522374B-493B-48B7-BBA7-4725373AF427", + "defKey": "memo", + "defName": "备注", + "intro": "", + "baseDataType": "VARCHAR", + "bizDomainType": "", + "dbDataType": "VARCHAR", + "dataLen": 512, + "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" + }, + { + "id": "932046B0-9B90-4AA7-8A85-F1B83FF7415F", "defKey": "creator_id", - "defName": "创建人 Id; sys_user.id", - "intro": null, - "orderValue": null, + "defName": "创建人 Id", + "intro": "sys_user.id", "baseDataType": "BIGINT", "bizDomainType": "", "dbDataType": "BIGINT", - "dataLen": null, - "numScale": null, - "primaryKey": null, + "dataLen": "", + "numScale": "", + "primaryKey": 0, "notNull": 1, - "autoIncrement": null, - "defaultValue": null, - "stndDictId": null, - "stndDictKey": null, - "stndFieldId": null, - "stndFieldKey": null, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "", + "stndFieldId": "", + "stndDictKey": "", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "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": null, - "stndComplianceType": null, - "stndComplianceLevel": null, - "updatedUserId": null, - "createdUserId": 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": "E29B82F9-7D7E-4C59-B35C-13C21D789871", + "id": "1959BF80-867D-4AF4-BC96-BE5805B7DEBF", "defKey": "modifier_id", - "defName": "修改人 Id; sys_user.id", - "intro": null, - "orderValue": null, + "defName": "修改人 Id", + "intro": " sys_user.id", "baseDataType": "BIGINT", "bizDomainType": "", "dbDataType": "BIGINT", - "dataLen": null, - "numScale": null, - "primaryKey": null, + "dataLen": "", + "numScale": "", + "primaryKey": 0, "notNull": 1, - "autoIncrement": null, - "defaultValue": null, - "stndDictId": null, - "stndDictKey": null, - "stndFieldId": null, - "stndFieldKey": null, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "", + "stndFieldId": "", + "stndDictKey": "", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "", + "dictItems": [], + "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": null, - "stndComplianceType": null, - "stndComplianceLevel": null, - "updatedUserId": null, - "createdUserId": 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": "30C82443-7BBA-4DC5-A609-082A2EC86C8C", + "id": "FF505CF8-9A8C-424A-8B7F-0BC8AEC4A6F6", "defKey": "create_time", "defName": "创建时间", - "intro": null, - "orderValue": null, + "intro": "", "baseDataType": "DATETIME", "bizDomainType": "", "dbDataType": "DATETIME", - "dataLen": null, - "numScale": null, - "primaryKey": null, + "dataLen": "", + "numScale": "", + "primaryKey": 0, "notNull": 1, - "autoIncrement": null, - "defaultValue": null, - "stndDictId": null, - "stndDictKey": null, - "stndFieldId": null, - "stndFieldKey": null, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "", + "stndFieldId": "", + "stndDictKey": "", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "", + "dictItems": [], + "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": null, - "stndComplianceType": null, - "stndComplianceLevel": null, - "updatedUserId": null, - "createdUserId": 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": "3380CF36-E39E-4A09-8980-88002B67008D", + "id": "BFC18E41-E63C-4D34-841C-0BE8C484F506", "defKey": "modify_time", "defName": "修改时间", - "intro": null, - "orderValue": null, + "intro": "", "baseDataType": "DATETIME", "bizDomainType": "", "dbDataType": "DATETIME", - "dataLen": null, - "numScale": null, - "primaryKey": null, + "dataLen": "", + "numScale": "", + "primaryKey": 0, "notNull": 1, - "autoIncrement": null, - "defaultValue": null, - "stndDictId": null, - "stndDictKey": null, - "stndFieldId": null, - "stndFieldKey": null, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "", + "stndFieldId": "", + "stndDictKey": "", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "", + "dictItems": [], + "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": null, - "stndComplianceType": null, - "stndComplianceLevel": null, - "updatedUserId": null, - "createdUserId": 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": "42C2CACC-4E49-4E81-BBBB-D0C89E883DA0", + "id": "9DDF41D6-549B-4DE3-8C5B-A6E52C9B02D0", "defKey": "deleted", - "defName": "是否删除; 0-->未删除、1-->已删除", - "intro": null, - "orderValue": null, + "defName": "是否删除", + "intro": " 0-->未删除、1-->已删除", "baseDataType": "TINYINT", "bizDomainType": "", "dbDataType": "TINYINT", "dataLen": 1, - "numScale": null, - "primaryKey": null, + "numScale": "", + "primaryKey": 0, "notNull": 1, - "autoIncrement": null, + "autoIncrement": 0, "defaultValue": "0", - "stndDictId": null, - "stndDictKey": null, - "stndFieldId": null, - "stndFieldKey": null, + "stndDictId": "", + "stndFieldId": "", + "stndDictKey": "", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "", + "dictItems": [], + "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": null, - "stndComplianceType": null, - "stndComplianceLevel": null, - "updatedUserId": null, - "createdUserId": 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, @@ -20048,7 +20155,7 @@ { "id": "201E1E68-611D-4AB9-A01D-3175C130DAA1", "defKey": "unit", - "defName": "单位", + "defName": "计量单位", "intro": "字典代码:unit", "baseDataType": "VARCHAR", "bizDomainType": "", @@ -20803,13 +20910,8033 @@ } ], "indexes": [] + }, + { + "id": "0B223F50-E8AF-40F4-8444-1B22D1171407", + "schemaName": null, + "defKey": "mfg_craft", + "defName": "工艺", + "intro": "", + "type": "P", + "fields": [ + { + "id": "363DC7F6-155A-4679-8E07-DCC249DB544C", + "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": "759FF56C-6610-43D2-B4FA-7617DD2C65CB", + "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": "B02465CC-8EBC-4387-832D-C64B9ABC602F", + "defKey": "craft_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": "B01F78EC-1B7F-4D60-8B1C-37A3B816107D", + "defKey": "major", + "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": "D05BCB6F-D34F-47B2-AE67-A14685E5752C", + "defKey": "minor", + "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": 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": "46CC349F-6837-41D9-AC73-92852C444BAC", + "defKey": "patch", + "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": 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": "F02B36BC-9C06-40D7-A478-DC5789CCEFB3", + "defKey": "canuse", + "defName": "是否可用", + "intro": "0-->否、1-->是", + "baseDataType": "TINYINT", + "bizDomainType": "", + "dbDataType": "TINYINT", + "dataLen": 1, + "numScale": "", + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "1", + "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": "532517BD-A9D0-484A-9EDA-93EC38A47E37", + "defKey": "memo", + "defName": "备注", + "intro": "", + "baseDataType": "VARCHAR", + "bizDomainType": "", + "dbDataType": "VARCHAR", + "dataLen": 512, + "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" + }, + { + "id": "2F962249-EDE4-4C9E-B48C-3710BD612C5F", + "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": "51976034-6142-4362-81B1-469BABE7EA00", + "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": "9E4C8E61-F843-4862-8BE7-215A395E2AD7", + "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": "C41FDEAA-B07D-46F8-8328-81128EE2BE53", + "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": "51F08199-B0D6-4C7C-A29B-1A845420260B", + "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": "8597F6A3-0AB9-4885-BC3A-72C3ACC4B756", + "schemaName": null, + "defKey": "mfg_craft_detail", + "defName": "工艺明细", + "intro": "", + "type": "P", + "fields": [ + { + "id": "6483427C-D722-4E9F-91F3-FCBC420F83CA", + "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": "21C0B59F-E430-48B3-BA69-44EB64563F5F", + "defKey": "goods_category_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": "A2ACB4FE-9159-410C-87A3-B651AB84813E", + "defKey": "goods_category_name", + "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": "PASTE" + }, + { + "id": "FD638B8D-7007-4FED-A0DB-7F8A5BB47AE4", + "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": "PASTE" + }, + { + "id": "10DA759A-9CF4-471D-B7FA-7253187E5892", + "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": "PASTE" + }, + { + "id": "BCB7084D-EEE9-4317-B898-6816A4540A09", + "defKey": "good_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": "PASTE" + }, + { + "id": "AA00368A-1AC4-454D-BF79-90ED9A27C648", + "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": "PASTE" + }, + { + "id": "6209022C-2497-43AD-88CD-99AA4DBC8D95", + "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": "PASTE" + }, + { + "id": "A504D83B-2DDB-4E31-A93A-B1006254E832", + "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": "UI" + }, + { + "id": "460AA422-A417-4EBB-A53E-5AFD414DC539", + "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": "4CA887DE-1125-44CB-BBF4-BA13FA08921E", + "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": "C1391B63-3D49-4099-8A6A-CE12226285D4", + "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": "9AD8416E-AF46-4942-9FF0-D038A0C30050", + "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": "6768B7A7-8D66-43CE-A8E8-120371B55680", + "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": "1A2D551C-214D-469D-B0C5-917C29D725B2", + "schemaName": null, + "defKey": "cst_org", + "defName": "组织信息", + "intro": "", + "type": "P", + "fields": [ + { + "id": "CF671F2B-4BB0-4390-A384-D022A4F74FB3", + "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": "C9A3D3BE-9969-4D88-82D0-DF5A71E45F3C", + "defKey": "entity_category", + "defName": "主体类型", + "intro": "", + "baseDataType": "VARCHAR", + "bizDomainType": "", + "dbDataType": "VARCHAR", + "dataLen": 32, + "numScale": "", + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "entity_category", + "stndFieldId": "", + "stndDictKey": "entity_category", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "Manual", + "dictItems": [ + { + "itemKey": "GeRen", + "itemName": "个人", + "parentKey": "", + "intro": "", + "id": "B692D2F8-14DC-48C3-B59C-AD3EDD447DAD" + }, + { + "itemKey": "GeTiHu", + "itemName": "个体户", + "parentKey": "", + "intro": "", + "id": "D82852C8-C638-47D2-AAF0-05FA88E172C9" + }, + { + "itemKey": "QiYe", + "itemName": "企业", + "parentKey": "", + "intro": "", + "id": "27282DC9-2018-4EF2-B5F8-9EC443950C68" + } + ], + "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": "8A05AFF6-C71E-4AB7-97C9-D1B47ACBD827", + "defKey": "identity_category", + "defName": "身份类型", + "intro": "", + "baseDataType": "VARCHAR", + "bizDomainType": "", + "dbDataType": "VARCHAR", + "dataLen": 32, + "numScale": "", + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "identity_category", + "stndFieldId": "", + "stndDictKey": "identity_category", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "Manual", + "dictItems": [ + { + "itemKey": "PingTai", + "itemName": "平台", + "parentKey": "", + "intro": "", + "id": "F9E5B2B3-3E58-4B22-88F6-C3925BDD4EFF" + }, + { + "itemKey": "ChanFei", + "itemName": "产废方", + "parentKey": "", + "intro": "", + "id": "DAE6A790-C2D0-4972-9491-FEAF67E5B00C" + }, + { + "itemKey": "QingYun", + "itemName": "清运方", + "parentKey": "", + "intro": "", + "id": "BDD02160-F9E7-4E0B-A227-008E0E0DCBB9" + }, + { + "itemKey": "XiaoNa", + "itemName": "消纳方", + "parentKey": "", + "intro": "", + "id": "19C7D008-74BD-4478-8705-D5EB03C54DA5" + }, + { + "itemKey": "CaiGou", + "itemName": "采购方", + "parentKey": "", + "intro": "", + "id": "0EF79E9D-AF63-43B5-A7CB-645CA1C01597" + } + ], + "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": "CCABEE4A-6B49-4AEC-9CF6-685292310D96", + "defKey": "uscc", + "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": "D5563299-8318-4937-A7DB-5C7FA8E25A3B", + "defKey": "org_name", + "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": "88AC98FE-11B5-45C0-8C87-6D50AFCD41F1", + "defKey": "business_license", + "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": "7E1F0EBE-DC1F-4C3A-BC77-D6EEAD93AAD3", + "defKey": "license_start_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": "1BEDF200-3ABA-4A4B-9A15-A7E499BEC6E6", + "defKey": "license_end_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": "EF682866-010D-4E75-B1F6-8EA15BB274A9", + "defKey": "legal_representative", + "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": "D1FADF9C-B9AB-4889-B1FD-A4177C5C5D8D", + "defKey": "idcard", + "defName": "法人身份证号", + "intro": null, + "baseDataType": "VARCHAR", + "bizDomainType": "", + "dbDataType": "VARCHAR", + "dataLen": 512, + "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": "543C52A5-F915-4EDF-9EE7-DA05528AF26F", + "defKey": "idcard_start_time", + "defName": "法人身份证号有效期", + "intro": null, + "baseDataType": "DATETIME", + "bizDomainType": "", + "dbDataType": "DATETIME", + "dataLen": "", + "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": "FA2B7D61-6038-48F9-AB54-62F27F2CD0E5", + "defKey": "idcard_end_time", + "defName": "法人身份证号有效期", + "intro": null, + "baseDataType": "DATETIME", + "bizDomainType": "", + "dbDataType": "DATETIME", + "dataLen": "", + "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": "A8732082-E541-4C02-8471-EBFA4632B23E", + "defKey": "idcard_front", + "defName": "身份证正面", + "intro": null, + "baseDataType": "VARCHAR", + "bizDomainType": "", + "dbDataType": "VARCHAR", + "dataLen": 255, + "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": "B69F7E6F-70D9-4DFA-91AE-79ED413B3429", + "defKey": "idcard_back", + "defName": "身份证反面", + "intro": null, + "baseDataType": "VARCHAR", + "bizDomainType": "", + "dbDataType": "VARCHAR", + "dataLen": 255, + "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": "B625B190-7E83-48F2-801C-B09B0A73B108", + "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": "F81C601B-BF3E-40E1-87A9-D6A8D7DB9D8F", + "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": "D0EAF537-0C11-41B1-9582-C6613DA0BEF4", + "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": "75D6AB98-7A05-43DA-A688-193A24537838", + "defKey": "town", + "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": "56CCC921-4E1A-43AF-81CA-8E66710E7423", + "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": "3AECBDCD-F654-4658-9368-CFD1847DAD87", + "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": "87B4AF6D-7726-491C-9EE1-D5137FFDA4D8", + "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": "BB53FA76-8C34-4F1C-AC8E-3EAFF0ED21B1", + "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": "B4FB38E5-DD24-4176-A757-A6A14B2C7EA5", + "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": "70D04DAC-AE65-4C84-BDCF-4ED4465D484B", + "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": "1CC4F506-64C5-4882-B880-7553E3B91CA6", + "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": "3FF6E15E-6352-4054-A8AC-DE2CFB613E93", + "defKey": "contacts", + "defName": "联系人", + "intro": null, + "baseDataType": "VARCHAR", + "bizDomainType": "", + "dbDataType": "VARCHAR", + "dataLen": 255, + "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": "6C5AC943-1992-43A1-A542-88ACC7204D3C", + "defKey": "phone", + "defName": "联系电话", + "intro": null, + "baseDataType": "VARCHAR", + "bizDomainType": "", + "dbDataType": "VARCHAR", + "dataLen": 20, + "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": "465B8DE0-CBA3-48AD-BE5C-74AC8414854C", + "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": "3838BCFD-CB87-4FF9-AAD9-BC722F6261D6", + "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": "86E987F7-BCDE-47C9-BE16-55D5944BDCB0", + "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": "B9CB3969-D9D3-4069-ABCB-DB181101B9A5", + "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": "BF60EF09-20EA-41CF-AD26-AEC923D100D0", + "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": "DECB0762-9BE3-429A-81F7-891B7C960B04", + "schemaName": null, + "defKey": "cst_customer", + "defName": "客户信息", + "intro": "", + "type": "P", + "fields": [ + { + "id": "09854DFF-61E6-4C00-ADC5-66F9B1708153", + "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": 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": "14C8CD6D-9945-48AC-B4DB-9876B85FA61D", + "defKey": "user_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": "6A72C42D-5DF7-425F-B444-FD4FB5B2CEA0", + "defKey": "org_id", + "defName": "主体信息", + "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": "CD510B62-B163-4601-800C-4DB357BC1AAF", + "defKey": "org_manager", + "defName": "是否为管理员", + "intro": "", + "baseDataType": "TINYINT", + "bizDomainType": "", + "dbDataType": "TINYINT", + "dataLen": 1, + "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": "F029192F-84B3-4AF0-805D-612239BDC60B", + "defKey": "driver", + "defName": "是否为司机", + "intro": "", + "baseDataType": "TINYINT", + "bizDomainType": "", + "dbDataType": "TINYINT", + "dataLen": 1, + "numScale": "", + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "0", + "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": "304F29BE-D238-4ABA-BB54-AAFF00126CC3", + "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": "9D32B608-D5E3-4F6D-92CD-020CF45166E0", + "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": "6DB5685B-E380-45AE-BFD6-991BEE95C127", + "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": "FCB7958D-5504-4223-9573-BE66E844B078", + "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": "BDC5A81F-7A16-437C-A4ED-77544617A071", + "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": "718C57B0-4799-48E1-8651-57527A3BFF8B", + "schemaName": null, + "defKey": "cst_truck", + "defName": "车辆信息", + "intro": "", + "type": "P", + "fields": [ + { + "id": "1EFCD46E-726C-4EA4-8405-FAAD1C783FB5", + "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": "D3603202-48B0-46D6-87B6-BC4943E82C58", + "defKey": "org_id", + "defName": "归属企业", + "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": "7E3DB6C8-9954-4E57-839D-BD514764EA3A", + "defKey": "license_plate", + "defName": "车牌", + "intro": null, + "baseDataType": "VARCHAR", + "bizDomainType": "", + "dbDataType": "VARCHAR", + "dataLen": 20, + "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": "505C54D8-41F8-4A42-A898-8316979B4513", + "defKey": "truck_license", + "defName": "行驶证图片", + "intro": null, + "baseDataType": "VARCHAR", + "bizDomainType": "", + "dbDataType": "VARCHAR", + "dataLen": 255, + "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": "A9B789BE-8B48-4C7A-B001-DE65D07B7ED7", + "defKey": "vn_code", + "defName": "车架号", + "intro": null, + "baseDataType": "VARCHAR", + "bizDomainType": "", + "dbDataType": "VARCHAR", + "dataLen": 64, + "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": "BE19D8AF-C716-4B1D-ADF2-9593F34C4813", + "defKey": "qualification", + "defName": "合格证图片", + "intro": null, + "baseDataType": "VARCHAR", + "bizDomainType": "", + "dbDataType": "VARCHAR", + "dataLen": 255, + "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": "EB79C2D2-4880-454C-930E-DAFE351C9A07", + "defKey": "carrying_capacity", + "defName": "最大载重", + "intro": "单位:千克", + "baseDataType": "INT", + "bizDomainType": "", + "dbDataType": "INT", + "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": "2E24E576-DA15-4A1A-9926-6056A17A5637", + "defKey": "tare_weight", + "defName": "皮重", + "intro": "单位:千克", + "baseDataType": "INT", + "bizDomainType": "", + "dbDataType": "INT", + "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": "7945761E-B26D-4DDC-BA19-70C4D98FE4C1", + "defKey": "license_start_date", + "defName": "行驶证有效期", + "intro": null, + "baseDataType": "DATE", + "bizDomainType": "", + "dbDataType": "DATE", + "dataLen": "", + "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": "020DEC28-1F6C-4E2B-9623-CEE38A3FB4EC", + "defKey": "license_end_date", + "defName": "行驶证有效期", + "intro": "", + "baseDataType": "DATE", + "bizDomainType": "", + "dbDataType": "DATE", + "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": "B28A0666-5CF3-4D96-A876-D2BC07677BFA", + "defKey": "qualification_start_date", + "defName": "合格证有效期", + "intro": null, + "baseDataType": "DATE", + "bizDomainType": "", + "dbDataType": "DATE", + "dataLen": "", + "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": "CFE522E1-02C1-413D-A3B8-A01FF0256A73", + "defKey": "qualification_end_date", + "defName": "合格证有效期", + "intro": null, + "baseDataType": "DATE", + "bizDomainType": "", + "dbDataType": "DATE", + "dataLen": "", + "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": "BAD4F507-DCBD-4EE1-8685-3969FA4AC5D0", + "defKey": "truck_category", + "defName": "车辆类型", + "intro": null, + "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": "5C7F1E15-6F33-43FC-AF2C-10849008E06E", + "defKey": "picture", + "defName": "车辆图片", + "intro": null, + "baseDataType": "VARCHAR", + "bizDomainType": "", + "dbDataType": "VARCHAR", + "dataLen": 255, + "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": "20A5707E-1063-45FE-BC7E-CC2E0F74FF12", + "defKey": "busy", + "defName": "忙碌中", + "intro": null, + "baseDataType": "TINYINT", + "bizDomainType": "", + "dbDataType": "TINYINT", + "dataLen": 1, + "numScale": null, + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "0", + "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": "653C9BE5-4E40-4AA8-B336-458BD8223DB6", + "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": "8B50C397-0ACA-4501-9E67-23E3ADB6577F", + "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": "ABD071EE-06D0-4BF2-8F74-9F6CABF86DA2", + "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": "FD6086F7-EB89-4AA4-8501-1C829AE77CAC", + "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": "BD7DBE88-568E-41D6-9A78-D635619C89C3", + "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": "F13139EC-3554-4C1E-8C09-1A6C238C539A", + "schemaName": null, + "defKey": "cst_order", + "defName": "收/销订单", + "intro": "", + "type": "P", + "fields": [ + { + "id": "4B18692F-1CB5-4710-9058-946FF53D67F4", + "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": "D21BF29B-542A-49F8-8F7F-F186A32AFA2B", + "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": "3D005849-86B8-482E-B2B7-4164FC366072", + "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": "D9A7D167-1973-498F-AE69-5245744F2A46", + "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": "FA7D42D7-05A9-463E-BB7E-DD3F234F5D6B", + "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": "282F8E9E-37AA-4E88-936F-0669D3BFD911", + "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": "38B910DC-4D79-448E-9EA4-CED1E92B03DE", + "schemaName": null, + "defKey": "cst_order_trans", + "defName": "运输信息", + "intro": "", + "type": "P", + "fields": [ + { + "id": "BA82BEB0-62A6-410C-B352-68478E6656A6", + "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": "C42086C9-14DA-4E59-8C95-3CE20BD542A1", + "defKey": "order_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": "EC5E439D-4BC3-41FF-91CC-586E68D8615F", + "defKey": "driver_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": "160899D7-1A2F-4AAA-B418-765E5984C42F", + "defKey": "driver_user_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": "42BDB31C-BB61-4302-B3A7-97726EDA9E03", + "defKey": "driver_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": "B6450857-702B-4260-8189-6E10F2F5B849", + "defKey": "driver_phone", + "defName": "司机联系电话", + "intro": "", + "baseDataType": "VARCHAR", + "bizDomainType": "", + "dbDataType": "VARCHAR", + "dataLen": 20, + "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": "E867EDED-9E3D-4EB0-9276-23BE8A3574CE", + "defKey": "truck_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": "B1E3D7FD-2952-4AB9-BD83-8B0DF8E02E3A", + "defKey": "truck_license_plate", + "defName": "车牌号", + "intro": "", + "baseDataType": "VARCHAR", + "bizDomainType": "", + "dbDataType": "VARCHAR", + "dataLen": 20, + "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": "63C17A2A-CD26-484F-8D21-1181144C9B88", + "defKey": "history_tare_weight", + "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": "82CE20FA-7DF0-435E-9F3C-70A4A8F884F4", + "defKey": "org_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": "4B5EA64F-9E41-4218-973C-2F6BA697D969", + "defKey": "org_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": "91E23426-0995-4788-82A9-4D4A26B6B39F", + "defKey": "org_contacts", + "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": "FCCC7E24-9F94-422D-A90E-CBC1441CFD43", + "defKey": "org_phone", + "defName": "主体联系电话", + "intro": "", + "baseDataType": "VARCHAR", + "bizDomainType": "", + "dbDataType": "VARCHAR", + "dataLen": 20, + "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": "E139A1BC-4A5F-405C-84BD-0963E8DC5914", + "defKey": "rough_weight", + "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": "08DFE4CD-7BBD-469E-A4C2-59441BF72EAE", + "defKey": "tare_weight", + "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": "83C2781E-6AEF-4C5E-A3AE-1A00E25E5AB5", + "defKey": "settle_weight", + "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": "A1F02DEE-877C-4FEA-AA24-2F7CE6CD12A7", + "defKey": "in_front_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": "3FE031F0-2E22-4EDB-B440-9E54227DFD54", + "defKey": "in_body_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": "BE41C5D8-AE8D-431D-AC1D-C46571516721", + "defKey": "out_front_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": "6178369D-7CDB-4645-ACAF-4FB7920DD907", + "defKey": "out_body_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": "020E3B61-5CE2-4900-999B-EDD1CB15A5B3", + "defKey": "in_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": "633D85AC-D560-464F-B8E2-F845B6DAAC18", + "defKey": "out_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": "4E26BE38-0359-4A18-B025-E996E574D7C8", + "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": "11B7560B-19E1-4600-8B73-4990D27CD1D3", + "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": "EDF1827D-51E8-45AD-98C6-4D57AACF57A8", + "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": "DC3B494B-0F81-43DE-BBBE-84CE6D8C201F", + "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": "2023B533-447D-4928-8256-5D9D9D0F14AF", + "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": "F573B178-BE6E-48AB-8AF0-6121E7320EB9", + "schemaName": null, + "defKey": "cst_order_expense_items", + "defName": "付费项", + "intro": "", + "type": "P", + "fields": [ + { + "id": "97980599-17FA-46BF-A07B-01C97CFFA0D5", + "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": "7509E84A-2C66-4FF7-AD9D-38A4EFD21C5C", + "defKey": "order_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": "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": "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": "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": "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": "35327184-50C2-4821-A55E-E028E23F6CB5", + "defKey": "payment_status", + "defName": "支付状态", + "intro": "", + "baseDataType": "VARCHAR", + "bizDomainType": "", + "dbDataType": "VARCHAR", + "dataLen": 32, + "numScale": "", + "primaryKey": 0, + "notNull": 0, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "payment_status", + "stndFieldId": "", + "stndDictKey": "payment_status", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "Manual", + "dictItems": [ + { + "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": 0, + "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": "", + "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": "3746CD2C-A17E-415E-95FA-9F88DFB6285C", + "defKey": "payer_money_account", + "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": "74DAB22A-CDFD-445D-9C15-E32211E5A9CF", + "defKey": "payment_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": "568436FE-1772-4E0B-8AEF-81F6F806A5BF", + "defKey": "expense_item_category", + "defName": "收费项目类型", + "intro": "", + "baseDataType": "VARCHAR", + "bizDomainType": "", + "dbDataType": "VARCHAR", + "dataLen": 16, + "numScale": "", + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "expense_item_category", + "stndFieldId": "", + "stndDictKey": "expense_item_category", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "Manual", + "dictItems": [ + { + "itemKey": "QiTa", + "itemName": "其他", + "parentKey": "", + "intro": "", + "id": "B4560F4E-C17C-45E6-BA46-F24447710D73" + }, + { + "itemKey": "ChanPin", + "itemName": "产品", + "parentKey": "", + "intro": "", + "id": "1078D9EB-D7B7-4AE4-BB59-C5981DFFE609" + } + ], + "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": "850B4B65-409F-4F25-AFA0-9ABDE60AD557", + "defKey": "expense_item_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": "PASTE" + }, + { + "id": "B928469A-6CCE-4E8B-9656-B561F67396AF", + "defKey": "expense_strategy", + "defName": "计费策略", + "intro": "字典代码:expense_strategy", + "baseDataType": "VARCHAR", + "bizDomainType": "", + "dbDataType": "VARCHAR", + "dataLen": 64, + "numScale": "", + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "expense_strategy", + "stndFieldId": "", + "stndDictKey": "expense_strategy", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "Manual", + "dictItems": [ + { + "itemKey": "MianFei", + "itemName": "免费", + "parentKey": "", + "intro": "", + "id": "7B74209A-E0F9-4D7E-B437-A15802FAC11B" + }, + { + "itemKey": "TanXing", + "itemName": "弹性", + "parentKey": "", + "intro": "", + "id": "B247787C-6787-41E8-BADD-5F155C62B7A9" + }, + { + "itemKey": "Juli", + "itemName": "按车", + "parentKey": "", + "intro": "", + "id": "34D2FFAC-CB4B-4E3B-8125-6605491E95A8" + }, + { + "itemKey": "Dun", + "itemName": "按吨", + "parentKey": "", + "intro": "", + "id": "17C1DC4B-B707-4DAD-8B24-484838F9C157" + }, + { + "itemKey": "Che", + "itemName": "按方", + "parentKey": "", + "intro": "", + "id": "CC0058F6-02CA-4645-9FEF-9143833C2964" + }, + { + "itemKey": "Fang", + "itemName": "按距离", + "parentKey": "", + "intro": "", + "id": "024EEBD1-5C0E-4AA4-A5EA-3E2BAA80628A" + } + ], + "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": "95984ED8-26A5-437F-8004-C5BDAD3B7E9A", + "defKey": "tax_rate", + "defName": "税率", + "intro": "", + "baseDataType": "DECIMAL", + "bizDomainType": "", + "dbDataType": "DECIMAL", + "dataLen": 10, + "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": "PASTE" + }, + { + "id": "0C8BF917-7A07-4EE4-8575-2DFA5EB41EF7", + "defKey": "payer", + "defName": "付费方", + "intro": "字典代码:payer", + "baseDataType": "VARCHAR", + "bizDomainType": "", + "dbDataType": "VARCHAR", + "dataLen": 16, + "numScale": "", + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "payer", + "stndFieldId": "", + "stndDictKey": "payer", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "Manual", + "dictItems": [ + { + "itemKey": "PingTai", + "itemName": "平台", + "parentKey": "", + "intro": "", + "id": "F9E5B2B3-3E58-4B22-88F6-C3925BDD4EFF" + }, + { + "itemKey": "ChanFei", + "itemName": "产废方", + "parentKey": "", + "intro": "", + "id": "DAE6A790-C2D0-4972-9491-FEAF67E5B00C" + }, + { + "itemKey": "QingYun", + "itemName": "清运方", + "parentKey": "", + "intro": "", + "id": "BDD02160-F9E7-4E0B-A227-008E0E0DCBB9" + }, + { + "itemKey": "XiaoNa", + "itemName": "消纳方", + "parentKey": "", + "intro": "", + "id": "19C7D008-74BD-4478-8705-D5EB03C54DA5" + }, + { + "itemKey": "CaiGou", + "itemName": "采购方", + "parentKey": "", + "intro": "", + "id": "0EF79E9D-AF63-43B5-A7CB-645CA1C01597" + } + ], + "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": "113F9CA5-9A9F-49DC-B3CF-B63045343006", + "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": "PASTE" + }, + { + "id": "555713D6-B1B4-4548-9174-1574B26DFC86", + "defKey": "unit_price", + "defName": "单价", + "intro": "单位:元,弹性模式-->每档价格", + "baseDataType": "DECIMAL", + "bizDomainType": "", + "dbDataType": "DECIMAL", + "dataLen": 16, + "numScale": 6, + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "0.0", + "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": "38ED21B8-8065-43F8-A461-9EE42FE0CDAA", + "defKey": "initial_price", + "defName": "起步价", + "intro": "单位:元,<= 起步量 固定费用", + "baseDataType": "DECIMAL", + "bizDomainType": "", + "dbDataType": "DECIMAL", + "dataLen": 16, + "numScale": 6, + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "0.0", + "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": "FC4CD2D4-ACA6-407C-AE94-60803F0ED9D1", + "defKey": "initial_quantity", + "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": 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": "45B5919A-0B50-4860-88E1-6AB3E5614EEE", + "defKey": "every_quantity", + "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": 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": "3A320857-94C6-46AE-BE07-823A7C4F581F", + "defKey": "user_scope", + "defName": "适用用户", + "intro": "结构类型:{\n strategy: None | All | Specify,\n objs: long[]\n}", + "baseDataType": "TEXT", + "bizDomainType": "", + "dbDataType": "TEXT", + "dataLen": "", + "numScale": "", + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "scope_strategy", + "stndFieldId": "", + "stndDictKey": "scope_strategy", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "Manual", + "dictItems": [ + { + "itemKey": "Wu", + "itemName": "无", + "parentKey": "", + "intro": "", + "id": "5C25320D-C9AA-4AF6-B1DD-09363617D653" + }, + { + "itemKey": "ZhiDing", + "itemName": "指定", + "parentKey": "", + "intro": "", + "id": "24FE3E6E-E3F6-4C2C-AE0D-F77C2D6754A4" + }, + { + "itemKey": "SuoYou", + "itemName": "所有", + "parentKey": "", + "intro": "", + "id": "72531125-9D71-47CA-8396-22F004CB77B0" + } + ], + "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": "4270C166-11F1-4420-BA9A-31449DCED60E", + "defKey": "station_scope", + "defName": "适用站点", + "intro": "结构类型:{\n strategy: None | All | Specify,\n objs: long[]\n}", + "baseDataType": "TEXT", + "bizDomainType": "", + "dbDataType": "TEXT", + "dataLen": "", + "numScale": "", + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "scope_strategy", + "stndFieldId": "", + "stndDictKey": "scope_strategy", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "Manual", + "dictItems": [ + { + "itemKey": "Wu", + "itemName": "无", + "parentKey": "", + "intro": "", + "id": "5C25320D-C9AA-4AF6-B1DD-09363617D653" + }, + { + "itemKey": "ZhiDing", + "itemName": "指定", + "parentKey": "", + "intro": "", + "id": "24FE3E6E-E3F6-4C2C-AE0D-F77C2D6754A4" + }, + { + "itemKey": "SuoYou", + "itemName": "所有", + "parentKey": "", + "intro": "", + "id": "72531125-9D71-47CA-8396-22F004CB77B0" + } + ], + "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": "9A55E6F2-B165-4788-A6BA-00FE644E4CF6", + "defKey": "goods_scope", + "defName": "适用产品", + "intro": "结构类型:{\n strategy: None | All | Specify,\n objs: long[]\n}", + "baseDataType": "TEXT", + "bizDomainType": "", + "dbDataType": "TEXT", + "dataLen": "", + "numScale": "", + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "scope_strategy", + "stndFieldId": "", + "stndDictKey": "scope_strategy", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "Manual", + "dictItems": [ + { + "itemKey": "Wu", + "itemName": "无", + "parentKey": "", + "intro": "", + "id": "5C25320D-C9AA-4AF6-B1DD-09363617D653" + }, + { + "itemKey": "ZhiDing", + "itemName": "指定", + "parentKey": "", + "intro": "", + "id": "24FE3E6E-E3F6-4C2C-AE0D-F77C2D6754A4" + }, + { + "itemKey": "SuoYou", + "itemName": "所有", + "parentKey": "", + "intro": "", + "id": "72531125-9D71-47CA-8396-22F004CB77B0" + } + ], + "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": "7EF2F922-5898-49D1-AA9B-EB4E0E633D7B", + "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": "B24CC9A5-546D-4CBE-895A-B1110D4DEC56", + "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": "3C80AA09-DB48-4D36-A8DB-464E14BD57A2", + "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": "0C8D8BBF-BC1A-477D-A217-892DACF7C78E", + "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": "EAEFF405-6D0D-48AE-BA7E-2C917BFA8F7B", + "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": "DF643AC9-1A78-408B-9F20-9C659BC475FA", + "type": "P", + "defKey": "cst_driver", + "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": "EA102029-949A-445E-BA8F-BD59EF57DF29", + "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": "114C1B4D-4FCA-4E61-BE22-9EC93DD09B8D", + "defKey": "user_id", + "defName": "归属用户 Id", + "intro": null, + "orderValue": null, + "baseDataType": "BIGINT", + "bizDomainType": "", + "dbDataType": "BIGINT", + "dataLen": null, + "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": "4CFA28DA-7FEC-4801-AF24-E0EC059880FF", + "defKey": "org_id", + "defName": "归属公司 Id", + "intro": null, + "orderValue": null, + "baseDataType": "BIGINT", + "bizDomainType": "", + "dbDataType": "BIGINT", + "dataLen": null, + "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": "D3A9A734-B32F-4861-894B-639D571C1909", + "defKey": "driving_licence_no", + "defName": "驾驶证编号", + "intro": null, + "orderValue": null, + "baseDataType": "VARCHAR", + "bizDomainType": "", + "dbDataType": "VARCHAR", + "dataLen": 30, + "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": "D1F18BDE-577C-4129-977C-CF50C0B92147", + "defKey": "driver_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": "B37E5A7C-05D3-47E7-A942-3CC7FD028B07", + "defKey": "phone", + "defName": "手机号", + "intro": null, + "orderValue": null, + "baseDataType": "VARCHAR", + "bizDomainType": "", + "dbDataType": "VARCHAR", + "dataLen": 20, + "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": "7610FE82-69E1-4E7D-A58A-7DC7ECAD3F1C", + "defKey": "driving_licence", + "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": "659318AE-136A-4E95-B749-F02D642A8A56", + "defKey": "licence_start_time", + "defName": "驾驶证有效期", + "intro": null, + "orderValue": null, + "baseDataType": "DATETIME", + "bizDomainType": "", + "dbDataType": "DATETIME", + "dataLen": null, + "numScale": null, + "primaryKey": null, + "notNull": 0, + "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": "E901B6BF-3C66-4E33-8B2D-9A408C2417B6", + "defKey": "licence_end_time", + "defName": "驾驶证有效期", + "intro": null, + "orderValue": null, + "baseDataType": "DATETIME", + "bizDomainType": "", + "dbDataType": "DATETIME", + "dataLen": null, + "numScale": null, + "primaryKey": null, + "notNull": 0, + "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": "9AF0B3F7-F1F2-4183-8DEE-4078375B8F40", + "defKey": "busy", + "defName": "忙碌中", + "intro": null, + "orderValue": null, + "baseDataType": "TINYINT", + "bizDomainType": "", + "dbDataType": "TINYINT", + "dataLen": 1, + "numScale": null, + "primaryKey": null, + "notNull": 1, + "autoIncrement": null, + "defaultValue": "0", + "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": "F45BFDF4-AF71-4F59-B661-80C4C21A6DF6", + "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": "4B5C06B5-164F-412E-A8EF-8450517760D3", + "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": "B1FFB331-E210-45B5-9C46-B6619943B9E0", + "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": "3FB9D047-6ECB-4EE2-A383-F418D62617B2", + "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": "1AAB5119-A10C-4740-BEFA-5F92F02873AC", + "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": 1764926667000, - "signature": "0b57ee1cf66311a38072d900f493a850", + "updateTime": 1765013625942, + "signature": "3f7487e59b9359c0c40f10b134748098", "branchId": "1111" } \ No newline at end of file