diff --git a/njzscloud-svr/src/main/java/com/njzscloud/dispose/finance/controller/ExpenseItemController.java b/njzscloud-svr/src/main/java/com/njzscloud/dispose/finance/controller/ExpenseItemController.java index 95a13da..7ed0ac6 100644 --- a/njzscloud-svr/src/main/java/com/njzscloud/dispose/finance/controller/ExpenseItemController.java +++ b/njzscloud-svr/src/main/java/com/njzscloud/dispose/finance/controller/ExpenseItemController.java @@ -4,6 +4,8 @@ import com.njzscloud.common.core.utils.R; import com.njzscloud.common.mp.support.PageParam; import com.njzscloud.common.mp.support.PageResult; import com.njzscloud.dispose.finance.pojo.entity.ExpenseItemEntity; +import com.njzscloud.dispose.finance.pojo.param.AddExpenseItemParam; +import com.njzscloud.dispose.finance.pojo.param.ModifyExpenseItemParam; import com.njzscloud.dispose.finance.service.ExpenseItemService; import lombok.RequiredArgsConstructor; import lombok.extern.slf4j.Slf4j; @@ -27,8 +29,8 @@ public class ExpenseItemController { * 新增 */ @PostMapping("/add") - public R add(@RequestBody ExpenseItemEntity expenseItemEntity) { - expenseItemService.add(expenseItemEntity); + public R add(@RequestBody AddExpenseItemParam addExpenseItemParam) { + expenseItemService.add(addExpenseItemParam); return R.success(); } @@ -36,8 +38,8 @@ public class ExpenseItemController { * 修改 */ @PostMapping("/modify") - public R modify(@RequestBody ExpenseItemEntity expenseItemEntity) { - expenseItemService.modify(expenseItemEntity); + public R modify(@RequestBody ModifyExpenseItemParam modifyExpenseItemParam) { + expenseItemService.modify(modifyExpenseItemParam); return R.success(); } diff --git a/njzscloud-svr/src/main/java/com/njzscloud/dispose/finance/pojo/param/ModifyExpenseItemParam.java b/njzscloud-svr/src/main/java/com/njzscloud/dispose/finance/pojo/param/ModifyExpenseItemParam.java new file mode 100644 index 0000000..2ca8b40 --- /dev/null +++ b/njzscloud-svr/src/main/java/com/njzscloud/dispose/finance/pojo/param/ModifyExpenseItemParam.java @@ -0,0 +1,98 @@ +package com.njzscloud.dispose.finance.pojo.param; + +import com.njzscloud.dispose.finance.constant.ExpenseItemCategory; +import com.njzscloud.dispose.finance.constant.ExpenseStrategy; +import com.njzscloud.dispose.finance.constant.Payer; +import com.njzscloud.dispose.finance.pojo.entity.ScopeStrategyConfig; +import lombok.Getter; +import lombok.Setter; +import lombok.ToString; +import lombok.experimental.Accessors; + +import java.math.BigDecimal; + +@Getter +@Setter +@ToString +@Accessors(chain = true) +public class ModifyExpenseItemParam { + /** + * Id + */ + private Long id; + + /** + * 收费项目类型,QiTa-->其他、ChanPin-->产品、YunFei-->运费 + */ + private ExpenseItemCategory expenseItemCategory; + + /** + * 付费项名称 + */ + private String expenseItemName; + + /** + * 计费策略;字典代码:expense_strategy + */ + private ExpenseStrategy expenseStrategy; + + /** + * 计量单位;字典代码:unit + */ + private String unit; + + /** + * 税率 + */ + private BigDecimal taxRate; + + /** + * 付费方;字典代码:payer + */ + private Payer payer; + + /** + * 单价;单位:元,弹性模式-->每档价格 + */ + private BigDecimal unitPrice; + + /** + * 起步价;单位:元,<= 起步量 固定费用 + */ + private BigDecimal initialPrice; + + /** + * 起步量 + */ + private Integer initialQuantity; + + /** + * 每档的量 + */ + private Integer everyQuantity; + + /** + * 适用用户;结构类型:{strategy: Wu | ZhiDing | SuoYou,ids:long[]} + */ + private ScopeStrategyConfig userScope; + + /** + * 适用站点;结构类型:{strategy: Wu | ZhiDing | SuoYou,ids:long[]} + */ + private ScopeStrategyConfig stationScope; + + /** + * 适用产品;结构类型:{strategy: Wu | ZhiDing | SuoYou,ids:long[]} + */ + private ScopeStrategyConfig goodsScope; + /** + * 产品 Id + */ + private Long goodsId; + + /** + * 备注 + */ + private String memo; + +} diff --git a/njzscloud-svr/src/main/java/com/njzscloud/dispose/finance/service/ExpenseItemService.java b/njzscloud-svr/src/main/java/com/njzscloud/dispose/finance/service/ExpenseItemService.java index 7c0bfe7..e2c0c9e 100644 --- a/njzscloud-svr/src/main/java/com/njzscloud/dispose/finance/service/ExpenseItemService.java +++ b/njzscloud-svr/src/main/java/com/njzscloud/dispose/finance/service/ExpenseItemService.java @@ -5,6 +5,7 @@ import com.njzscloud.common.mp.support.PageParam; import com.njzscloud.common.mp.support.PageResult; import com.njzscloud.dispose.finance.pojo.entity.ExpenseItemEntity; import com.njzscloud.dispose.finance.pojo.param.AddExpenseItemParam; +import com.njzscloud.dispose.finance.pojo.param.ModifyExpenseItemParam; import java.util.List; @@ -22,7 +23,7 @@ public interface ExpenseItemService extends IService { /** * 修改 */ - void modify(ExpenseItemEntity expenseItemEntity); + void modify(ModifyExpenseItemParam modifyExpenseItemParam); /** * 删除 diff --git a/njzscloud-svr/src/main/java/com/njzscloud/dispose/finance/service/impl/ExpenseItemServiceImpl.java b/njzscloud-svr/src/main/java/com/njzscloud/dispose/finance/service/impl/ExpenseItemServiceImpl.java index 5d59366..99bfdc3 100644 --- a/njzscloud-svr/src/main/java/com/njzscloud/dispose/finance/service/impl/ExpenseItemServiceImpl.java +++ b/njzscloud-svr/src/main/java/com/njzscloud/dispose/finance/service/impl/ExpenseItemServiceImpl.java @@ -8,6 +8,7 @@ import com.njzscloud.common.mp.support.PageResult; import com.njzscloud.dispose.finance.mapper.ExpenseItemMapper; import com.njzscloud.dispose.finance.pojo.entity.ExpenseItemEntity; import com.njzscloud.dispose.finance.pojo.param.AddExpenseItemParam; +import com.njzscloud.dispose.finance.pojo.param.ModifyExpenseItemParam; import com.njzscloud.dispose.finance.service.ExpenseItemService; import lombok.RequiredArgsConstructor; import lombok.extern.slf4j.Slf4j; @@ -38,8 +39,8 @@ public class ExpenseItemServiceImpl extends ServiceImpl modify(@RequestBody GoodsEntity goodsEntity) { - goodsService.modify(goodsEntity); + public R modify(@RequestBody ModifyGoodsParam modifyGoodsParam) { + goodsService.modify(modifyGoodsParam); return R.success(); } 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 new file mode 100644 index 0000000..a4e6f52 --- /dev/null +++ b/njzscloud-svr/src/main/java/com/njzscloud/dispose/goods/pojo/param/ModifyGoodsParam.java @@ -0,0 +1,176 @@ +package com.njzscloud.dispose.goods.pojo.param; + +import com.njzscloud.dispose.finance.constant.ExpenseItemCategory; +import com.njzscloud.dispose.finance.constant.ExpenseStrategy; +import com.njzscloud.dispose.finance.constant.Payer; +import com.njzscloud.dispose.finance.pojo.entity.ScopeStrategyConfig; +import lombok.Getter; +import lombok.Setter; +import lombok.ToString; +import lombok.experimental.Accessors; + +import java.math.BigDecimal; + +/** + * 产品 + * + * @author ljw + */ +@Getter +@Setter +@ToString +@Accessors(chain = true) +public class ModifyGoodsParam { + /** + * 产品 Id + */ + private Long id; + + /** + * 产品类型 Id + */ + private Long goodsCategoryId; + + /** + * 商品编码 + */ + private String sn; + + /** + * 产品名称 + */ + private String goodsName; + + /** + * 规格 + */ + private String specParams; + + /** + * 图片 + */ + private String picture; + + /** + * 计量单位;字典代码:unit + */ + private String unit; + + /** + * 是否为成品;0-->否、1-->是 + */ + private Boolean fg; + + /** + * 是否为半成品;0-->否、1-->是 + */ + private Boolean sfg; + + /** + * 是否为原料;0-->否、1-->是 + */ + private Boolean rg; + + /** + * 排序 + */ + private Integer sort; + + /** + * 是否可用;0-->否、1-->是 + */ + private Boolean canuse; + + /** + * 备注 + */ + private String memo; + + /** + * 付费配置 + */ + private ExpenseItem expenseItem; + + @Getter + @Setter + @ToString + @Accessors(chain = true) + public static class ExpenseItem { + /** + * 付费项 Id + */ + private Long id; + + + /** + * 收费项目类型,QiTa-->其他、ChanPin-->产品、YunFei-->运费 + */ + private ExpenseItemCategory expenseItemCategory; + + /** + * 计费策略;字典代码:expense_strategy + */ + private ExpenseStrategy expenseStrategy; + + /** + * 计量单位;字典代码:unit + */ + private String unit; + + /** + * 税率 + */ + private BigDecimal taxRate; + + /** + * 付费方;字典代码:payer + */ + private Payer payer; + + /** + * 单价;单位:元,弹性模式-->每档价格 + */ + private BigDecimal unitPrice; + + /** + * 起步价;单位:元,<= 起步量 固定费用 + */ + private BigDecimal initialPrice; + + /** + * 起步量 + */ + private Integer initialQuantity; + + /** + * 每档的量 + */ + private Integer everyQuantity; + + /** + * 适用用户;结构类型:{strategy: Wu | ZhiDing | SuoYou,ids:long[]} + */ + private ScopeStrategyConfig userScope; + + /** + * 适用站点;结构类型:{strategy: Wu | ZhiDing | SuoYou,ids:long[]} + */ + private ScopeStrategyConfig stationScope; + + /** + * 适用产品;结构类型:{strategy: Wu | ZhiDing | SuoYou,ids:long[]} + */ + private ScopeStrategyConfig goodsScope; + + /** + * 备注 + */ + private String memo; + /** + * 产品 Id + */ + private Long goodsId; + } +} + + diff --git a/njzscloud-svr/src/main/java/com/njzscloud/dispose/goods/service/GoodsService.java b/njzscloud-svr/src/main/java/com/njzscloud/dispose/goods/service/GoodsService.java index 5aa56e6..00d2d74 100644 --- a/njzscloud-svr/src/main/java/com/njzscloud/dispose/goods/service/GoodsService.java +++ b/njzscloud-svr/src/main/java/com/njzscloud/dispose/goods/service/GoodsService.java @@ -5,6 +5,7 @@ import com.njzscloud.common.mp.support.PageParam; import com.njzscloud.common.mp.support.PageResult; import com.njzscloud.dispose.goods.pojo.entity.GoodsEntity; import com.njzscloud.dispose.goods.pojo.param.AddGoodsParam; +import com.njzscloud.dispose.goods.pojo.param.ModifyGoodsParam; import java.util.List; @@ -16,7 +17,7 @@ public interface GoodsService extends IService { void add(AddGoodsParam addGoodsParam); - void modify(GoodsEntity goodsEntity); + void modify(ModifyGoodsParam modifyGoodsParam); void del(List ids); diff --git a/njzscloud-svr/src/main/java/com/njzscloud/dispose/goods/service/impl/GoodsServiceImpl.java b/njzscloud-svr/src/main/java/com/njzscloud/dispose/goods/service/impl/GoodsServiceImpl.java index 99d82cd..2994708 100644 --- a/njzscloud-svr/src/main/java/com/njzscloud/dispose/goods/service/impl/GoodsServiceImpl.java +++ b/njzscloud-svr/src/main/java/com/njzscloud/dispose/goods/service/impl/GoodsServiceImpl.java @@ -10,10 +10,12 @@ import com.njzscloud.common.sn.support.SnUtil; import com.njzscloud.dispose.finance.constant.ExpenseItemCategory; import com.njzscloud.dispose.finance.pojo.entity.ExpenseItemEntity; import com.njzscloud.dispose.finance.pojo.param.AddExpenseItemParam; +import com.njzscloud.dispose.finance.pojo.param.ModifyExpenseItemParam; import com.njzscloud.dispose.finance.service.ExpenseItemService; import com.njzscloud.dispose.goods.mapper.GoodsMapper; import com.njzscloud.dispose.goods.pojo.entity.GoodsEntity; import com.njzscloud.dispose.goods.pojo.param.AddGoodsParam; +import com.njzscloud.dispose.goods.pojo.param.ModifyGoodsParam; import com.njzscloud.dispose.goods.service.GoodsService; import lombok.RequiredArgsConstructor; import lombok.extern.slf4j.Slf4j; @@ -41,7 +43,7 @@ public class GoodsServiceImpl extends ServiceImpl impl addGoodsParam.setSn(sn); GoodsEntity goodsEntity = BeanUtil.copyProperties(addGoodsParam, GoodsEntity.class); this.save(goodsEntity); - // 付费项新增 + // 付费项 AddGoodsParam.ExpenseItem expenseItem = addGoodsParam.getExpenseItem(); String goodsName = addGoodsParam.getGoodsName(); @@ -55,9 +57,17 @@ public class GoodsServiceImpl extends ServiceImpl impl @Override @Transactional(rollbackFor = Exception.class) - public void modify(GoodsEntity goodsEntity) { + public void modify(ModifyGoodsParam modifyGoodsParam) { + GoodsEntity goodsEntity = BeanUtil.copyProperties(modifyGoodsParam, GoodsEntity.class).setSn(null); this.updateById(goodsEntity); - expenseItemService.updateById(goodsEntity.getExpenseItem()); + // 付费项 + ModifyGoodsParam.ExpenseItem expenseItem = modifyGoodsParam.getExpenseItem(); + + String goodsName = modifyGoodsParam.getGoodsName(); + ModifyExpenseItemParam modifyExpenseItemParam = BeanUtil.copyProperties(expenseItem, ModifyExpenseItemParam.class) + .setExpenseItemName(goodsName) + .setMemo(goodsName + "费用配置"); + expenseItemService.modify(modifyExpenseItemParam); } @Override diff --git a/z-doc/pdma/njzscloud-dispose.pdma b/z-doc/pdma/njzscloud-dispose.pdma index a661581..5bc6c0b 100644 --- a/z-doc/pdma/njzscloud-dispose.pdma +++ b/z-doc/pdma/njzscloud-dispose.pdma @@ -3155,14 +3155,29 @@ "children": null, "entityRefs": [ { - "refObjectId": "0B223F50-E8AF-40F4-8444-1B22D1171407", + "refObjectId": "F911D1E8-57E3-4C1B-8F65-20ED00A70A76", "refObjectType": "P", "orderValue": 1 }, { - "refObjectId": "8597F6A3-0AB9-4885-BC3A-72C3ACC4B756", - "refObjectType": "P", + "refObjectId": "DB9FCE82-2E82-48C7-A39D-33BC31AFE14E", + "refObjectType": "E", "orderValue": 2 + }, + { + "refObjectId": "0B223F50-E8AF-40F4-8444-1B22D1171407", + "refObjectType": "P", + "orderValue": 3 + }, + { + "refObjectId": "B6FB46B6-0669-4946-B687-961098C80A39", + "refObjectType": "E", + "orderValue": 4 + }, + { + "refObjectId": "CDADA174-8ECA-4330-A44B-0DB60C18F25D", + "refObjectType": "E", + "orderValue": 5 } ], "diagramRefs": [], @@ -3519,89 +3534,104 @@ "orderValue": 33 }, { - "refObjectId": "8597F6A3-0AB9-4885-BC3A-72C3ACC4B756", + "refObjectId": "1A2D551C-214D-469D-B0C5-917C29D725B2", "refObjectType": "P", "orderValue": 34 }, { - "refObjectId": "1A2D551C-214D-469D-B0C5-917C29D725B2", + "refObjectId": "DECB0762-9BE3-429A-81F7-891B7C960B04", "refObjectType": "P", "orderValue": 35 }, { - "refObjectId": "DECB0762-9BE3-429A-81F7-891B7C960B04", + "refObjectId": "718C57B0-4799-48E1-8651-57527A3BFF8B", "refObjectType": "P", "orderValue": 36 }, { - "refObjectId": "718C57B0-4799-48E1-8651-57527A3BFF8B", + "refObjectId": "F13139EC-3554-4C1E-8C09-1A6C238C539A", "refObjectType": "P", "orderValue": 37 }, { - "refObjectId": "F13139EC-3554-4C1E-8C09-1A6C238C539A", + "refObjectId": "38B910DC-4D79-448E-9EA4-CED1E92B03DE", "refObjectType": "P", "orderValue": 38 }, { - "refObjectId": "38B910DC-4D79-448E-9EA4-CED1E92B03DE", + "refObjectId": "F573B178-BE6E-48AB-8AF0-6121E7320EB9", "refObjectType": "P", "orderValue": 39 }, { - "refObjectId": "F573B178-BE6E-48AB-8AF0-6121E7320EB9", + "refObjectId": "DF643AC9-1A78-408B-9F20-9C659BC475FA", "refObjectType": "P", "orderValue": 40 }, { - "refObjectId": "DF643AC9-1A78-408B-9F20-9C659BC475FA", + "refObjectId": "167D299F-EC34-4B05-97F9-C2A0F2CD034E", "refObjectType": "P", "orderValue": 41 }, { - "refObjectId": "167D299F-EC34-4B05-97F9-C2A0F2CD034E", + "refObjectId": "14DAB3C1-5814-401B-AC62-E15036FE31F6", "refObjectType": "P", "orderValue": 42 }, { - "refObjectId": "14DAB3C1-5814-401B-AC62-E15036FE31F6", + "refObjectId": "5374D175-115A-42B6-A68B-DCD30D953B7E", "refObjectType": "P", "orderValue": 43 }, { - "refObjectId": "5374D175-115A-42B6-A68B-DCD30D953B7E", + "refObjectId": "DEBAD01B-B6FF-4EFB-9B03-29EB31F2E5CF", "refObjectType": "P", "orderValue": 44 }, { - "refObjectId": "DEBAD01B-B6FF-4EFB-9B03-29EB31F2E5CF", + "refObjectId": "0B25C484-FFCC-4583-8DE5-26402A7104BA", "refObjectType": "P", "orderValue": 45 }, { - "refObjectId": "0B25C484-FFCC-4583-8DE5-26402A7104BA", + "refObjectId": "FC24E76A-8EA4-4A60-BC0F-B0B5AE154AFE", "refObjectType": "P", "orderValue": 46 }, { - "refObjectId": "FC24E76A-8EA4-4A60-BC0F-B0B5AE154AFE", + "refObjectId": "22ACAD57-2008-4E85-B7E6-A31C50221F49", "refObjectType": "P", "orderValue": 47 }, { - "refObjectId": "22ACAD57-2008-4E85-B7E6-A31C50221F49", + "refObjectId": "3A0C2179-8576-40CB-8A4D-647318E432BC", "refObjectType": "P", "orderValue": 48 }, { - "refObjectId": "3A0C2179-8576-40CB-8A4D-647318E432BC", + "refObjectId": "1DF0083F-E75C-45CA-BCCF-62018CC23FC3", "refObjectType": "P", "orderValue": 49 }, { - "refObjectId": "1DF0083F-E75C-45CA-BCCF-62018CC23FC3", + "refObjectId": "F911D1E8-57E3-4C1B-8F65-20ED00A70A76", "refObjectType": "P", "orderValue": 50 + }, + { + "refObjectId": "DB9FCE82-2E82-48C7-A39D-33BC31AFE14E", + "refObjectType": "P", + "orderValue": 51 + }, + { + "refObjectId": "B6FB46B6-0669-4946-B687-961098C80A39", + "refObjectType": "P", + "orderValue": 52 + }, + { + "refObjectId": "CDADA174-8ECA-4330-A44B-0DB60C18F25D", + "refObjectType": "P", + "orderValue": 53 } ], "diagramRefs": [] @@ -20248,6 +20278,52 @@ "attr20": "", "origin": "UI" }, + { + "id": "0FCED996-9E91-423E-AE4D-04BA47D94EB5", + "defKey": "goods_id", + "defName": "产品 Id", + "intro": "", + "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": "B02465CC-8EBC-4387-832D-C64B9ABC602F", "defKey": "craft_name", @@ -20295,142 +20371,111 @@ "origin": "UI" }, { - "id": "B01F78EC-1B7F-4D60-8B1C-37A3B816107D", - "defKey": "major", - "defName": "主版本号", + "id": "317417F7-8BB8-4BEE-8134-6054AC0A8A76", + "defKey": "craft_ver", + "defName": "工艺版本号", "intro": "", - "baseDataType": "INT", + "baseDataType": "VARCHAR", "bizDomainType": "", - "dbDataType": "INT", - "dataLen": "", - "numScale": "", + "dbDataType": "VARCHAR", + "dataLen": 32, + "numScale": null, "primaryKey": 0, "notNull": 1, "autoIncrement": 0, - "defaultValue": "", - "stndDictId": "", - "stndFieldId": "", - "stndDictKey": "", - "stndFieldKey": "", - "stndComplianceLevel": "", - "stndComplianceType": "", + "defaultValue": null, + "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": "D05BCB6F-D34F-47B2-AE67-A14685E5752C", - "defKey": "minor", - "defName": "次版本号", - "intro": "", - "baseDataType": "INT", + "id": "808CFCDA-0AAC-4084-BFA8-07FE1EF25C2F", + "defKey": "craft_category", + "defName": "工艺类型", + "intro": "字典编码:craft_category", + "baseDataType": "VARCHAR", "bizDomainType": "", - "dbDataType": "INT", - "dataLen": "", - "numScale": "", + "dbDataType": "VARCHAR", + "dataLen": 32, + "numScale": null, "primaryKey": 0, "notNull": 1, "autoIncrement": 0, - "defaultValue": "0", - "stndDictId": "", - "stndFieldId": "", - "stndDictKey": "", - "stndFieldKey": "", - "stndComplianceLevel": "", - "stndComplianceType": "", - "dictFrom": "", - "dictItems": null, + "defaultValue": null, + "stndDictId": "craft_category", + "stndFieldId": null, + "stndDictKey": "craft_category", + "stndFieldKey": null, + "stndComplianceLevel": null, + "stndComplianceType": null, + "dictFrom": "Manual", + "dictItems": [ + { + "itemKey": "ZiDongHua", + "itemName": "自动化", + "parentKey": "", + "intro": "", + "id": "8F07359D-732D-4F07-85C3-E86010E4F5AD" + }, + { + "itemKey": "RenGong", + "itemName": "人工", + "parentKey": "", + "intro": "", + "id": "8DEBBCEF-3F01-4C1A-ADC1-038B52129862" + } + ], "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" + "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": "F02B36BC-9C06-40D7-A478-DC5789CCEFB3", @@ -20757,661 +20802,6 @@ ], "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, @@ -38818,13 +38208,2476 @@ } ], "indexes": [] + }, + { + "id": "F911D1E8-57E3-4C1B-8F65-20ED00A70A76", + "type": "P", + "defKey": "mfg_bom", + "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": "BEB2C4A8-2452-426D-9BD6-D6B30BBBA4CD", + "defKey": "id", + "defName": "Id", + "intro": null, + "orderValue": null, + "baseDataType": "BIGINT", + "bizDomainType": "", + "dbDataType": "BIGINT", + "dataLen": null, + "numScale": null, + "primaryKey": 1, + "notNull": 1, + "autoIncrement": 0, + "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": "4C08B784-79F5-4C97-919B-C6DA9E7ED12C", + "defKey": "sn", + "defName": "编码", + "intro": "", + "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": "PDManer", + "attr19": null, + "attr20": null, + "origin": null, + "stndComplianceType": null, + "stndComplianceLevel": null, + "updatedUserId": null, + "createdUserId": null, + "dictItems": [] + }, + { + "id": "8DDF0A45-9E97-4634-8B19-8A5EAB024D1B", + "defKey": "good_id", + "defName": "产品 Id", + "intro": "gds_goods.id", + "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": "2A59E344-588C-40BC-9A93-24544D3A78F0", + "defKey": "bom_ver", + "defName": "物料清单版本号", + "intro": null, + "orderValue": null, + "baseDataType": "VARCHAR", + "bizDomainType": "", + "dbDataType": "VARCHAR", + "dataLen": 32, + "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": "4E8806B4-668D-4D2C-B8EB-517906A77AD1", + "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": "49602D4B-1A59-4143-BFF0-92A19054DAC4", + "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": "A711AD40-5F4A-4EAF-909F-4C6A22505182", + "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": "E27E6D09-B1D2-43FF-9562-FD59208295A4", + "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": "7CCEF62C-0564-4663-AE31-5FAC934F51B8", + "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": "E87CD602-69C3-4A7A-9E68-D705E13E4A3E", + "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": "FAC8B62D-6583-4359-924D-BB2701F15249", + "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": [ + { + "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": [] + } + ] + }, + { + "id": "DB9FCE82-2E82-48C7-A39D-33BC31AFE14E", + "type": "P", + "defKey": "mfg_bom_detail", + "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": "31400E61-79AC-457C-B902-91176FF7EE82", + "defName": "Id", + "intro": null, + "orderValue": null, + "baseDataType": "BIGINT", + "bizDomainType": "", + "dbDataType": "BIGINT", + "dataLen": null, + "numScale": null, + "primaryKey": 1, + "notNull": 1, + "autoIncrement": 0, + "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": "PDManer", + "attr19": null, + "attr20": null, + "origin": null, + "stndComplianceType": null, + "stndComplianceLevel": null, + "updatedUserId": null, + "createdUserId": null, + "dictItems": [] + }, + { + "id": "CB76432E-09F2-4715-9CC4-733574551E0A", + "defKey": "bom_id", + "defName": "物料清单 Id", + "intro": "mfg_bom.id", + "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": "B2000234-BB5B-4283-9163-FBBEF6BC1E05", + "defKey": "goods_id", + "defName": "产品 Id", + "intro": "gds_goods.id", + "orderValue": null, + "baseDataType": "BIGINT", + "bizDomainType": "", + "dbDataType": "BIGINT", + "dataLen": "", + "numScale": null, + "primaryKey": null, + "notNull": 1, + "autoIncrement": null, + "defaultValue": null, + "stndDictId": null, + "stndDictKey": null, + "stndFieldId": null, + "stndFieldKey": null, + "mark": null, + "attr1": null, + "attr2": null, + "attr3": null, + "attr4": null, + "attr5": null, + "attr6": null, + "attr7": null, + "attr8": null, + "attr9": null, + "attr10": null, + "attr11": null, + "attr12": null, + "attr13": null, + "attr14": null, + "attr15": null, + "attr16": null, + "attr17": null, + "attr18": null, + "attr19": null, + "attr20": null, + "origin": null, + "stndComplianceType": null, + "stndComplianceLevel": null, + "updatedUserId": null, + "createdUserId": null + }, + { + "id": "952EAE76-2125-4A33-A379-D622AD412542", + "defKey": "mtl_type", + "defName": "物料类型", + "intro": null, + "orderValue": null, + "baseDataType": "VARCHAR", + "bizDomainType": "", + "dbDataType": "VARCHAR", + "dataLen": 32, + "numScale": null, + "primaryKey": null, + "notNull": 1, + "autoIncrement": null, + "defaultValue": null, + "stndDictId": "mtl_type", + "stndDictKey": "mtl_type", + "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, + "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" + } + ] + }, + { + "id": "49A9B72A-1A52-4B1E-933B-9B2E9B113585", + "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": "76D00ED9-29FD-451C-B845-94D81872E362", + "defKey": "quantity", + "defName": "消耗/产出量", + "intro": "如果为产出,则此值为 1", + "orderValue": null, + "baseDataType": "INT", + "bizDomainType": "", + "dbDataType": "INT", + "dataLen": "", + "numScale": "", + "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": "BBA40B89-0104-4395-97ED-1AE7459819A5", + "defKey": "mandatory", + "defName": "是否必需", + "intro": "0-->否、1-->是", + "orderValue": null, + "baseDataType": "TINYINT", + "bizDomainType": "", + "dbDataType": "TINYINT", + "dataLen": 1, + "numScale": null, + "primaryKey": null, + "notNull": 1, + "autoIncrement": null, + "defaultValue": "1", + "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": "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 + } + ] + } + ] + }, + { + "id": "B6FB46B6-0669-4946-B687-961098C80A39", + "type": "P", + "defKey": "mfg_craft_operation", + "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": "EEF212F7-244D-47FD-B2B6-2A5594171786", + "defKey": "id", + "defName": "Id", + "intro": null, + "orderValue": null, + "baseDataType": "BIGINT", + "bizDomainType": "", + "dbDataType": "BIGINT", + "dataLen": null, + "numScale": null, + "primaryKey": 1, + "notNull": 1, + "autoIncrement": 0, + "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": "PDManer", + "attr19": null, + "attr20": null, + "origin": null, + "stndComplianceType": null, + "stndComplianceLevel": null, + "updatedUserId": null, + "createdUserId": null, + "dictItems": [] + }, + { + "id": "DA04390D-4EBF-4808-8248-7DA8DF5A92D2", + "defKey": "sn", + "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": "PDManer", + "attr19": null, + "attr20": "2F3E9658-790E-40CA-9242-7B5F2A4AECDC", + "origin": null, + "stndComplianceType": null, + "stndComplianceLevel": null, + "updatedUserId": null, + "createdUserId": null, + "dictItems": [] + }, + { + "id": "17AB1527-D2DB-4AF4-8468-BBFB792CC944", + "defKey": "bom_id", + "defName": "物料清单 Id", + "intro": "mfg_bom.id", + "baseDataType": "BIGINT", + "bizDomainType": "", + "dbDataType": "BIGINT", + "dataLen": "", + "numScale": "", + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "", + "stndFieldId": "", + "stndDictKey": "", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "", + "dictItems": null, + "fieldTier": "", + "mark": null, + "attr1": "", + "attr2": "", + "attr3": "", + "attr4": "", + "attr5": "", + "attr6": "", + "attr7": "", + "attr8": "", + "attr9": "", + "attr10": "", + "attr11": "", + "attr12": "", + "attr13": "", + "attr14": "", + "attr15": "", + "attr16": "", + "attr17": "", + "attr18": "", + "attr19": "", + "attr20": "", + "origin": "UI" + }, + { + "id": "2AE67567-1B1A-466C-8681-913A43464EB2", + "defKey": "operation_name", + "defName": "工序名称", + "intro": null, + "orderValue": null, + "baseDataType": "VARCHAR", + "bizDomainType": "", + "dbDataType": "VARCHAR", + "dataLen": 128, + "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": "7FD05023-7CEE-4293-8A86-58F405AFB814", + "defKey": "operation_category", + "defName": "工序类型", + "intro": "字典编码:operation_category", + "orderValue": null, + "baseDataType": "VARCHAR", + "bizDomainType": "", + "dbDataType": "VARCHAR", + "dataLen": 32, + "numScale": null, + "primaryKey": null, + "notNull": 1, + "autoIncrement": null, + "defaultValue": null, + "stndDictId": "", + "stndDictKey": "", + "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, + "dictFrom": "" + }, + { + "id": "E63791FB-8EB3-40BD-8C34-4E3F5E3FFFA0", + "defKey": "std_cycle", + "defName": "标准节拍", + "intro": "单位:件/分钟", + "orderValue": null, + "baseDataType": "DECIMAL", + "bizDomainType": "", + "dbDataType": "DECIMAL", + "dataLen": 10, + "numScale": 2, + "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": "ED19C45C-11ED-402D-8A6C-470AEEE863C9", + "defKey": "check_point", + "defName": "是否质检节点", + "intro": "0-->否、1-->是", + "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": "481FF15E-5B3F-4D68-A9B6-5E899F99C3F4", + "defKey": "step", + "defName": "步骤", + "intro": "相同步骤的工序为并行工序", + "baseDataType": "INT", + "bizDomainType": "", + "dbDataType": "INT", + "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": [], + "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": "PDManer", + "attr19": null, + "attr20": null, + "origin": "PASTE" + }, + { + "id": "718EF98E-8C67-4467-8FEB-B30631A8C56F", + "defKey": "canuse", + "defName": "是否可用", + "intro": "0-->否、1-->是", + "orderValue": null, + "baseDataType": "TINYINT", + "bizDomainType": "", + "dbDataType": "TINYINT", + "dataLen": 1, + "numScale": null, + "primaryKey": null, + "notNull": 1, + "autoIncrement": null, + "defaultValue": "1", + "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": "DDAF2B96-35B3-4FEE-B7AA-CCBA79A48202", + "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": "PASTE" + }, + { + "id": "D962D27F-A43E-4397-81AA-4FCA15F83A87", + "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": "D5E87F91-D409-4D5E-B5EC-31D00F2669DD", + "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": "4B42E501-6BFF-47FB-BACB-384B5F552CF1", + "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": "AD75E7C8-CE68-4EA9-B0F0-EB0DFC62DEA3", + "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": "3D7F9B6F-5A7F-4085-A4C1-46C2D74E718B", + "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": [ + { + "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 + } + ] + } + ] + }, + { + "id": "CDADA174-8ECA-4330-A44B-0DB60C18F25D", + "type": "P", + "defKey": "mfg_craft_way", + "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": "A1BDD7A4-5041-4771-BF86-7825D9E18DC5", + "defKey": "id", + "defName": "Id", + "intro": null, + "orderValue": null, + "baseDataType": "BIGINT", + "bizDomainType": "", + "dbDataType": "BIGINT", + "dataLen": null, + "numScale": null, + "primaryKey": 1, + "notNull": 1, + "autoIncrement": 0, + "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": "PDManer", + "attr19": null, + "attr20": null, + "origin": null, + "stndComplianceType": null, + "stndComplianceLevel": null, + "updatedUserId": null, + "createdUserId": null, + "dictItems": [] + }, + { + "id": "55D1724F-7B0B-4FC6-A121-D8C9E026A0FE", + "defKey": "craft_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": "8AB9DCC1-DA8E-4B68-BE61-BC0CCF3ABC6D", + "defKey": "operation_id", + "defName": "工序 Id", + "intro": "mfg_craft_operation.id", + "baseDataType": "BIGINT", + "bizDomainType": "", + "dbDataType": "BIGINT", + "dataLen": "", + "numScale": "", + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "", + "stndFieldId": "", + "stndDictKey": "", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "", + "dictItems": null, + "fieldTier": "", + "mark": null, + "attr1": "", + "attr2": "", + "attr3": "", + "attr4": "", + "attr5": "", + "attr6": "", + "attr7": "", + "attr8": "", + "attr9": "", + "attr10": "", + "attr11": "", + "attr12": "", + "attr13": "", + "attr14": "", + "attr15": "", + "attr16": "", + "attr17": "", + "attr18": "", + "attr19": "", + "attr20": "", + "origin": "UI" + }, + { + "id": "7A724CA7-C201-4B61-A9E5-FF3228453140", + "defKey": "step", + "defName": "步骤", + "intro": "同一工艺下相同步骤的工序为并行工序", + "orderValue": null, + "baseDataType": "INT", + "bizDomainType": "", + "dbDataType": "INT", + "dataLen": null, + "numScale": null, + "primaryKey": null, + "notNull": 1, + "autoIncrement": null, + "defaultValue": "", + "stndDictId": null, + "stndDictKey": null, + "stndFieldId": null, + "stndFieldKey": null, + "mark": null, + "attr1": null, + "attr2": null, + "attr3": null, + "attr4": null, + "attr5": null, + "attr6": null, + "attr7": null, + "attr8": null, + "attr9": null, + "attr10": null, + "attr11": null, + "attr12": null, + "attr13": null, + "attr14": null, + "attr15": null, + "attr16": null, + "attr17": null, + "attr18": "PDManer", + "attr19": null, + "attr20": null, + "origin": null, + "stndComplianceType": null, + "stndComplianceLevel": null, + "updatedUserId": null, + "createdUserId": null, + "dictItems": [] + }, + { + "id": "D8A951D9-F057-4581-A1B1-A7FEF666A214", + "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": "FBF7FBF4-A009-4927-9A02-E29A570B2AC1", + "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": "D8E1EC0E-DEAF-4E7E-9CFC-2C08CBCCC379", + "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": "82F2DC35-0B85-4C2A-93AB-031FCC3D283A", + "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": "D78B226E-E874-455D-8685-36F0997710F5", + "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": "D79B9DF6-2D44-41E5-852F-A2BF56A3D18E", + "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": [ + { + "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": "390F9E53-C2EE-46FE-AFA5-E6BE22CE2CAE", + "type": "UNIQUE", + "defKey": "uk_process_operation_seq", + "defName": null, + "intro": null, + "orderValue": null, + "fields": [ + { + "id": "1B25E693-7060-489D-BAC7-4CA410673876", + "fieldId": "55D1724F-7B0B-4FC6-A121-D8C9E026A0FE", + "fieldDefKey": "craft_id", + "sortType": null + }, + { + "id": "F9E80BBE-BB3A-4BF3-B29F-EE588EB1C4DA", + "fieldId": "7A724CA7-C201-4B61-A9E5-FF3228453140", + "fieldDefKey": "step", + "sortType": null + } + ] + }, + { + "id": "29C072EC-B72F-47D4-9364-BA911F7516FC", + "type": "NORMAL", + "defKey": "idx_process_id", + "defName": null, + "intro": null, + "orderValue": null, + "fields": [ + { + "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": [ + { + "id": "5243A80B-7783-426B-BACB-048AE174E957", + "fieldId": "7A724CA7-C201-4B61-A9E5-FF3228453140", + "fieldDefKey": "step", + "sortType": null + } + ] + } + ] } ], "diagrams": [], "readonly": false, "allowWs": false }, - "updateTime": 1766388284712, - "signature": "f5251cf69e7c212ec50edab3ca8251d0", + "updateTime": 1766406757895, + "signature": "cb59ed27023c3e2438a492710a08eda1", "branchId": "1111" } \ No newline at end of file