From 99f9bc710f7c4382b7117809cf3998e1bf4d8039 Mon Sep 17 00:00:00 2001 From: lzq <2495532633@qq.com> Date: Tue, 23 Dec 2025 10:36:23 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8A=A0=E5=85=A5=E7=BB=84=E7=BB=87=E7=94=B3?= =?UTF-8?q?=E8=AF=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../dispose/cst/org/mapper/OrgMapper.java | 2 + .../dispose/cst/org/service/OrgService.java | 4 + .../goods/pojo/entity/GoodsEntity.java | 15 - .../goods/pojo/param/AddGoodsParam.java | 15 - .../goods/pojo/param/ModifyGoodsParam.java | 15 - .../resources/mapper/cst/org/OrgMapper.xml | 5 + z-doc/pdma/njzscloud-dispose.pdma | 2583 ++++++++++++++--- 7 files changed, 2189 insertions(+), 450 deletions(-) diff --git a/njzscloud-svr/src/main/java/com/njzscloud/dispose/cst/org/mapper/OrgMapper.java b/njzscloud-svr/src/main/java/com/njzscloud/dispose/cst/org/mapper/OrgMapper.java index fe3beec..ee1815d 100644 --- a/njzscloud-svr/src/main/java/com/njzscloud/dispose/cst/org/mapper/OrgMapper.java +++ b/njzscloud-svr/src/main/java/com/njzscloud/dispose/cst/org/mapper/OrgMapper.java @@ -4,6 +4,7 @@ import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import com.njzscloud.dispose.cst.customer.pojo.entity.CustomerEntity; +import com.njzscloud.dispose.cst.customer.pojo.result.SearchCustomerResult; import com.njzscloud.dispose.cst.org.pojo.entity.OrgEntity; import com.njzscloud.dispose.cst.org.pojo.result.OrgResult; import org.apache.ibatis.annotations.Mapper; @@ -25,4 +26,5 @@ public interface OrgMapper extends BaseMapper { List queryList(@Param("ew") QueryWrapper ew); + SearchCustomerResult getCustomer(@Param("customerId") Long customerId); } diff --git a/njzscloud-svr/src/main/java/com/njzscloud/dispose/cst/org/service/OrgService.java b/njzscloud-svr/src/main/java/com/njzscloud/dispose/cst/org/service/OrgService.java index c0f66d9..fe19ce7 100644 --- a/njzscloud-svr/src/main/java/com/njzscloud/dispose/cst/org/service/OrgService.java +++ b/njzscloud-svr/src/main/java/com/njzscloud/dispose/cst/org/service/OrgService.java @@ -11,6 +11,7 @@ import com.njzscloud.common.core.ex.Exceptions; import com.njzscloud.common.mp.support.PageParam; import com.njzscloud.common.mp.support.PageResult; import com.njzscloud.dispose.cst.customer.pojo.entity.CustomerEntity; +import com.njzscloud.dispose.cst.customer.pojo.result.SearchCustomerResult; import com.njzscloud.dispose.cst.org.constant.ApplyStatus; import com.njzscloud.dispose.cst.org.mapper.OrgMapper; import com.njzscloud.dispose.cst.org.pojo.entity.OrgApplyEntity; @@ -112,6 +113,9 @@ public class OrgService extends ServiceImpl implements ISe @Transactional(rollbackFor = Exception.class) public void apply(Long customerId, Long orgId) { + SearchCustomerResult customerResult = baseMapper.getCustomer(customerId); + Assert.isFalse(customerResult.getManager(), () -> Exceptions.exception("企业/组织管理员不能加入其他公司")); + Assert.isNull(customerResult.getOrgId(), () -> Exceptions.exception("已加入其他企业/组织请先退出")); boolean exists = orgApplyService.exists(Wrappers.lambdaQuery(OrgApplyEntity.class) .in(OrgApplyEntity::getApplyStatus, ApplyStatus.ShenQingZhong, ApplyStatus.TongYi) .eq(OrgApplyEntity::getCustomerId, customerId) diff --git a/njzscloud-svr/src/main/java/com/njzscloud/dispose/goods/pojo/entity/GoodsEntity.java b/njzscloud-svr/src/main/java/com/njzscloud/dispose/goods/pojo/entity/GoodsEntity.java index 939beef..a98a60c 100644 --- a/njzscloud-svr/src/main/java/com/njzscloud/dispose/goods/pojo/entity/GoodsEntity.java +++ b/njzscloud-svr/src/main/java/com/njzscloud/dispose/goods/pojo/entity/GoodsEntity.java @@ -51,21 +51,6 @@ public class GoodsEntity extends BaseEntity { */ private String unit; - /** - * 是否为成品;0-->否、1-->是 - */ - private Boolean fg; - - /** - * 是否为半成品;0-->否、1-->是 - */ - private Boolean sfg; - - /** - * 是否为原料;0-->否、1-->是 - */ - private Boolean rg; - /** * 排序 */ diff --git a/njzscloud-svr/src/main/java/com/njzscloud/dispose/goods/pojo/param/AddGoodsParam.java b/njzscloud-svr/src/main/java/com/njzscloud/dispose/goods/pojo/param/AddGoodsParam.java index 406b0de..3524795 100644 --- a/njzscloud-svr/src/main/java/com/njzscloud/dispose/goods/pojo/param/AddGoodsParam.java +++ b/njzscloud-svr/src/main/java/com/njzscloud/dispose/goods/pojo/param/AddGoodsParam.java @@ -52,21 +52,6 @@ public class AddGoodsParam { */ private String unit; - /** - * 是否为成品;0-->否、1-->是 - */ - private Boolean fg; - - /** - * 是否为半成品;0-->否、1-->是 - */ - private Boolean sfg; - - /** - * 是否为原料;0-->否、1-->是 - */ - private Boolean rg; - /** * 排序 */ diff --git a/njzscloud-svr/src/main/java/com/njzscloud/dispose/goods/pojo/param/ModifyGoodsParam.java b/njzscloud-svr/src/main/java/com/njzscloud/dispose/goods/pojo/param/ModifyGoodsParam.java index a4e6f52..4fe75b0 100644 --- a/njzscloud-svr/src/main/java/com/njzscloud/dispose/goods/pojo/param/ModifyGoodsParam.java +++ b/njzscloud-svr/src/main/java/com/njzscloud/dispose/goods/pojo/param/ModifyGoodsParam.java @@ -56,21 +56,6 @@ public class ModifyGoodsParam { */ private String unit; - /** - * 是否为成品;0-->否、1-->是 - */ - private Boolean fg; - - /** - * 是否为半成品;0-->否、1-->是 - */ - private Boolean sfg; - - /** - * 是否为原料;0-->否、1-->是 - */ - private Boolean rg; - /** * 排序 */ diff --git a/njzscloud-svr/src/main/resources/mapper/cst/org/OrgMapper.xml b/njzscloud-svr/src/main/resources/mapper/cst/org/OrgMapper.xml index 6d48828..d9cd597 100644 --- a/njzscloud-svr/src/main/resources/mapper/cst/org/OrgMapper.xml +++ b/njzscloud-svr/src/main/resources/mapper/cst/org/OrgMapper.xml @@ -76,4 +76,9 @@ ${ew.customSqlSegment} + diff --git a/z-doc/pdma/njzscloud-dispose.pdma b/z-doc/pdma/njzscloud-dispose.pdma index de581d0..4ff799b 100644 --- a/z-doc/pdma/njzscloud-dispose.pdma +++ b/z-doc/pdma/njzscloud-dispose.pdma @@ -3178,6 +3178,26 @@ "refObjectId": "CDADA174-8ECA-4330-A44B-0DB60C18F25D", "refObjectType": "E", "orderValue": 5 + }, + { + "refObjectId": "78C76768-76BB-48CA-9938-6ED5F823D153", + "refObjectType": "P", + "orderValue": 6 + }, + { + "refObjectId": "0D72401C-EA42-4DE0-B0F1-D05DAFF7D265", + "refObjectType": "P", + "orderValue": 7 + }, + { + "refObjectId": "38F860DC-AECC-4D1C-ADC1-EF9503EA431F", + "refObjectType": "P", + "orderValue": 8 + }, + { + "refObjectId": "A3717326-9BB6-497C-B379-114B5DDB1CFF", + "refObjectType": "P", + "orderValue": 9 } ], "diagramRefs": [], @@ -3632,6 +3652,26 @@ "refObjectId": "CDADA174-8ECA-4330-A44B-0DB60C18F25D", "refObjectType": "P", "orderValue": 53 + }, + { + "refObjectId": "78C76768-76BB-48CA-9938-6ED5F823D153", + "refObjectType": "P", + "orderValue": 54 + }, + { + "refObjectId": "0D72401C-EA42-4DE0-B0F1-D05DAFF7D265", + "refObjectType": "P", + "orderValue": 55 + }, + { + "refObjectId": "38F860DC-AECC-4D1C-ADC1-EF9503EA431F", + "refObjectType": "P", + "orderValue": 56 + }, + { + "refObjectId": "A3717326-9BB6-497C-B379-114B5DDB1CFF", + "refObjectType": "P", + "orderValue": 57 } ], "diagramRefs": [] @@ -14655,17 +14695,7 @@ } ], "correlations": null, - "indexes": [ - { - "id": "EFC0D5C0-57FD-4BB8-9B16-153C3E34769E", - "type": "PRIMARY KEY", - "defKey": null, - "defName": null, - "intro": null, - "orderValue": null, - "fields": [] - } - ] + "indexes": [] }, { "id": "153541F6-C971-4324-B97C-BEF689627B24", @@ -15282,17 +15312,7 @@ } ], "correlations": null, - "indexes": [ - { - "id": "F78B55BE-2EBD-42BE-9171-C5812DDD7355", - "type": "PRIMARY KEY", - "defKey": null, - "defName": null, - "intro": null, - "orderValue": null, - "fields": [] - } - ] + "indexes": [] }, { "id": "C9A36E0B-ECA6-4D3C-AEE5-691F607359F6", @@ -16154,17 +16174,7 @@ } ], "correlations": null, - "indexes": [ - { - "id": "FA0EF49D-FCB7-468E-AB9C-3AF02C54EBB7", - "type": "PRIMARY KEY", - "defKey": null, - "defName": null, - "intro": null, - "orderValue": null, - "fields": [] - } - ] + "indexes": [] }, { "id": "3B83C23F-D49C-4D67-830C-882D91A57927", @@ -38610,87 +38620,7 @@ } ], "correlations": null, - "indexes": [ - { - "id": "7464A52D-5D74-4335-A734-EF69CAFB92B7", - "type": "PRIMARY KEY", - "defKey": null, - "defName": null, - "intro": null, - "orderValue": null, - "fields": [ - { - "id": "BCF42B83-93B0-4BF2-9C9F-E1D706BFF87A", - "fieldId": "BEB2C4A8-2452-426D-9BD6-D6B30BBBA4CD", - "fieldDefKey": "id", - "sortType": null - } - ] - }, - { - "id": "4D3E56EC-9679-4933-A7C7-488D0A2D6716", - "type": "UNIQUE", - "defKey": "uk_bom_code", - "defName": null, - "intro": null, - "orderValue": null, - "fields": [ - { - "id": "AB534261-27D3-44F9-97D6-AF275024A1A3", - "fieldId": "4C08B784-79F5-4C97-919B-C6DA9E7ED12C", - "fieldDefKey": "sn", - "sortType": null - } - ] - }, - { - "id": "35C3702F-1497-4FFB-B4DA-993B12433050", - "type": "UNIQUE", - "defKey": "uk_main_product_version", - "defName": null, - "intro": null, - "orderValue": null, - "fields": [ - { - "id": "ED40DAE8-B94C-4D5F-8E3B-2CF98D3C4FEC", - "fieldId": "8DDF0A45-9E97-4634-8B19-8A5EAB024D1B", - "fieldDefKey": "good_id", - "sortType": null - }, - { - "id": "B20A9387-59C0-4164-97C4-657EF7949C62", - "fieldId": "2A59E344-588C-40BC-9A93-24544D3A78F0", - "fieldDefKey": "bom_ver", - "sortType": null - } - ] - }, - { - "id": "4615E1B5-423B-4369-91CD-2B8378EC24AF", - "type": "NORMAL", - "defKey": "idx_bom_version", - "defName": null, - "intro": null, - "orderValue": null, - "fields": [ - { - "id": "101F8A3D-257D-49A3-A162-7B7C968A5AC6", - "fieldId": "2A59E344-588C-40BC-9A93-24544D3A78F0", - "fieldDefKey": "bom_ver", - "sortType": null - } - ] - }, - { - "id": "F75E6AC1-0810-450E-808C-3D240D910331", - "type": "NORMAL", - "defKey": "idx_status", - "defName": null, - "intro": null, - "orderValue": null, - "fields": [] - } - ] + "indexes": [] }, { "id": "DB9FCE82-2E82-48C7-A39D-33BC31AFE14E", @@ -38766,7 +38696,8 @@ "stndComplianceLevel": null, "updatedUserId": null, "createdUserId": null, - "dictItems": [] + "dictItems": [], + "defKey": "id" }, { "id": "CB76432E-09F2-4715-9CC4-733574551E0A", @@ -38982,11 +38913,11 @@ "defName": "消耗/产出量", "intro": "如果为产出,则此值为 1", "orderValue": null, - "baseDataType": "INT", + "baseDataType": "DECIMAL", "bizDomainType": "", - "dbDataType": "INT", - "dataLen": "", - "numScale": "", + "dbDataType": "DECIMAL", + "dataLen": 17, + "numScale": 3, "primaryKey": null, "notNull": 1, "autoIncrement": null, @@ -39022,52 +38953,6 @@ "updatedUserId": null, "createdUserId": null }, - { - "id": "34BB1EF4-724C-4EBB-9679-502D1E1AC4F8", - "defKey": "percentage", - "defName": "输入、输出占比", - "intro": "", - "baseDataType": "DECIMAL", - "bizDomainType": "", - "dbDataType": "DECIMAL", - "dataLen": 4, - "numScale": 3, - "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": "PASTE" - }, { "id": "BBA40B89-0104-4395-97ED-1AE7459819A5", "defKey": "mandatory", @@ -39116,99 +39001,7 @@ } ], "correlations": null, - "indexes": [ - { - "id": "60681EB4-0C02-462C-BDFE-E6E6F61CFBD2", - "type": "PRIMARY KEY", - "defKey": null, - "defName": null, - "intro": null, - "orderValue": null, - "fields": [ - { - "id": "AC2EBC97-4EE8-4717-BDFA-42B6D5E0394D", - "fieldId": "31400E61-79AC-457C-B902-91176FF7EE82", - "sortType": null - } - ] - }, - { - "id": "E420C8A2-C02F-48CD-A090-E8D832321DD9", - "type": "UNIQUE", - "defKey": "uk_bom_material_relation", - "defName": null, - "intro": null, - "orderValue": null, - "fields": [ - { - "id": "1F0640C2-D7A2-4C44-8284-2D019C3E9A13", - "fieldId": "CB76432E-09F2-4715-9CC4-733574551E0A", - "fieldDefKey": "bom_id", - "sortType": null - }, - { - "id": "D3688A7D-6EFF-4280-8E3B-241759899B66", - "fieldId": "B2000234-BB5B-4283-9163-FBBEF6BC1E05", - "fieldDefKey": "goods_id", - "sortType": null - }, - { - "id": "1F0D7D4C-5E39-4308-A925-5544DBCF58D9", - "fieldId": "952EAE76-2125-4A33-A379-D622AD412542", - "fieldDefKey": "mtl_type", - "sortType": null - } - ] - }, - { - "id": "F0D97ECD-96EB-4B72-BDA5-10ABC7BA9CB8", - "type": "NORMAL", - "defKey": "idx_bom_id", - "defName": null, - "intro": null, - "orderValue": null, - "fields": [ - { - "id": "64BA2F73-D563-4A22-A6DB-642DA45C541D", - "fieldId": "CB76432E-09F2-4715-9CC4-733574551E0A", - "fieldDefKey": "bom_id", - "sortType": null - } - ] - }, - { - "id": "D142EEFA-6061-4E2D-8E1A-DC62B306AE1D", - "type": "NORMAL", - "defKey": "idx_material_id", - "defName": null, - "intro": null, - "orderValue": null, - "fields": [ - { - "id": "1ADE580F-39B4-4B0A-B9D8-7DFC2CA8F7C5", - "fieldId": "B2000234-BB5B-4283-9163-FBBEF6BC1E05", - "fieldDefKey": "goods_id", - "sortType": null - } - ] - }, - { - "id": "3C16927C-FA9B-4F91-B23C-23F44EA29460", - "type": "NORMAL", - "defKey": "idx_relation_type", - "defName": null, - "intro": null, - "orderValue": null, - "fields": [ - { - "id": "67A1F72C-32C7-41F8-B07E-E4DF0C645103", - "fieldId": "952EAE76-2125-4A33-A379-D622AD412542", - "fieldDefKey": "mtl_type", - "sortType": null - } - ] - } - ] + "indexes": [] }, { "id": "B6FB46B6-0669-4946-B687-961098C80A39", @@ -39477,13 +39270,13 @@ "id": "E63791FB-8EB3-40BD-8C34-4E3F5E3FFFA0", "defKey": "std_cycle", "defName": "标准节拍", - "intro": "单位:件/分钟", + "intro": "单位:N/分钟", "orderValue": null, "baseDataType": "DECIMAL", "bizDomainType": "", "dbDataType": "DECIMAL", "dataLen": 10, - "numScale": 2, + "numScale": 3, "primaryKey": null, "notNull": 1, "autoIncrement": null, @@ -39935,81 +39728,7 @@ } ], "correlations": null, - "indexes": [ - { - "id": "DCA24829-3B48-4B04-8FAF-8CF7B9C85684", - "type": "PRIMARY KEY", - "defKey": null, - "defName": null, - "intro": null, - "orderValue": null, - "fields": [ - { - "id": "1C566859-34AB-4093-8FFB-96119035131B", - "fieldId": "EEF212F7-244D-47FD-B2B6-2A5594171786", - "fieldDefKey": "id", - "sortType": null - } - ] - }, - { - "id": "5D684822-F8D7-46B2-AEF2-4D63E12EE525", - "type": "UNIQUE", - "defKey": "uk_operation_code", - "defName": null, - "intro": null, - "orderValue": null, - "fields": [ - { - "id": "0AC99EA5-4247-4E7C-99CB-B147164DCFAF", - "fieldId": "DA04390D-4EBF-4808-8248-7DA8DF5A92D2", - "fieldDefKey": "sn", - "sortType": null - } - ] - }, - { - "id": "4DC5F0DE-E3BF-47E2-A75A-E2958F842F5E", - "type": "NORMAL", - "defKey": "idx_operation_type", - "defName": null, - "intro": null, - "orderValue": null, - "fields": [ - { - "id": "F826573D-E2B6-4CF7-8915-CF7E135EDE29", - "fieldId": "7FD05023-7CEE-4293-8A86-58F405AFB814", - "fieldDefKey": "operation_category", - "sortType": null - } - ] - }, - { - "id": "6473CBCC-2977-49D0-9C02-7FB46F910F41", - "type": "NORMAL", - "defKey": "idx_is_template", - "defName": null, - "intro": null, - "orderValue": null, - "fields": [] - }, - { - "id": "56C24427-58C9-4B88-A76D-D6AEEA48A384", - "type": "NORMAL", - "defKey": "idx_is_key_operation", - "defName": null, - "intro": null, - "orderValue": null, - "fields": [ - { - "id": "997F181C-13F7-40F8-9EB3-72226CAED966", - "fieldId": "718EF98E-8C67-4467-8FEB-B30631A8C56F", - "fieldDefKey": "canuse", - "sortType": null - } - ] - } - ] + "indexes": [] }, { "id": "CDADA174-8ECA-4330-A44B-0DB60C18F25D", @@ -40551,94 +40270,2148 @@ } ], "correlations": null, - "indexes": [ + "indexes": [] + }, + { + "id": "78C76768-76BB-48CA-9938-6ED5F823D153", + "schemaName": null, + "defKey": "mfg_production_plan", + "defName": "生产计划", + "intro": "", + "type": "P", + "fields": [ { - "id": "1D66659D-CA10-41ED-BA41-E0E29CD7FB8F", - "type": "PRIMARY KEY", - "defKey": null, - "defName": null, - "intro": null, - "orderValue": null, - "fields": [ - { - "id": "B1F24B0D-06F6-40DE-BC3D-54B1E6DE4E45", - "fieldId": "A1BDD7A4-5041-4771-BF86-7825D9E18DC5", - "fieldDefKey": "id", - "sortType": null - } - ] + "id": "12729362-3601-4BE5-8728-C31D6F6597DE", + "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": "390F9E53-C2EE-46FE-AFA5-E6BE22CE2CAE", - "type": "UNIQUE", - "defKey": "uk_process_operation_seq", - "defName": null, - "intro": null, - "orderValue": null, - "fields": [ + "id": "BF94B172-A225-42BA-8694-99B46AD1EA3C", + "defKey": "sn", + "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": [], + "fieldTier": "", + "mark": null, + "attr1": "", + "attr2": "", + "attr3": "", + "attr4": "", + "attr5": "", + "attr6": "", + "attr7": "", + "attr8": "", + "attr9": "", + "attr10": "", + "attr11": "", + "attr12": "", + "attr13": "", + "attr14": "", + "attr15": "", + "attr16": "", + "attr17": "", + "attr18": "PDManer", + "attr19": "", + "attr20": "2F3E9658-790E-40CA-9242-7B5F2A4AECDC", + "origin": "UI" + }, + { + "id": "0D46FFCF-3939-42BE-8EBB-9C11D26C465A", + "defKey": "plan_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": "90913594-6065-48D8-AF89-15FF8E35E082", + "defKey": "create_mode", + "defName": "创建方式", + "intro": "", + "baseDataType": "VARCHAR", + "bizDomainType": "", + "dbDataType": "VARCHAR", + "dataLen": 16, + "numScale": "", + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "create_mode", + "stndFieldId": "", + "stndDictKey": "create_mode", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "Manual", + "dictItems": [ { - "id": "1B25E693-7060-489D-BAC7-4CA410673876", - "fieldId": "55D1724F-7B0B-4FC6-A121-D8C9E026A0FE", - "fieldDefKey": "craft_id", - "sortType": null + "itemKey": "AI", + "itemName": "AI 创建", + "parentKey": "", + "intro": "", + "id": "372F1C98-B6C8-4EBD-A003-281A0DC6D36C" }, { - "id": "F9E80BBE-BB3A-4BF3-B29F-EE588EB1C4DA", - "fieldId": "7A724CA7-C201-4B61-A9E5-FF3228453140", - "fieldDefKey": "step", - "sortType": null + "itemKey": "RenGong", + "itemName": "人工创建", + "parentKey": "", + "intro": "", + "id": "BF0CA888-AC86-4420-B389-88A88284B86D" } - ] + ], + "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": "29C072EC-B72F-47D4-9364-BA911F7516FC", - "type": "NORMAL", - "defKey": "idx_process_id", - "defName": null, - "intro": null, - "orderValue": null, - "fields": [ + "id": "1E28DA76-F369-40EF-B9AF-D50A7449AF40", + "defKey": "planning_cycle_start_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": "1A5A3E21-61D2-4840-9B40-810853270E03", + "defKey": "planning_cycle_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": "B86EC95D-103E-4704-A378-6701652139D4", + "defKey": "daily_count", + "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": "5621DDA2-EC3D-4D82-92D7-1FE5DBD0E328", + "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": [ { - "id": "03641BEA-E32D-4E5B-887A-1E4D8C086C59", - "fieldId": "55D1724F-7B0B-4FC6-A121-D8C9E026A0FE", - "fieldDefKey": "craft_id", - "sortType": null - } - ] - }, - { - "id": "D4B9CF9E-A6B1-4512-ABEA-A35645E53C4C", - "type": "NORMAL", - "defKey": "idx_operation_id", - "defName": null, - "intro": null, - "orderValue": null, - "fields": [] - }, - { - "id": "C626A810-96D6-469A-970C-8BEFA2E27232", - "type": "NORMAL", - "defKey": "idx_operation_seq", - "defName": null, - "intro": null, - "orderValue": null, - "fields": [ + "itemKey": "DaiZhiXing", + "itemName": "待执行", + "parentKey": "", + "intro": "", + "id": "781E9A57-8FB7-4D44-9CA0-1DB836BCC2FD" + }, { - "id": "5243A80B-7783-426B-BACB-048AE174E957", - "fieldId": "7A724CA7-C201-4B61-A9E5-FF3228453140", - "fieldDefKey": "step", - "sortType": null + "itemKey": "ZhiXingZhong", + "itemName": "执行中", + "parentKey": "", + "intro": "", + "id": "DB8E76CA-21CE-4B1E-95D4-A57534E40E92" + }, + { + "itemKey": "YiWanCheng", + "itemName": "已完成", + "parentKey": "", + "intro": "", + "id": "C68C27DC-9927-4F55-B71A-8DED55F6743C" + }, + { + "itemKey": "YiQuXiao", + "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": "8C78F09B-314C-4F5D-8DF2-8C22682A8771", + "defKey": "craft_id", + "defName": "工艺 Id", + "intro": null, + "baseDataType": "BIGINT", + "bizDomainType": "", + "dbDataType": "BIGINT", + "dataLen": null, + "numScale": null, + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": null, + "stndFieldId": null, + "stndDictKey": null, + "stndFieldKey": null, + "stndComplianceLevel": null, + "stndComplianceType": null, + "dictFrom": "", + "dictItems": null, + "fieldTier": "", + "mark": null, + "attr1": null, + "attr2": null, + "attr3": null, + "attr4": null, + "attr5": null, + "attr6": null, + "attr7": null, + "attr8": null, + "attr9": null, + "attr10": null, + "attr11": null, + "attr12": null, + "attr13": null, + "attr14": null, + "attr15": null, + "attr16": null, + "attr17": null, + "attr18": null, + "attr19": null, + "attr20": null, + "origin": "PASTE" + }, + { + "id": "D3BD86B3-8BCC-4410-A133-7E7501A36FC9", + "defKey": "quantity", + "defName": "计划产出", + "intro": "", + "baseDataType": "DECIMAL", + "bizDomainType": "", + "dbDataType": "DECIMAL", + "dataLen": 17, + "numScale": 3, + "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": "1C388F19-9E35-4120-9B62-801BEB8D10FE", + "defKey": "avg_quantity", + "defName": "每日平均产出", + "intro": "", + "baseDataType": "DOUBLE", + "bizDomainType": "", + "dbDataType": "DOUBLE", + "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": "E7F3CB92-4309-4B93-8A7A-1D7CE71AB853", + "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": "A22B0A61-5A0D-4DD7-A176-8B5C1578510D", + "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": "82C27584-A9B6-4814-841B-3E1E9CE65D13", + "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": "5FC96E8E-A634-4582-AA3E-7E7C726648B3", + "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": "BC017547-8B3E-41DC-A67A-E8A72BFC6D17", + "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": "0D72401C-EA42-4DE0-B0F1-D05DAFF7D265", + "schemaName": null, + "defKey": "mfg_production_plan_detail", + "defName": "生产计划物料详情", + "intro": "", + "type": "P", + "fields": [ + { + "id": "B4E24850-37B1-46C3-BCD2-9700E3611A12", + "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": "E9392774-CBCD-4EDB-9B26-797E6F3D253D", + "defKey": "plan_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": "8DF3D3FF-9B26-435D-AF58-2A5338D3C62A", + "defKey": "basis", + "defName": "是否为计算依据", + "intro": "0-->否、1-->是", + "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": "8B233497-264C-4142-8221-4CD8995862DD", + "defKey": "goods_id", + "defName": "产品 Id", + "intro": "gds_goods.id", + "baseDataType": "BIGINT", + "bizDomainType": "", + "dbDataType": "BIGINT", + "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": "6CA9BB0E-D699-401D-822D-7CDD2F18D687", + "defKey": "mtl_type", + "defName": "物料类型", + "intro": null, + "baseDataType": "VARCHAR", + "bizDomainType": "", + "dbDataType": "VARCHAR", + "dataLen": 32, + "numScale": null, + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": null, + "stndDictId": "mtl_type", + "stndFieldId": null, + "stndDictKey": "mtl_type", + "stndFieldKey": null, + "stndComplianceLevel": null, + "stndComplianceType": null, + "dictFrom": "Manual", + "dictItems": [ + { + "itemKey": "YuanLiao", + "itemName": "原料", + "parentKey": "", + "intro": "", + "id": "3D669B85-F749-4758-ACBD-1B21E3246223" + }, + { + "itemKey": "FuChanPin", + "itemName": "副产品", + "parentKey": "", + "intro": "", + "id": "9E951F55-07DC-46A9-99EE-D963E546D3E5" + }, + { + "itemKey": "ZhuChanPin", + "itemName": "主产品", + "parentKey": "", + "intro": "", + "id": "3D3E2A26-1857-4D6A-A5AC-6A0701BFB664" + } + ], + "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": "2C219BA5-5D38-4AB1-A104-1E89A932AFCE", + "defKey": "chu", + "defName": "是否为产出", + "intro": "0-->否、1-->是", + "baseDataType": "TINYINT", + "bizDomainType": "", + "dbDataType": "TINYINT", + "dataLen": 1, + "numScale": "", + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "", + "stndFieldId": null, + "stndDictKey": "", + "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": "812D605D-9A20-4F5F-A228-FC8648A50F7C", + "defKey": "quantity", + "defName": "消耗/产出量", + "intro": "", + "baseDataType": "DECIMAL", + "bizDomainType": "", + "dbDataType": "DECIMAL", + "dataLen": 17, + "numScale": 3, + "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": "8EEA51B9-25ED-43F1-94EC-CEB0A305E19B", + "defKey": "mandatory", + "defName": "是否必需", + "intro": "0-->否、1-->是", + "baseDataType": "TINYINT", + "bizDomainType": "", + "dbDataType": "TINYINT", + "dataLen": 1, + "numScale": null, + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "1", + "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" + } + ], + "indexes": [] + }, + { + "id": "38F860DC-AECC-4D1C-ADC1-EF9503EA431F", + "schemaName": null, + "defKey": "mfg_production_plan_daily_detail", + "defName": "生产计划每日物料详情", + "intro": "", + "type": "P", + "fields": [ + { + "id": "D76FC5A7-8FE9-486F-B922-DE5F8C49E444", + "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": "8F08405D-2956-4D20-B7F2-287F2D4B34DB", + "defKey": "plan_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": "F765BD23-765C-4D71-8971-A8E7E97135CB", + "defKey": "daily", + "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": "25937BC8-0C14-4727-84FB-FE3F06973501", + "defKey": "basis", + "defName": "是否为计算依据", + "intro": "0-->否、1-->是", + "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": "D2E008E1-D111-4FC3-A768-9EFDDAB33BE8", + "defKey": "goods_id", + "defName": "产品 Id", + "intro": "gds_goods.id", + "baseDataType": "BIGINT", + "bizDomainType": "", + "dbDataType": "BIGINT", + "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": "D2A7C508-89D8-447D-B416-8B3D4BB004C8", + "defKey": "mtl_type", + "defName": "物料类型", + "intro": null, + "baseDataType": "VARCHAR", + "bizDomainType": "", + "dbDataType": "VARCHAR", + "dataLen": 32, + "numScale": null, + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": null, + "stndDictId": "mtl_type", + "stndFieldId": null, + "stndDictKey": "mtl_type", + "stndFieldKey": null, + "stndComplianceLevel": null, + "stndComplianceType": null, + "dictFrom": "Manual", + "dictItems": [ + { + "itemKey": "YuanLiao", + "itemName": "原料", + "parentKey": "", + "intro": "", + "id": "3D669B85-F749-4758-ACBD-1B21E3246223" + }, + { + "itemKey": "FuChanPin", + "itemName": "副产品", + "parentKey": "", + "intro": "", + "id": "9E951F55-07DC-46A9-99EE-D963E546D3E5" + }, + { + "itemKey": "ZhuChanPin", + "itemName": "主产品", + "parentKey": "", + "intro": "", + "id": "3D3E2A26-1857-4D6A-A5AC-6A0701BFB664" + } + ], + "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": "618503C9-04FE-48AF-BD19-05D495B0176B", + "defKey": "chu", + "defName": "是否为产出", + "intro": "0-->否、1-->是", + "baseDataType": "TINYINT", + "bizDomainType": "", + "dbDataType": "TINYINT", + "dataLen": 1, + "numScale": "", + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "", + "stndFieldId": null, + "stndDictKey": "", + "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": "048F17FB-BA0D-4890-8295-FD9D63F2116A", + "defKey": "quantity", + "defName": "消耗/产出量", + "intro": "", + "baseDataType": "DECIMAL", + "bizDomainType": "", + "dbDataType": "DECIMAL", + "dataLen": 17, + "numScale": 3, + "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": "7555DF9A-1EA3-4BDE-9A34-71C3E35C2836", + "defKey": "mandatory", + "defName": "是否必需", + "intro": "0-->否、1-->是", + "baseDataType": "TINYINT", + "bizDomainType": "", + "dbDataType": "TINYINT", + "dataLen": 1, + "numScale": null, + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "1", + "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" + } + ], + "indexes": [], + "origin": "PASTE" + }, + { + "id": "A3717326-9BB6-497C-B379-114B5DDB1CFF", + "schemaName": null, + "defKey": "mfg_production_plan_daily_report", + "defName": "生产计划每日报告", + "intro": "", + "type": "P", + "fields": [ + { + "id": "DABF9CF1-87E4-4385-8EAF-5D577BE4BF88", + "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": "B3149793-7DBF-4C2E-A225-0E7D5DC4D9EC", + "defKey": "plan_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": "08B6AAA9-C9F5-4B56-BAA7-5DF786F6F225", + "defKey": "daily", + "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": "0D3D12EF-A43B-4B31-9211-2E9702EE5918", + "defKey": "goods_id", + "defName": "产品 Id", + "intro": "gds_goods.id", + "baseDataType": "BIGINT", + "bizDomainType": "", + "dbDataType": "BIGINT", + "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": "40DAE232-B72F-4E74-A7E6-725433F50B06", + "defKey": "mtl_type", + "defName": "物料类型", + "intro": null, + "baseDataType": "VARCHAR", + "bizDomainType": "", + "dbDataType": "VARCHAR", + "dataLen": 32, + "numScale": null, + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": null, + "stndDictId": "mtl_type", + "stndFieldId": null, + "stndDictKey": "mtl_type", + "stndFieldKey": null, + "stndComplianceLevel": null, + "stndComplianceType": null, + "dictFrom": "Manual", + "dictItems": [ + { + "itemKey": "YuanLiao", + "itemName": "原料", + "parentKey": "", + "intro": "", + "id": "3D669B85-F749-4758-ACBD-1B21E3246223" + }, + { + "itemKey": "FuChanPin", + "itemName": "副产品", + "parentKey": "", + "intro": "", + "id": "9E951F55-07DC-46A9-99EE-D963E546D3E5" + }, + { + "itemKey": "ZhuChanPin", + "itemName": "主产品", + "parentKey": "", + "intro": "", + "id": "3D3E2A26-1857-4D6A-A5AC-6A0701BFB664" + } + ], + "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": "0FB53825-4816-42B4-954D-9B6C5C788EA2", + "defKey": "chu", + "defName": "是否为产出", + "intro": "0-->否、1-->是", + "baseDataType": "TINYINT", + "bizDomainType": "", + "dbDataType": "TINYINT", + "dataLen": 1, + "numScale": "", + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "", + "stndFieldId": null, + "stndDictKey": "", + "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": "95235114-F37D-4806-990C-9BB40768BB1C", + "defKey": "quantity", + "defName": "消耗/产出量", + "intro": "", + "baseDataType": "DECIMAL", + "bizDomainType": "", + "dbDataType": "DECIMAL", + "dataLen": 17, + "numScale": 3, + "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": "0C901105-7EAB-4BEF-8E1C-EEBEB8B9AFA0", + "defKey": "actual_quantity", + "defName": "实际消耗/产出量", + "intro": "", + "baseDataType": "DECIMAL", + "bizDomainType": "", + "dbDataType": "DECIMAL", + "dataLen": 17, + "numScale": 3, + "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": "UI" + }, + { + "id": "D73D6C3A-9D7B-42FA-8D53-95F2303F6252", + "defKey": "deviation_rate", + "defName": "偏差率", + "intro": "", + "baseDataType": "DECIMAL", + "bizDomainType": "", + "dbDataType": "DECIMAL", + "dataLen": 5, + "numScale": 2, + "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": "UI" + }, + { + "id": "F0AB2288-D530-4730-99BC-7A98A5FB70F4", + "defKey": "mandatory", + "defName": "是否必需", + "intro": "0-->否、1-->是", + "baseDataType": "TINYINT", + "bizDomainType": "", + "dbDataType": "TINYINT", + "dataLen": 1, + "numScale": null, + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "1", + "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" + } + ], + "indexes": [], + "origin": "PASTE" } ], "diagrams": [], "readonly": false, "allowWs": false }, - "updateTime": 1766414148421, - "signature": "503923e6daba3b922dba9e453fdb4f42", + "updateTime": 1766456606022, + "signature": "47b637eb5a56075835ec85decf8c0e31", "branchId": "1111" } \ No newline at end of file