diff --git a/njzscloud-svr/src/main/java/com/njzscloud/dispose/finance/pojo/entity/ExpenseItemEntity.java b/njzscloud-svr/src/main/java/com/njzscloud/dispose/finance/pojo/entity/ExpenseItemEntity.java index cbdf3d4..8d071f8 100644 --- a/njzscloud-svr/src/main/java/com/njzscloud/dispose/finance/pojo/entity/ExpenseItemEntity.java +++ b/njzscloud-svr/src/main/java/com/njzscloud/dispose/finance/pojo/entity/ExpenseItemEntity.java @@ -92,17 +92,17 @@ public class ExpenseItemEntity extends BaseEntity { private Integer everyQuantity; /** - * 适用用户;结构类型:{strategy: None | All | Specify,ids:long[]} + * 适用用户;结构类型:{strategy: Wu | ZhiDing | SuoYou,ids:long[]} */ private String userScope; /** - * 适用站点;结构类型:{strategy: None | All | Specify,ids:long[]} + * 适用站点;结构类型:{strategy: Wu | ZhiDing | SuoYou,ids:long[]} */ private String stationScope; /** - * 适用产品;结构类型:{strategy: None | All | Specify,ids:long[]} + * 适用产品;结构类型:{strategy: Wu | ZhiDing | SuoYou,ids:long[]} */ private String goodsScope; diff --git a/njzscloud-svr/src/main/java/com/njzscloud/dispose/finance/pojo/entity/ScopeStrategyConfig.java b/njzscloud-svr/src/main/java/com/njzscloud/dispose/finance/pojo/entity/ScopeStrategyConfig.java new file mode 100644 index 0000000..b9cf61a --- /dev/null +++ b/njzscloud-svr/src/main/java/com/njzscloud/dispose/finance/pojo/entity/ScopeStrategyConfig.java @@ -0,0 +1,25 @@ +package com.njzscloud.dispose.finance.pojo.entity; + +import com.njzscloud.dispose.finance.constant.ScopeStrategy; +import lombok.Getter; +import lombok.Setter; +import lombok.ToString; +import lombok.experimental.Accessors; + +import java.util.List; + +@Getter +@Setter +@ToString +@Accessors(chain = true) +public class ScopeStrategyConfig { + /** + * 策略 + */ + private ScopeStrategy strategy; + /** + * id 列表 + */ + private List ids; +} + diff --git a/njzscloud-svr/src/main/java/com/njzscloud/dispose/finance/pojo/param/AddExpenseItemParam.java b/njzscloud-svr/src/main/java/com/njzscloud/dispose/finance/pojo/param/AddExpenseItemParam.java new file mode 100644 index 0000000..bb7743c --- /dev/null +++ b/njzscloud-svr/src/main/java/com/njzscloud/dispose/finance/pojo/param/AddExpenseItemParam.java @@ -0,0 +1,94 @@ +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 AddExpenseItemParam { + + /** + * 收费项目类型,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 f8392a7..7c0bfe7 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 @@ -4,6 +4,7 @@ import com.baomidou.mybatisplus.extension.service.IService; 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 java.util.List; @@ -16,7 +17,7 @@ public interface ExpenseItemService extends IService { /** * 新增 */ - void add(ExpenseItemEntity expenseItemEntity); + void add(AddExpenseItemParam addExpenseItemParam); /** * 修改 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 c36c522..5d59366 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 @@ -1,11 +1,13 @@ package com.njzscloud.dispose.finance.service.impl; +import cn.hutool.core.bean.BeanUtil; import com.baomidou.mybatisplus.core.toolkit.Wrappers; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; import com.njzscloud.common.mp.support.PageParam; 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.service.ExpenseItemService; import lombok.RequiredArgsConstructor; import lombok.extern.slf4j.Slf4j; @@ -28,8 +30,8 @@ public class ExpenseItemServiceImpl extends ServiceImpl add(@RequestBody GoodsEntity goodsEntity) { - goodsService.add(goodsEntity); + public R add(@RequestBody AddGoodsParam addGoodsParam) { + goodsService.add(addGoodsParam); return R.success(); } 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 28eb576..939beef 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 @@ -80,7 +80,6 @@ public class GoodsEntity extends BaseEntity { * 备注 */ private String memo; - /** * 关联收费项目信息(返回用) */ 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 new file mode 100644 index 0000000..406b0de --- /dev/null +++ b/njzscloud-svr/src/main/java/com/njzscloud/dispose/goods/pojo/param/AddGoodsParam.java @@ -0,0 +1,167 @@ +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 AddGoodsParam { + + /** + * 产品类型 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 { + + /** + * 收费项目类型,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 3807223..5aa56e6 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 @@ -4,6 +4,7 @@ import com.baomidou.mybatisplus.extension.service.IService; 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 java.util.List; @@ -13,7 +14,7 @@ import java.util.List; */ public interface GoodsService extends IService { - void add(GoodsEntity goodsEntity); + void add(AddGoodsParam addGoodsParam); void modify(GoodsEntity goodsEntity); 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 6ddd423..99d82cd 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 @@ -1,15 +1,19 @@ package com.njzscloud.dispose.goods.service.impl; +import cn.hutool.core.bean.BeanUtil; import com.baomidou.mybatisplus.core.toolkit.Wrappers; import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; import com.njzscloud.common.mp.support.PageParam; import com.njzscloud.common.mp.support.PageResult; +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.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.service.GoodsService; import lombok.RequiredArgsConstructor; import lombok.extern.slf4j.Slf4j; @@ -32,13 +36,21 @@ public class GoodsServiceImpl extends ServiceImpl impl @Override @Transactional(rollbackFor = Exception.class) - public void add(GoodsEntity goodsEntity) { + public void add(AddGoodsParam addGoodsParam) { + String sn = SnUtil.next("Goods-SN"); + addGoodsParam.setSn(sn); + GoodsEntity goodsEntity = BeanUtil.copyProperties(addGoodsParam, GoodsEntity.class); this.save(goodsEntity); - ExpenseItemEntity expenseItem = goodsEntity.getExpenseItem(); - expenseItem.setGoodsId(goodsEntity.getId()); - expenseItem.setExpenseItemCategory(ExpenseItemCategory.ChanPin.getVal()); - expenseItem.setExpenseItemName(goodsEntity.getGoodsName()); - expenseItemService.save(expenseItem); + // 付费项新增 + AddGoodsParam.ExpenseItem expenseItem = addGoodsParam.getExpenseItem(); + + String goodsName = addGoodsParam.getGoodsName(); + AddExpenseItemParam addExpenseItemParam = BeanUtil.copyProperties(expenseItem, AddExpenseItemParam.class) + .setGoodsId(goodsEntity.getId()) + .setExpenseItemName(goodsName) + .setExpenseItemCategory(ExpenseItemCategory.ChanPin) + .setMemo(goodsName + "费用配置"); + expenseItemService.add(addExpenseItemParam); } @Override diff --git a/z-doc/pdma/njzscloud-dispose.pdma b/z-doc/pdma/njzscloud-dispose.pdma index 2b842cf..a661581 100644 --- a/z-doc/pdma/njzscloud-dispose.pdma +++ b/z-doc/pdma/njzscloud-dispose.pdma @@ -2005,280 +2005,288 @@ "setting": { "physicEntityPresetFields": [ { - "id": "BFB2ADBB-B1E9-4963-BD1F-FA9074EFE4AD", - "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": "978353B6-4795-4D07-9651-B20E4ED64C33", - "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": "89526ADA-2D33-4B5C-BEE0-CCBD59E9DE33", - "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": "71943ECA-7843-4486-A378-C9F98399799A", - "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": "B1397FFC-5517-42FC-8FD2-6701507784CB", - "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": "C1643BB8-90A0-46DB-8BCD-95A630200AC3", - "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" + "id": "7C0B4076-0DC9-41AB-9D0B-0A1D5924DC69", + "defKey": "default", + "defName": "默认方案", + "data": [ + { + "id": "BFB2ADBB-B1E9-4963-BD1F-FA9074EFE4AD", + "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": "978353B6-4795-4D07-9651-B20E4ED64C33", + "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": "89526ADA-2D33-4B5C-BEE0-CCBD59E9DE33", + "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": "71943ECA-7843-4486-A378-C9F98399799A", + "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": "B1397FFC-5517-42FC-8FD2-6701507784CB", + "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": "C1643BB8-90A0-46DB-8BCD-95A630200AC3", + "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" + } + ], + "isDefault": 1 } ], "physicEntityAttr": { @@ -3236,64 +3244,39 @@ "orderValue": 1 }, { - "refObjectId": "04B05244-7665-40E6-9A98-BDB20746A886", + "refObjectId": "22ACAD57-2008-4E85-B7E6-A31C50221F49", "refObjectType": "P", "orderValue": 2 }, { - "refObjectId": "153541F6-C971-4324-B97C-BEF689627B24", + "refObjectId": "5374D175-115A-42B6-A68B-DCD30D953B7E", "refObjectType": "P", "orderValue": 3 }, { - "refObjectId": "C9A36E0B-ECA6-4D3C-AEE5-691F607359F6", + "refObjectId": "DEBAD01B-B6FF-4EFB-9B03-29EB31F2E5CF", "refObjectType": "P", "orderValue": 4 }, { - "refObjectId": "5374D175-115A-42B6-A68B-DCD30D953B7E", + "refObjectId": "0B25C484-FFCC-4583-8DE5-26402A7104BA", "refObjectType": "P", "orderValue": 5 }, { - "refObjectId": "DEBAD01B-B6FF-4EFB-9B03-29EB31F2E5CF", + "refObjectId": "FC24E76A-8EA4-4A60-BC0F-B0B5AE154AFE", "refObjectType": "P", "orderValue": 6 }, { - "refObjectId": "A8653A3C-7114-457C-A0C5-04A450966419", + "refObjectId": "153541F6-C971-4324-B97C-BEF689627B24", "refObjectType": "P", "orderValue": 7 }, { - "refObjectId": "48D07E14-B6A7-441A-824E-0910F7F92010", + "refObjectId": "C9A36E0B-ECA6-4D3C-AEE5-691F607359F6", "refObjectType": "P", "orderValue": 8 - }, - { - "refObjectId": "0B25C484-FFCC-4583-8DE5-26402A7104BA", - "refObjectType": "P", - "orderValue": 9 - }, - { - "refObjectId": "4FF32B1E-3845-417B-B4A6-EEF2E4AB4961", - "refObjectType": "P", - "orderValue": 10 - }, - { - "refObjectId": "FC24E76A-8EA4-4A60-BC0F-B0B5AE154AFE", - "refObjectType": "P", - "orderValue": 11 - }, - { - "refObjectId": "FBD96B03-9549-4BC4-8E04-96EE3D0EB922", - "refObjectType": "P", - "orderValue": 12 - }, - { - "refObjectId": "22ACAD57-2008-4E85-B7E6-A31C50221F49", - "refObjectType": "P", - "orderValue": 13 } ], "diagramRefs": [], @@ -3496,204 +3479,129 @@ "orderValue": 25 }, { - "refObjectId": "04B05244-7665-40E6-9A98-BDB20746A886", + "refObjectId": "153541F6-C971-4324-B97C-BEF689627B24", "refObjectType": "P", "orderValue": 26 }, { - "refObjectId": "153541F6-C971-4324-B97C-BEF689627B24", + "refObjectId": "C9A36E0B-ECA6-4D3C-AEE5-691F607359F6", "refObjectType": "P", "orderValue": 27 }, { - "refObjectId": "C9A36E0B-ECA6-4D3C-AEE5-691F607359F6", + "refObjectId": "3B83C23F-D49C-4D67-830C-882D91A57927", "refObjectType": "P", "orderValue": 28 }, { - "refObjectId": "3B83C23F-D49C-4D67-830C-882D91A57927", + "refObjectId": "EDDB991D-570B-493F-AF67-97787AC9BAFC", "refObjectType": "P", "orderValue": 29 }, { - "refObjectId": "EDDB991D-570B-493F-AF67-97787AC9BAFC", + "refObjectId": "48C64C11-5A89-4DDD-95A6-3EBF40F399FB", "refObjectType": "P", "orderValue": 30 }, { - "refObjectId": "48C64C11-5A89-4DDD-95A6-3EBF40F399FB", + "refObjectId": "4476CB18-4B15-486E-A0AD-DA49AB267305", "refObjectType": "P", "orderValue": 31 }, { - "refObjectId": "4476CB18-4B15-486E-A0AD-DA49AB267305", + "refObjectId": "31EE5227-5597-42B8-8D7A-B558F708C076", "refObjectType": "P", "orderValue": 32 }, { - "refObjectId": "31EE5227-5597-42B8-8D7A-B558F708C076", + "refObjectId": "0B223F50-E8AF-40F4-8444-1B22D1171407", "refObjectType": "P", "orderValue": 33 }, { - "refObjectId": "0B223F50-E8AF-40F4-8444-1B22D1171407", + "refObjectId": "8597F6A3-0AB9-4885-BC3A-72C3ACC4B756", "refObjectType": "P", "orderValue": 34 }, { - "refObjectId": "8597F6A3-0AB9-4885-BC3A-72C3ACC4B756", + "refObjectId": "1A2D551C-214D-469D-B0C5-917C29D725B2", "refObjectType": "P", "orderValue": 35 }, { - "refObjectId": "1A2D551C-214D-469D-B0C5-917C29D725B2", + "refObjectId": "DECB0762-9BE3-429A-81F7-891B7C960B04", "refObjectType": "P", "orderValue": 36 }, { - "refObjectId": "DECB0762-9BE3-429A-81F7-891B7C960B04", + "refObjectId": "718C57B0-4799-48E1-8651-57527A3BFF8B", "refObjectType": "P", "orderValue": 37 }, { - "refObjectId": "718C57B0-4799-48E1-8651-57527A3BFF8B", + "refObjectId": "F13139EC-3554-4C1E-8C09-1A6C238C539A", "refObjectType": "P", "orderValue": 38 }, { - "refObjectId": "F13139EC-3554-4C1E-8C09-1A6C238C539A", + "refObjectId": "38B910DC-4D79-448E-9EA4-CED1E92B03DE", "refObjectType": "P", "orderValue": 39 }, { - "refObjectId": "38B910DC-4D79-448E-9EA4-CED1E92B03DE", + "refObjectId": "F573B178-BE6E-48AB-8AF0-6121E7320EB9", "refObjectType": "P", "orderValue": 40 }, { - "refObjectId": "F573B178-BE6E-48AB-8AF0-6121E7320EB9", + "refObjectId": "DF643AC9-1A78-408B-9F20-9C659BC475FA", "refObjectType": "P", "orderValue": 41 }, { - "refObjectId": "DF643AC9-1A78-408B-9F20-9C659BC475FA", + "refObjectId": "167D299F-EC34-4B05-97F9-C2A0F2CD034E", "refObjectType": "P", "orderValue": 42 }, { - "refObjectId": "167D299F-EC34-4B05-97F9-C2A0F2CD034E", + "refObjectId": "14DAB3C1-5814-401B-AC62-E15036FE31F6", "refObjectType": "P", "orderValue": 43 }, { - "refObjectId": "14DAB3C1-5814-401B-AC62-E15036FE31F6", + "refObjectId": "5374D175-115A-42B6-A68B-DCD30D953B7E", "refObjectType": "P", "orderValue": 44 }, { - "refObjectId": "5374D175-115A-42B6-A68B-DCD30D953B7E", + "refObjectId": "DEBAD01B-B6FF-4EFB-9B03-29EB31F2E5CF", "refObjectType": "P", "orderValue": 45 }, { - "refObjectId": "DEBAD01B-B6FF-4EFB-9B03-29EB31F2E5CF", + "refObjectId": "0B25C484-FFCC-4583-8DE5-26402A7104BA", "refObjectType": "P", "orderValue": 46 }, { - "refObjectId": "A8653A3C-7114-457C-A0C5-04A450966419", + "refObjectId": "FC24E76A-8EA4-4A60-BC0F-B0B5AE154AFE", "refObjectType": "P", "orderValue": 47 }, { - "refObjectId": "48D07E14-B6A7-441A-824E-0910F7F92010", + "refObjectId": "22ACAD57-2008-4E85-B7E6-A31C50221F49", "refObjectType": "P", "orderValue": 48 }, { - "refObjectId": "0B25C484-FFCC-4583-8DE5-26402A7104BA", + "refObjectId": "3A0C2179-8576-40CB-8A4D-647318E432BC", "refObjectType": "P", "orderValue": 49 }, - { - "refObjectId": "4FF32B1E-3845-417B-B4A6-EEF2E4AB4961", - "refObjectType": "P", - "orderValue": 50 - }, - { - "refObjectId": "FC24E76A-8EA4-4A60-BC0F-B0B5AE154AFE", - "refObjectType": "P", - "orderValue": 51 - }, - { - "refObjectId": "FBD96B03-9549-4BC4-8E04-96EE3D0EB922", - "refObjectType": "P", - "orderValue": 52 - }, - { - "refObjectId": "22ACAD57-2008-4E85-B7E6-A31C50221F49", - "refObjectType": "P", - "orderValue": 53 - }, - { - "refObjectId": "EA551124-2954-4538-9098-D44E8EEEE955", - "refObjectType": "P", - "orderValue": 54 - }, - { - "refObjectId": "9A7F904D-B8FA-4933-9DF4-23F0C001D5CF", - "refObjectType": "P", - "orderValue": 55 - }, - { - "refObjectId": "B0F2D81A-45EB-46A5-8AD4-B6E7E1743763", - "refObjectType": "P", - "orderValue": 56 - }, - { - "refObjectId": "1A3D45AD-87D8-4DB7-8EA7-9E1E3F03C6B5", - "refObjectType": "P", - "orderValue": 57 - }, - { - "refObjectId": "B3E8A3CC-C66E-4D6E-AB19-420C4A1A7DE4", - "refObjectType": "P", - "orderValue": 58 - }, - { - "refObjectId": "A527CDDF-24DA-4C8F-A42A-522A20C8D64F", - "refObjectType": "P", - "orderValue": 59 - }, - { - "refObjectId": "74E768ED-438E-4003-971E-696EB4A241E2", - "refObjectType": "P", - "orderValue": 60 - }, - { - "refObjectId": "592C560C-5785-4D93-A2FF-82AD697A0003", - "refObjectType": "P", - "orderValue": 61 - }, - { - "refObjectId": "C46E6F4E-8E26-4489-B201-7764980DBD8B", - "refObjectType": "P", - "orderValue": 62 - }, - { - "refObjectId": "8B1DE3E0-44C6-4C3E-9002-B778841EC3B3", - "refObjectType": "P", - "orderValue": 63 - }, - { - "refObjectId": "3A0C2179-8576-40CB-8A4D-647318E432BC", - "refObjectType": "P", - "orderValue": 64 - }, { "refObjectId": "1DF0083F-E75C-45CA-BCCF-62018CC23FC3", "refObjectType": "P", - "orderValue": 65 + "orderValue": 50 } ], "diagramRefs": [] @@ -14577,190 +14485,6 @@ "updatedUserId": null, "createdUserId": null }, - { - "id": "AB843F40-8EA2-466B-9C7B-CF8D350AF1E1", - "defKey": "total_quantity", - "defName": "总量", - "intro": null, - "baseDataType": "DECIMAL", - "bizDomainType": "", - "dbDataType": "DECIMAL", - "dataLen": 16, - "numScale": 6, - "primaryKey": 0, - "notNull": 1, - "autoIncrement": 0, - "defaultValue": "", - "stndDictId": null, - "stndFieldId": null, - "stndDictKey": null, - "stndFieldKey": null, - "stndComplianceLevel": null, - "stndComplianceType": null, - "dictFrom": "", - "dictItems": null, - "fieldTier": "", - "mark": null, - "attr1": null, - "attr2": null, - "attr3": null, - "attr4": null, - "attr5": null, - "attr6": null, - "attr7": null, - "attr8": null, - "attr9": null, - "attr10": null, - "attr11": null, - "attr12": null, - "attr13": null, - "attr14": null, - "attr15": null, - "attr16": null, - "attr17": null, - "attr18": null, - "attr19": null, - "attr20": null, - "origin": "PASTE" - }, - { - "id": "5F814C7B-2B16-432F-9EFF-E308C4106CE3", - "defKey": "used_quantity", - "defName": "已用", - "intro": "", - "baseDataType": "DECIMAL", - "bizDomainType": "", - "dbDataType": "DECIMAL", - "dataLen": 16, - "numScale": 6, - "primaryKey": 0, - "notNull": 1, - "autoIncrement": 0, - "defaultValue": "", - "stndDictId": "", - "stndFieldId": "", - "stndDictKey": "", - "stndFieldKey": "", - "stndComplianceLevel": "", - "stndComplianceType": "", - "dictFrom": "", - "dictItems": null, - "fieldTier": "", - "mark": null, - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "attr10": "", - "attr11": "", - "attr12": "", - "attr13": "", - "attr14": "", - "attr15": "", - "attr16": "", - "attr17": "", - "attr18": "", - "attr19": "", - "attr20": "", - "origin": "UI" - }, - { - "id": "2E84CC1D-B5A8-490D-9E4F-E44221AFFF41", - "defKey": "remaining_quantity", - "defName": "剩余量", - "intro": "", - "baseDataType": "DECIMAL", - "bizDomainType": "", - "dbDataType": "DECIMAL", - "dataLen": 16, - "numScale": 6, - "primaryKey": 0, - "notNull": 1, - "autoIncrement": 0, - "defaultValue": "", - "stndDictId": "", - "stndFieldId": "", - "stndDictKey": "", - "stndFieldKey": "", - "stndComplianceLevel": "", - "stndComplianceType": "", - "dictFrom": "", - "dictItems": null, - "fieldTier": "", - "mark": null, - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "attr10": "", - "attr11": "", - "attr12": "", - "attr13": "", - "attr14": "", - "attr15": "", - "attr16": "", - "attr17": "", - "attr18": "", - "attr19": "", - "attr20": "", - "origin": "UI" - }, - { - "id": "6FA8EBBB-DCA3-49A8-99B8-E3ACC9A22312", - "defKey": "unit", - "defName": "计量单位", - "intro": "字典代码:unit", - "baseDataType": "VARCHAR", - "bizDomainType": "", - "dbDataType": "VARCHAR", - "dataLen": 16, - "numScale": "", - "primaryKey": 0, - "notNull": 1, - "autoIncrement": 0, - "defaultValue": "", - "stndDictId": "", - "stndFieldId": "", - "stndDictKey": "", - "stndFieldKey": "", - "stndComplianceLevel": "", - "stndComplianceType": "", - "dictFrom": "", - "dictItems": null, - "fieldTier": "", - "mark": null, - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "attr10": "", - "attr11": "", - "attr12": "", - "attr13": "", - "attr14": "", - "attr15": "", - "attr16": "", - "attr17": "", - "attr18": "", - "attr19": "", - "attr20": "", - "origin": "UI" - }, { "id": "94991B9E-1303-406C-BD42-EDBDBE2454C9", "defKey": "location", @@ -15051,1140 +14775,6 @@ } ] }, - { - "id": "04B05244-7665-40E6-9A98-BDB20746A886", - "type": "P", - "defKey": "wh_io_order", - "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": "6603B62B-FE85-484F-8EF5-C81B11AF3587", - "defKey": "id", - "defName": "主键", - "intro": null, - "orderValue": null, - "baseDataType": "BIGINT", - "bizDomainType": "", - "dbDataType": "BIGINT", - "dataLen": null, - "numScale": null, - "primaryKey": null, - "notNull": 1, - "autoIncrement": null, - "defaultValue": null, - "stndDictId": null, - "stndDictKey": null, - "stndFieldId": null, - "stndFieldKey": null, - "mark": null, - "attr1": null, - "attr2": null, - "attr3": null, - "attr4": null, - "attr5": null, - "attr6": null, - "attr7": null, - "attr8": null, - "attr9": null, - "attr10": null, - "attr11": null, - "attr12": null, - "attr13": null, - "attr14": null, - "attr15": null, - "attr16": null, - "attr17": null, - "attr18": null, - "attr19": null, - "attr20": null, - "origin": null, - "stndComplianceType": null, - "stndComplianceLevel": null, - "updatedUserId": null, - "createdUserId": null - }, - { - "id": "DE69F46B-C278-4A16-9CA5-F1D37FED3D55", - "defKey": "sn", - "defName": "编号", - "intro": null, - "orderValue": null, - "baseDataType": "VARCHAR", - "bizDomainType": "", - "dbDataType": "VARCHAR", - "dataLen": 128, - "numScale": null, - "primaryKey": null, - "notNull": 1, - "autoIncrement": null, - "defaultValue": "", - "stndDictId": null, - "stndDictKey": null, - "stndFieldId": null, - "stndFieldKey": null, - "mark": null, - "attr1": null, - "attr2": null, - "attr3": null, - "attr4": null, - "attr5": null, - "attr6": null, - "attr7": null, - "attr8": null, - "attr9": null, - "attr10": null, - "attr11": null, - "attr12": null, - "attr13": null, - "attr14": null, - "attr15": null, - "attr16": null, - "attr17": null, - "attr18": null, - "attr19": null, - "attr20": null, - "origin": null, - "stndComplianceType": null, - "stndComplianceLevel": null, - "updatedUserId": null, - "createdUserId": null - }, - { - "id": "D91A56A4-BD7F-44D2-A93B-6380A9D1A684", - "defKey": "io_type", - "defName": "出入库类型", - "intro": "", - "baseDataType": "CHAR", - "bizDomainType": "", - "dbDataType": "CHAR", - "dataLen": 3, - "numScale": "", - "primaryKey": 0, - "notNull": 1, - "autoIncrement": 0, - "defaultValue": "", - "stndDictId": "io_type", - "stndFieldId": "", - "stndDictKey": "io_type", - "stndFieldKey": "", - "stndComplianceLevel": "", - "stndComplianceType": "", - "dictFrom": "Manual", - "dictItems": [ - { - "itemKey": "Chu", - "itemName": "出库", - "parentKey": "", - "intro": "", - "id": "FEA2756B-70FE-4070-B0EB-DD20EA859F64" - }, - { - "itemKey": "Ru", - "itemName": "入库", - "parentKey": "", - "intro": "", - "id": "561AD9C9-17D5-4A1A-A653-A145400CA866" - } - ], - "fieldTier": "", - "mark": null, - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "attr10": "", - "attr11": "", - "attr12": "", - "attr13": "", - "attr14": "", - "attr15": "", - "attr16": "", - "attr17": "", - "attr18": "", - "attr19": "", - "attr20": "", - "origin": "UI" - }, - { - "id": "8A4066F4-9503-46B9-9656-CC88BCC04D7B", - "defKey": "order_category", - "defName": "订单类型", - "intro": null, - "orderValue": null, - "baseDataType": "VARCHAR", - "bizDomainType": "", - "dbDataType": "VARCHAR", - "dataLen": 16, - "numScale": null, - "primaryKey": null, - "notNull": 1, - "autoIncrement": null, - "defaultValue": null, - "stndDictId": "order_category", - "stndDictKey": "order_category", - "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": "XiaoShou", - "itemName": "销售", - "parentKey": "", - "intro": "", - "id": "A7B0FB0C-CDB4-4AC3-BC1E-B178A82AA5B4" - }, - { - "itemKey": "CaiGou", - "itemName": "采购", - "parentKey": "", - "intro": "", - "id": "7938B08C-655D-46ED-B0C0-9F2BC79D66DD" - } - ] - }, - { - "id": "04A06DAD-E2A3-4238-912C-A6BB87BEF97B", - "defKey": "order_id", - "defName": "业务订单 Id", - "intro": null, - "orderValue": null, - "baseDataType": "BIGINT", - "bizDomainType": "", - "dbDataType": "BIGINT", - "dataLen": null, - "numScale": null, - "primaryKey": 1, - "notNull": 1, - "autoIncrement": null, - "defaultValue": null, - "stndDictId": null, - "stndDictKey": null, - "stndFieldId": null, - "stndFieldKey": null, - "mark": null, - "attr1": null, - "attr2": null, - "attr3": null, - "attr4": null, - "attr5": null, - "attr6": null, - "attr7": null, - "attr8": null, - "attr9": null, - "attr10": null, - "attr11": null, - "attr12": null, - "attr13": null, - "attr14": null, - "attr15": null, - "attr16": null, - "attr17": null, - "attr18": null, - "attr19": null, - "attr20": null, - "origin": null, - "stndComplianceType": null, - "stndComplianceLevel": null, - "updatedUserId": null, - "createdUserId": null - }, - { - "id": "7723E97E-7F1F-432D-A7DA-4706BB0F16CD", - "defKey": "order_sn", - "defName": "单号", - "intro": "", - "orderValue": null, - "baseDataType": "VARCHAR", - "bizDomainType": "", - "dbDataType": "VARCHAR", - "dataLen": 128, - "numScale": null, - "primaryKey": null, - "notNull": 1, - "autoIncrement": null, - "defaultValue": "", - "stndDictId": null, - "stndDictKey": null, - "stndFieldId": null, - "stndFieldKey": null, - "mark": null, - "attr1": null, - "attr2": null, - "attr3": null, - "attr4": null, - "attr5": null, - "attr6": null, - "attr7": null, - "attr8": null, - "attr9": null, - "attr10": null, - "attr11": null, - "attr12": null, - "attr13": null, - "attr14": null, - "attr15": null, - "attr16": null, - "attr17": null, - "attr18": null, - "attr19": null, - "attr20": null, - "origin": null, - "stndComplianceType": null, - "stndComplianceLevel": null, - "updatedUserId": null, - "createdUserId": null - }, - { - "id": "5D2CA9C5-0D85-452C-80D8-03056008D712", - "defKey": "warehouse_id", - "defName": "仓库 Id", - "intro": "wh_warehouse.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": "385889C0-E756-48F3-8BA6-E12282F2AB12", - "defKey": "location", - "defName": "存放位置", - "intro": null, - "orderValue": null, - "baseDataType": "VARCHAR", - "bizDomainType": "", - "dbDataType": "VARCHAR", - "dataLen": 128, - "numScale": null, - "primaryKey": null, - "notNull": 1, - "autoIncrement": null, - "defaultValue": "''", - "stndDictId": null, - "stndDictKey": null, - "stndFieldId": null, - "stndFieldKey": null, - "mark": null, - "attr1": null, - "attr2": null, - "attr3": null, - "attr4": null, - "attr5": null, - "attr6": null, - "attr7": null, - "attr8": null, - "attr9": null, - "attr10": null, - "attr11": null, - "attr12": null, - "attr13": null, - "attr14": null, - "attr15": null, - "attr16": null, - "attr17": null, - "attr18": null, - "attr19": null, - "attr20": null, - "origin": null, - "stndComplianceType": null, - "stndComplianceLevel": null, - "updatedUserId": null, - "createdUserId": null - }, - { - "id": "30B361E4-69DC-47B8-A054-993334D1F1D9", - "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": "UI" - }, - { - "id": "06A0B175-DCEC-407C-B50A-90639AF948C4", - "defKey": "goods_category_name", - "defName": "分类名称", - "intro": "", - "baseDataType": "VARCHAR", - "bizDomainType": "", - "dbDataType": "VARCHAR", - "dataLen": 255, - "numScale": "", - "primaryKey": 0, - "notNull": 1, - "autoIncrement": 0, - "defaultValue": "", - "stndDictId": "", - "stndFieldId": "", - "stndDictKey": "", - "stndFieldKey": "", - "stndComplianceLevel": "", - "stndComplianceType": "", - "dictFrom": "", - "dictItems": null, - "fieldTier": "", - "mark": null, - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "attr10": "", - "attr11": "", - "attr12": "", - "attr13": "", - "attr14": "", - "attr15": "", - "attr16": "", - "attr17": "", - "attr18": "", - "attr19": "", - "attr20": "", - "origin": "PASTE" - }, - { - "id": "044C1910-CB37-4BF5-B1B1-096C5CCBA596", - "defKey": "goods_id", - "defName": "产品 Id", - "intro": "", - "baseDataType": "BIGINT", - "bizDomainType": "", - "dbDataType": "BIGINT", - "dataLen": "", - "numScale": "", - "primaryKey": 0, - "notNull": 1, - "autoIncrement": 0, - "defaultValue": "", - "stndDictId": "", - "stndFieldId": "", - "stndDictKey": "", - "stndFieldKey": "", - "stndComplianceLevel": "", - "stndComplianceType": "", - "dictFrom": "", - "dictItems": null, - "fieldTier": "", - "mark": null, - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "attr10": "", - "attr11": "", - "attr12": "", - "attr13": "", - "attr14": "", - "attr15": "", - "attr16": "", - "attr17": "", - "attr18": "", - "attr19": "", - "attr20": "", - "origin": "UI" - }, - { - "id": "138A2CB9-CA3B-40DE-9E83-CDACE457102A", - "defKey": "goods_name", - "defName": "产品名称", - "intro": "", - "baseDataType": "VARCHAR", - "bizDomainType": "", - "dbDataType": "VARCHAR", - "dataLen": 128, - "numScale": "", - "primaryKey": 0, - "notNull": 1, - "autoIncrement": 0, - "defaultValue": "", - "stndDictId": "", - "stndFieldId": "", - "stndDictKey": "", - "stndFieldKey": "", - "stndComplianceLevel": "", - "stndComplianceType": "", - "dictFrom": "", - "dictItems": null, - "fieldTier": "", - "mark": null, - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "attr10": "", - "attr11": "", - "attr12": "", - "attr13": "", - "attr14": "", - "attr15": "", - "attr16": "", - "attr17": "", - "attr18": "", - "attr19": "", - "attr20": "", - "origin": "PASTE" - }, - { - "id": "F1266F3B-0E9A-4D20-8E10-9D3A862582EE", - "defKey": "good_sn", - "defName": "商品编码", - "intro": "", - "baseDataType": "VARCHAR", - "bizDomainType": "", - "dbDataType": "VARCHAR", - "dataLen": 128, - "numScale": "", - "primaryKey": 0, - "notNull": 1, - "autoIncrement": 0, - "defaultValue": "", - "stndDictId": "", - "stndFieldId": "", - "stndDictKey": "", - "stndFieldKey": "", - "stndComplianceLevel": "", - "stndComplianceType": "", - "dictFrom": "", - "dictItems": null, - "fieldTier": "", - "mark": null, - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "attr10": "", - "attr11": "", - "attr12": "", - "attr13": "", - "attr14": "", - "attr15": "", - "attr16": "", - "attr17": "", - "attr18": "", - "attr19": "", - "attr20": "", - "origin": "PASTE" - }, - { - "id": "198AC965-43F6-4DCA-B1F9-8D613FA2C1C9", - "defKey": "quantity", - "defName": "数量", - "intro": null, - "orderValue": null, - "baseDataType": "DECIMAL", - "bizDomainType": "", - "dbDataType": "DECIMAL", - "dataLen": 16, - "numScale": 6, - "primaryKey": null, - "notNull": 1, - "autoIncrement": null, - "defaultValue": "", - "stndDictId": null, - "stndDictKey": null, - "stndFieldId": null, - "stndFieldKey": null, - "mark": null, - "attr1": null, - "attr2": null, - "attr3": null, - "attr4": null, - "attr5": null, - "attr6": null, - "attr7": null, - "attr8": null, - "attr9": null, - "attr10": null, - "attr11": null, - "attr12": null, - "attr13": null, - "attr14": null, - "attr15": null, - "attr16": null, - "attr17": null, - "attr18": null, - "attr19": null, - "attr20": null, - "origin": null, - "stndComplianceType": null, - "stndComplianceLevel": null, - "updatedUserId": null, - "createdUserId": null - }, - { - "id": "60E619A9-F46E-4FA2-95C8-C5D008309685", - "defKey": "unit", - "defName": "计量单位", - "intro": "字典代码:unit", - "baseDataType": "VARCHAR", - "bizDomainType": "", - "dbDataType": "VARCHAR", - "dataLen": 16, - "numScale": "", - "primaryKey": 0, - "notNull": 1, - "autoIncrement": 0, - "defaultValue": "", - "stndDictId": "", - "stndFieldId": "", - "stndDictKey": "", - "stndFieldKey": "", - "stndComplianceLevel": "", - "stndComplianceType": "", - "dictFrom": "", - "dictItems": null, - "fieldTier": "", - "mark": null, - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "attr10": "", - "attr11": "", - "attr12": "", - "attr13": "", - "attr14": "", - "attr15": "", - "attr16": "", - "attr17": "", - "attr18": "", - "attr19": "", - "attr20": "", - "origin": "UI" - }, - { - "id": "73E9B263-6FC2-4CAF-9E5D-40E78CBBF3D2", - "defKey": "io_time", - "defName": "出入库时间", - "intro": null, - "orderValue": null, - "baseDataType": "DATETIME", - "bizDomainType": "", - "dbDataType": "DATETIME", - "dataLen": null, - "numScale": null, - "primaryKey": null, - "notNull": 1, - "autoIncrement": null, - "defaultValue": null, - "stndDictId": null, - "stndDictKey": null, - "stndFieldId": null, - "stndFieldKey": null, - "mark": null, - "attr1": null, - "attr2": null, - "attr3": null, - "attr4": null, - "attr5": null, - "attr6": null, - "attr7": null, - "attr8": null, - "attr9": null, - "attr10": null, - "attr11": null, - "attr12": null, - "attr13": null, - "attr14": null, - "attr15": null, - "attr16": null, - "attr17": null, - "attr18": null, - "attr19": null, - "attr20": null, - "origin": null, - "stndComplianceType": null, - "stndComplianceLevel": null, - "updatedUserId": null, - "createdUserId": null - }, - { - "id": "F42DE23F-C81C-4A98-8C16-E591F542559D", - "defKey": "responsible_id", - "defName": "责任人 Id", - "intro": "sys_user.id", - "orderValue": null, - "baseDataType": "BIGINT", - "bizDomainType": "", - "dbDataType": "BIGINT", - "dataLen": null, - "numScale": null, - "primaryKey": null, - "notNull": 1, - "autoIncrement": null, - "defaultValue": "", - "stndDictId": null, - "stndDictKey": null, - "stndFieldId": null, - "stndFieldKey": null, - "mark": null, - "attr1": null, - "attr2": null, - "attr3": null, - "attr4": null, - "attr5": null, - "attr6": null, - "attr7": null, - "attr8": null, - "attr9": null, - "attr10": null, - "attr11": null, - "attr12": null, - "attr13": null, - "attr14": null, - "attr15": null, - "attr16": null, - "attr17": null, - "attr18": null, - "attr19": null, - "attr20": null, - "origin": null, - "stndComplianceType": null, - "stndComplianceLevel": null, - "updatedUserId": null, - "createdUserId": null - }, - { - "id": "D77EEF3E-60D0-449F-8E94-619785DD8F1C", - "defKey": "memo", - "defName": "备注", - "intro": "", - "baseDataType": "VARCHAR", - "bizDomainType": "", - "dbDataType": "VARCHAR", - "dataLen": 512, - "numScale": "", - "primaryKey": 0, - "notNull": 1, - "autoIncrement": 0, - "defaultValue": "''", - "stndDictId": "", - "stndFieldId": "", - "stndDictKey": "", - "stndFieldKey": "", - "stndComplianceLevel": "", - "stndComplianceType": "", - "dictFrom": "", - "dictItems": [], - "fieldTier": "", - "mark": null, - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "attr10": "", - "attr11": "", - "attr12": "", - "attr13": "", - "attr14": "", - "attr15": "", - "attr16": "", - "attr17": "", - "attr18": "PDManer", - "attr19": "", - "attr20": "1445C463-8DF1-46FD-91E6-83FE4EE2A228", - "origin": "UI" - }, - { - "id": "EF7583D8-A19D-4FB5-8052-80A886C707D4", - "defKey": "creator_id", - "defName": "创建人 Id", - "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": "3E76AB4F-4F37-4CB0-8C03-942BD5A08718", - "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": "45BB4EE6-53AA-4EB6-88C6-8D6F56F86DD2", - "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": "26C9C1D8-B921-49B4-8E2C-582B3988DAE8", - "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": "3A8C7853-53D7-4C83-80B2-61F10D7F7251", - "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": "B41E8EBF-1F5F-4DB9-BE5C-224CBAA5AD02", - "type": "PRIMARY KEY", - "defKey": null, - "defName": null, - "intro": null, - "orderValue": null, - "fields": [] - } - ] - }, { "id": "153541F6-C971-4324-B97C-BEF689627B24", "type": "P", @@ -16853,7 +15443,7 @@ "dbDataType": "BIGINT", "dataLen": null, "numScale": null, - "primaryKey": null, + "primaryKey": 1, "notNull": 1, "autoIncrement": null, "defaultValue": null, @@ -17170,11 +15760,11 @@ "defName": "系统库存", "intro": null, "orderValue": null, - "baseDataType": "DECIMAL", + "baseDataType": "INT", "bizDomainType": "", - "dbDataType": "DECIMAL", - "dataLen": 16, - "numScale": 6, + "dbDataType": "INT", + "dataLen": "", + "numScale": "", "primaryKey": null, "notNull": 1, "autoIncrement": null, @@ -17216,15 +15806,15 @@ "defName": "实际库存", "intro": null, "orderValue": null, - "baseDataType": "DECIMAL", + "baseDataType": "INT", "bizDomainType": "", - "dbDataType": "DECIMAL", - "dataLen": 16, - "numScale": 6, + "dbDataType": "INT", + "dataLen": "", + "numScale": "", "primaryKey": null, "notNull": 1, "autoIncrement": null, - "defaultValue": "0.0", + "defaultValue": "", "stndDictId": null, "stndDictKey": null, "stndFieldId": null, @@ -17262,15 +15852,15 @@ "defName": "差异数量", "intro": null, "orderValue": null, - "baseDataType": "DECIMAL", + "baseDataType": "INT", "bizDomainType": "", - "dbDataType": "DECIMAL", + "dbDataType": "INT", "dataLen": "", "numScale": "", "primaryKey": null, "notNull": 1, "autoIncrement": null, - "defaultValue": "0.0", + "defaultValue": "", "stndDictId": null, "stndDictKey": null, "stndFieldId": null, @@ -17302,6 +15892,52 @@ "updatedUserId": null, "createdUserId": null }, + { + "id": "3621E6DF-6AF5-4049-A487-4DB53F2FA8DF", + "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": "3C79D303-EE0D-439E-A280-78F7EFDA36E7", "defKey": "suggestion", @@ -20987,7 +19623,7 @@ "id": "99BD14DF-F3A1-46A7-8238-3CC7B7AA3745", "defKey": "user_scope", "defName": "适用用户", - "intro": "结构类型:{strategy: None | All | Specify,ids:long[]}", + "intro": "结构类型:{strategy: Wu | ZhiDing | SuoYou,ids:long[]}", "baseDataType": "TEXT", "bizDomainType": "", "dbDataType": "TEXT", @@ -21055,7 +19691,7 @@ "id": "2FCE3A67-11F3-434C-A3EB-D7792AFF623D", "defKey": "station_scope", "defName": "适用站点", - "intro": "结构类型:{strategy: None | All | Specify,ids:long[]}", + "intro": "结构类型:{strategy: Wu | ZhiDing | SuoYou,ids:long[]}", "baseDataType": "TEXT", "bizDomainType": "", "dbDataType": "TEXT", @@ -21123,7 +19759,7 @@ "id": "DE960F53-340C-44C7-8108-67F725944E22", "defKey": "goods_scope", "defName": "适用产品", - "intro": "结构类型:{strategy: None | All | Specify,ids:long[]}", + "intro": "结构类型:{strategy: Wu | ZhiDing | SuoYou,ids:long[]}", "baseDataType": "TEXT", "bizDomainType": "", "dbDataType": "TEXT", @@ -30204,7 +28840,7 @@ "id": "3A320857-94C6-46AE-BE07-823A7C4F581F", "defKey": "user_scope", "defName": "适用用户", - "intro": "结构类型:{strategy: None | All | Specify,ids:long[]}", + "intro": "结构类型:{strategy: Wu | ZhiDing | SuoYou,ids:long[]}", "baseDataType": "TEXT", "bizDomainType": "", "dbDataType": "TEXT", @@ -30272,7 +28908,7 @@ "id": "4270C166-11F1-4420-BA9A-31449DCED60E", "defKey": "station_scope", "defName": "适用站点", - "intro": "结构类型:{strategy: None | All | Specify,ids:long[]}", + "intro": "结构类型:{strategy: Wu | ZhiDing | SuoYou,ids:long[]}", "baseDataType": "TEXT", "bizDomainType": "", "dbDataType": "TEXT", @@ -30340,7 +28976,7 @@ "id": "9A55E6F2-B165-4788-A6BA-00FE644E4CF6", "defKey": "goods_scope", "defName": "适用产品", - "intro": "结构类型:{strategy: None | All | Specify,ids:long[]}", + "intro": "结构类型:{strategy: Wu | ZhiDing | SuoYou,ids:long[]}", "baseDataType": "TEXT", "bizDomainType": "", "dbDataType": "TEXT", @@ -33849,6 +32485,764 @@ "attr20": "", "origin": "PASTE" }, + { + "id": "6F545B37-6049-42EE-951B-8DC5FD9290BA", + "defKey": "sn", + "defName": "编号", + "intro": null, + "baseDataType": "VARCHAR", + "bizDomainType": "", + "dbDataType": "VARCHAR", + "dataLen": 128, + "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": "06661385-5B0A-403D-BA55-7B3DDA1048C7", + "defKey": "responsible_id", + "defName": "责任人 Id", + "intro": "sys_user.id", + "baseDataType": "BIGINT", + "bizDomainType": "", + "dbDataType": "BIGINT", + "dataLen": null, + "numScale": null, + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": null, + "stndFieldId": null, + "stndDictKey": null, + "stndFieldKey": null, + "stndComplianceLevel": null, + "stndComplianceType": null, + "dictFrom": "", + "dictItems": null, + "fieldTier": "", + "mark": null, + "attr1": null, + "attr2": null, + "attr3": null, + "attr4": null, + "attr5": null, + "attr6": null, + "attr7": null, + "attr8": null, + "attr9": null, + "attr10": null, + "attr11": null, + "attr12": null, + "attr13": null, + "attr14": null, + "attr15": null, + "attr16": null, + "attr17": null, + "attr18": null, + "attr19": null, + "attr20": null, + "origin": "PASTE" + }, + { + "id": "EC7574E0-6089-4A24-A9C7-B8B52C872086", + "defKey": "warehouse_id", + "defName": "仓库 Id", + "intro": "wh_warehouse.id", + "baseDataType": "BIGINT", + "bizDomainType": "", + "dbDataType": "BIGINT", + "dataLen": null, + "numScale": null, + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": null, + "stndDictId": null, + "stndFieldId": null, + "stndDictKey": null, + "stndFieldKey": null, + "stndComplianceLevel": null, + "stndComplianceType": null, + "dictFrom": "", + "dictItems": null, + "fieldTier": "", + "mark": null, + "attr1": null, + "attr2": null, + "attr3": null, + "attr4": null, + "attr5": null, + "attr6": null, + "attr7": null, + "attr8": null, + "attr9": null, + "attr10": null, + "attr11": null, + "attr12": null, + "attr13": null, + "attr14": null, + "attr15": null, + "attr16": null, + "attr17": null, + "attr18": null, + "attr19": null, + "attr20": null, + "origin": "PASTE" + }, + { + "id": "C8A5CA81-2125-4897-9211-98C2AD4C470E", + "defKey": "location", + "defName": "存放位置", + "intro": null, + "baseDataType": "VARCHAR", + "bizDomainType": "", + "dbDataType": "VARCHAR", + "dataLen": 128, + "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": "4AA9BED1-503F-4F8E-92F8-02EC9A5FA08E", + "defKey": "in_time", + "defName": "入库时间", + "intro": null, + "baseDataType": "DATETIME", + "bizDomainType": "", + "dbDataType": "DATETIME", + "dataLen": null, + "numScale": null, + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": null, + "stndDictId": null, + "stndFieldId": null, + "stndDictKey": null, + "stndFieldKey": null, + "stndComplianceLevel": null, + "stndComplianceType": null, + "dictFrom": "", + "dictItems": null, + "fieldTier": "", + "mark": null, + "attr1": null, + "attr2": null, + "attr3": null, + "attr4": null, + "attr5": null, + "attr6": null, + "attr7": null, + "attr8": null, + "attr9": null, + "attr10": null, + "attr11": null, + "attr12": null, + "attr13": null, + "attr14": null, + "attr15": null, + "attr16": null, + "attr17": null, + "attr18": null, + "attr19": null, + "attr20": null, + "origin": "PASTE" + }, + { + "id": "534B410A-5D21-4C88-A134-B1D419C9E4AD", + "defKey": "order_category", + "defName": "单据类型", + "intro": null, + "baseDataType": "VARCHAR", + "bizDomainType": "", + "dbDataType": "VARCHAR", + "dataLen": 16, + "numScale": null, + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": null, + "stndDictId": "order_category", + "stndFieldId": null, + "stndDictKey": "order_category", + "stndFieldKey": null, + "stndComplianceLevel": null, + "stndComplianceType": null, + "dictFrom": "Manual", + "dictItems": [ + { + "itemKey": "XiaoShou", + "itemName": "销售", + "parentKey": "", + "intro": "", + "id": "A7B0FB0C-CDB4-4AC3-BC1E-B178A82AA5B4" + }, + { + "itemKey": "CaiGou", + "itemName": "采购", + "parentKey": "", + "intro": "", + "id": "7938B08C-655D-46ED-B0C0-9F2BC79D66DD" + }, + { + "itemKey": "QiTa", + "itemName": "其他", + "parentKey": "", + "intro": "", + "id": "D09CB9BB-41B8-48FE-A704-ED77FCBFF558" + } + ], + "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": "865890E6-38D4-4A8B-921B-90377597BB5E", + "defKey": "order_id", + "defName": "采购单 Id", + "intro": "wh_purchase_order.id", + "baseDataType": "BIGINT", + "bizDomainType": "", + "dbDataType": "BIGINT", + "dataLen": null, + "numScale": null, + "primaryKey": 0, + "notNull": 0, + "autoIncrement": 0, + "defaultValue": null, + "stndDictId": null, + "stndFieldId": null, + "stndDictKey": null, + "stndFieldKey": null, + "stndComplianceLevel": null, + "stndComplianceType": null, + "dictFrom": "", + "dictItems": null, + "fieldTier": "", + "mark": null, + "attr1": null, + "attr2": null, + "attr3": null, + "attr4": null, + "attr5": null, + "attr6": null, + "attr7": null, + "attr8": null, + "attr9": null, + "attr10": null, + "attr11": null, + "attr12": null, + "attr13": null, + "attr14": null, + "attr15": null, + "attr16": null, + "attr17": null, + "attr18": null, + "attr19": null, + "attr20": null, + "origin": "PASTE" + }, + { + "id": "5AA28643-3D94-4292-A352-5226435F080C", + "defKey": "order_sn", + "defName": "采购单单号", + "intro": "wh_purchase_order.sn", + "baseDataType": "VARCHAR", + "bizDomainType": "", + "dbDataType": "VARCHAR", + "dataLen": 128, + "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": "2A86F155-348B-4ED6-9F7E-8C520BDE0DEC", + "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": "EA69B968-286B-4081-A088-D49A9CF2934F", + "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": "80597DC3-1DC1-4FA3-9C79-9387C859ED96", + "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": "97CE2813-7385-4840-8049-8C155E99DF92", + "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": "A8D9A936-D562-423B-B2CB-93EA4728F11C", + "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": "8EB24008-AEDE-428C-8DDD-D280986DCE39", + "defKey": "quantity", + "defName": "数量", + "intro": "", + "baseDataType": "INT", + "bizDomainType": "", + "dbDataType": "INT", + "dataLen": "", + "numScale": "", + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": null, + "stndFieldId": null, + "stndDictKey": null, + "stndFieldKey": null, + "stndComplianceLevel": null, + "stndComplianceType": null, + "dictFrom": "", + "dictItems": null, + "fieldTier": "", + "mark": null, + "attr1": null, + "attr2": null, + "attr3": null, + "attr4": null, + "attr5": null, + "attr6": null, + "attr7": null, + "attr8": null, + "attr9": null, + "attr10": null, + "attr11": null, + "attr12": null, + "attr13": null, + "attr14": null, + "attr15": null, + "attr16": null, + "attr17": null, + "attr18": null, + "attr19": null, + "attr20": null, + "origin": "PASTE" + }, + { + "id": "6CE541A6-08B1-40C5-AE8B-5F3A23E0E1A5", + "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": "9EE8FAF5-0944-49E1-A7ED-05F240D97315", + "defKey": "memo", + "defName": "备注", + "intro": "", + "baseDataType": "VARCHAR", + "bizDomainType": "", + "dbDataType": "VARCHAR", + "dataLen": 512, + "numScale": "", + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "''", + "stndDictId": "", + "stndFieldId": "", + "stndDictKey": "", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "", + "dictItems": [], + "fieldTier": "", + "mark": null, + "attr1": "", + "attr2": "", + "attr3": "", + "attr4": "", + "attr5": "", + "attr6": "", + "attr7": "", + "attr8": "", + "attr9": "", + "attr10": "", + "attr11": "", + "attr12": "", + "attr13": "", + "attr14": "", + "attr15": "", + "attr16": "", + "attr17": "", + "attr18": "PDManer", + "attr19": "", + "attr20": "1445C463-8DF1-46FD-91E6-83FE4EE2A228", + "origin": "PASTE" + }, { "id": "0DA25A0A-A06F-49FD-9564-EF2E63B3A4B8", "defKey": "creator_id", @@ -34136,6 +33530,764 @@ "attr20": "", "origin": "PASTE" }, + { + "id": "C641EDCA-76E7-4BCE-AD14-715F0EC5A0D9", + "defKey": "sn", + "defName": "编号", + "intro": "", + "baseDataType": "VARCHAR", + "bizDomainType": "", + "dbDataType": "VARCHAR", + "dataLen": 128, + "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": "8C163DE9-81C3-4C1B-932B-EB963507F57D", + "defKey": "responsible_id", + "defName": "责任人 Id", + "intro": "sys_user.id", + "baseDataType": "BIGINT", + "bizDomainType": "", + "dbDataType": "BIGINT", + "dataLen": null, + "numScale": null, + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": null, + "stndFieldId": null, + "stndDictKey": null, + "stndFieldKey": null, + "stndComplianceLevel": null, + "stndComplianceType": null, + "dictFrom": "", + "dictItems": null, + "fieldTier": "", + "mark": null, + "attr1": null, + "attr2": null, + "attr3": null, + "attr4": null, + "attr5": null, + "attr6": null, + "attr7": null, + "attr8": null, + "attr9": null, + "attr10": null, + "attr11": null, + "attr12": null, + "attr13": null, + "attr14": null, + "attr15": null, + "attr16": null, + "attr17": null, + "attr18": null, + "attr19": null, + "attr20": null, + "origin": "PASTE" + }, + { + "id": "E3DAB3D1-7EBE-4FC5-B0B7-CA3079C38D89", + "defKey": "warehouse_id", + "defName": "仓库 Id", + "intro": "wh_warehouse.id", + "baseDataType": "BIGINT", + "bizDomainType": "", + "dbDataType": "BIGINT", + "dataLen": null, + "numScale": null, + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": null, + "stndDictId": null, + "stndFieldId": null, + "stndDictKey": null, + "stndFieldKey": null, + "stndComplianceLevel": null, + "stndComplianceType": null, + "dictFrom": "", + "dictItems": null, + "fieldTier": "", + "mark": null, + "attr1": null, + "attr2": null, + "attr3": null, + "attr4": null, + "attr5": null, + "attr6": null, + "attr7": null, + "attr8": null, + "attr9": null, + "attr10": null, + "attr11": null, + "attr12": null, + "attr13": null, + "attr14": null, + "attr15": null, + "attr16": null, + "attr17": null, + "attr18": null, + "attr19": null, + "attr20": null, + "origin": "PASTE" + }, + { + "id": "E6F2DB0F-F081-451B-8A0A-4419523EB59E", + "defKey": "location", + "defName": "存放位置", + "intro": null, + "baseDataType": "VARCHAR", + "bizDomainType": "", + "dbDataType": "VARCHAR", + "dataLen": 128, + "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": "0B510B87-1C63-48B2-BE83-895A1F244009", + "defKey": "out_time", + "defName": "出库时间", + "intro": null, + "baseDataType": "DATETIME", + "bizDomainType": "", + "dbDataType": "DATETIME", + "dataLen": null, + "numScale": null, + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": null, + "stndDictId": null, + "stndFieldId": null, + "stndDictKey": null, + "stndFieldKey": null, + "stndComplianceLevel": null, + "stndComplianceType": null, + "dictFrom": "", + "dictItems": null, + "fieldTier": "", + "mark": null, + "attr1": null, + "attr2": null, + "attr3": null, + "attr4": null, + "attr5": null, + "attr6": null, + "attr7": null, + "attr8": null, + "attr9": null, + "attr10": null, + "attr11": null, + "attr12": null, + "attr13": null, + "attr14": null, + "attr15": null, + "attr16": null, + "attr17": null, + "attr18": null, + "attr19": null, + "attr20": null, + "origin": "PASTE" + }, + { + "id": "24433B38-6C1A-4B68-AE13-D61983DF02EF", + "defKey": "order_category", + "defName": "单据类型", + "intro": null, + "baseDataType": "VARCHAR", + "bizDomainType": "", + "dbDataType": "VARCHAR", + "dataLen": 16, + "numScale": null, + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": null, + "stndDictId": "order_category", + "stndFieldId": null, + "stndDictKey": "order_category", + "stndFieldKey": null, + "stndComplianceLevel": null, + "stndComplianceType": null, + "dictFrom": "Manual", + "dictItems": [ + { + "itemKey": "XiaoShou", + "itemName": "销售", + "parentKey": "", + "intro": "", + "id": "A7B0FB0C-CDB4-4AC3-BC1E-B178A82AA5B4" + }, + { + "itemKey": "CaiGou", + "itemName": "采购", + "parentKey": "", + "intro": "", + "id": "7938B08C-655D-46ED-B0C0-9F2BC79D66DD" + }, + { + "itemKey": "QiTa", + "itemName": "其他", + "parentKey": "", + "intro": "", + "id": "D09CB9BB-41B8-48FE-A704-ED77FCBFF558" + } + ], + "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": "7CB115F5-8C8A-4C28-B8EF-3C4BF550EA68", + "defKey": "order_id", + "defName": "销售单 Id", + "intro": "wh_sales_order.id", + "baseDataType": "BIGINT", + "bizDomainType": "", + "dbDataType": "BIGINT", + "dataLen": null, + "numScale": null, + "primaryKey": 0, + "notNull": 0, + "autoIncrement": 0, + "defaultValue": null, + "stndDictId": null, + "stndFieldId": null, + "stndDictKey": null, + "stndFieldKey": null, + "stndComplianceLevel": null, + "stndComplianceType": null, + "dictFrom": "", + "dictItems": null, + "fieldTier": "", + "mark": null, + "attr1": null, + "attr2": null, + "attr3": null, + "attr4": null, + "attr5": null, + "attr6": null, + "attr7": null, + "attr8": null, + "attr9": null, + "attr10": null, + "attr11": null, + "attr12": null, + "attr13": null, + "attr14": null, + "attr15": null, + "attr16": null, + "attr17": null, + "attr18": null, + "attr19": null, + "attr20": null, + "origin": "PASTE" + }, + { + "id": "887680E0-2F2D-4EBB-92BC-EE40F819A0EC", + "defKey": "order_sn", + "defName": "销售单号", + "intro": "wh_sales_order.sn", + "baseDataType": "VARCHAR", + "bizDomainType": "", + "dbDataType": "VARCHAR", + "dataLen": 128, + "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": "2E3CA382-8C0C-4034-9053-970F794979A9", + "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": "4DE0F6A9-BFA4-4C7D-BBBD-032FB0081E9A", + "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": "96F1F6D5-6E99-4974-BAA8-3179723B9D77", + "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": "7D4994BE-0DDB-4594-B76C-8E5F2A60C1BC", + "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": "DEC5DB4D-9417-4E27-B3AC-826845851C7D", + "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": "6333C020-25DA-4C8E-960A-124F857369CD", + "defKey": "quantity", + "defName": "数量", + "intro": "", + "baseDataType": "INT", + "bizDomainType": "", + "dbDataType": "INT", + "dataLen": "", + "numScale": "", + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": null, + "stndFieldId": null, + "stndDictKey": null, + "stndFieldKey": null, + "stndComplianceLevel": null, + "stndComplianceType": null, + "dictFrom": "", + "dictItems": null, + "fieldTier": "", + "mark": null, + "attr1": null, + "attr2": null, + "attr3": null, + "attr4": null, + "attr5": null, + "attr6": null, + "attr7": null, + "attr8": null, + "attr9": null, + "attr10": null, + "attr11": null, + "attr12": null, + "attr13": null, + "attr14": null, + "attr15": null, + "attr16": null, + "attr17": null, + "attr18": null, + "attr19": null, + "attr20": null, + "origin": "PASTE" + }, + { + "id": "A054034E-17D0-42AF-BE12-87879D7AC5E2", + "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": "C2165344-2B33-4A6A-8545-2946E58DCB66", + "defKey": "memo", + "defName": "备注", + "intro": "", + "baseDataType": "VARCHAR", + "bizDomainType": "", + "dbDataType": "VARCHAR", + "dataLen": 512, + "numScale": "", + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "''", + "stndDictId": "", + "stndFieldId": "", + "stndDictKey": "", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "", + "dictItems": [], + "fieldTier": "", + "mark": null, + "attr1": "", + "attr2": "", + "attr3": "", + "attr4": "", + "attr5": "", + "attr6": "", + "attr7": "", + "attr8": "", + "attr9": "", + "attr10": "", + "attr11": "", + "attr12": "", + "attr13": "", + "attr14": "", + "attr15": "", + "attr16": "", + "attr17": "", + "attr18": "PDManer", + "attr19": "", + "attr20": "1445C463-8DF1-46FD-91E6-83FE4EE2A228", + "origin": "PASTE" + }, { "id": "B2390985-FB7A-4C60-8223-07F89F50833A", "defKey": "creator_id", @@ -34369,580 +34521,6 @@ ], "indexes": [] }, - { - "id": "A8653A3C-7114-457C-A0C5-04A450966419", - "schemaName": null, - "defKey": "wh_in_ordr_item", - "defName": "入库明细", - "intro": "", - "type": "P", - "fields": [ - { - "id": "B7D6C6D5-9D74-4C71-A0C7-A18322E92417", - "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": "1A3B8ED7-294C-4BB1-BF26-BE90B9EA6420", - "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": "A1D00AC6-93EC-445B-A48F-C74C05223809", - "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": "92751D69-F9C1-42FD-A954-96BEA1EA8563", - "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": "18FCDE36-DA56-4D54-896D-FD886C79366F", - "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": "49AB7162-E628-4DAC-B642-E9B79283D9EE", - "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": "48D07E14-B6A7-441A-824E-0910F7F92010", - "schemaName": null, - "defKey": "wh_out_ordr_item", - "defName": "出库明细", - "intro": "", - "type": "P", - "fields": [ - { - "id": "995779BF-6D58-4565-9369-4F9A251AA734", - "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": "09755CEF-55AE-47CC-A71B-8C0AF5940381", - "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": "6E991E5C-0EC3-48B2-9353-C5634946C7D2", - "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": "CB10EA8E-EC1C-431E-A776-3820BF96EEDF", - "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": "9754CF99-EF96-4EDD-90DD-0C1FDB6A6774", - "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": "121A6CF2-064B-4165-A14A-851E260A35DA", - "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": "0B25C484-FFCC-4583-8DE5-26402A7104BA", "schemaName": null, @@ -34997,6 +34575,679 @@ "attr20": "", "origin": "PASTE" }, + { + "id": "8A799C34-0040-49FC-A362-EB1E7C65E8EF", + "defKey": "sn", + "defName": "编号", + "intro": "", + "baseDataType": "VARCHAR", + "bizDomainType": "", + "dbDataType": "VARCHAR", + "dataLen": 128, + "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": "05D96AA0-5321-4D27-8A58-4EE0460CB7AC", + "defKey": "purchase_order_status", + "defName": "状态", + "intro": "", + "baseDataType": "VARCHAR", + "bizDomainType": "", + "dbDataType": "VARCHAR", + "dataLen": 64, + "numScale": "", + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "purchase_order_status", + "stndFieldId": "", + "stndDictKey": "purchase_order_status", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "Manual", + "dictItems": [ + { + "itemKey": "JinXingZhong", + "itemName": "进行中", + "parentKey": "", + "intro": "", + "id": "463EF98F-75B7-4F89-8BFE-353B60EE2C31" + }, + { + "itemKey": "YiDaoHuo", + "itemName": "已到货", + "parentKey": "", + "intro": "", + "id": "CE31D0D3-CE02-4ED6-8591-218AA19106CD" + }, + { + "itemKey": "YiRuKu", + "itemName": "已入库", + "parentKey": "", + "intro": "", + "id": "2B09C9FC-549E-45C4-9653-C4753487A8C6" + }, + { + "itemKey": "YiQuXiao", + "itemName": "已取消", + "parentKey": "", + "intro": "", + "id": "13FEDA85-F837-4227-B266-C430EDF5447F" + } + ], + "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": "D9C361D9-2A9B-4BB8-8597-57CB0859B586", + "defKey": "customer_id", + "defName": "供货客户 Id", + "intro": "", + "baseDataType": "BIGINT", + "bizDomainType": "", + "dbDataType": "BIGINT", + "dataLen": "", + "numScale": "", + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "", + "stndFieldId": "", + "stndDictKey": "", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "", + "dictItems": null, + "fieldTier": "", + "mark": null, + "attr1": "", + "attr2": "", + "attr3": "", + "attr4": "", + "attr5": "", + "attr6": "", + "attr7": "", + "attr8": "", + "attr9": "", + "attr10": "", + "attr11": "", + "attr12": "", + "attr13": "", + "attr14": "", + "attr15": "", + "attr16": "", + "attr17": "", + "attr18": "", + "attr19": "", + "attr20": "", + "origin": "UI" + }, + { + "id": "C313C5DB-89CE-4193-9B00-C6C32AE853D8", + "defKey": "purchase_date", + "defName": "采购日期", + "intro": null, + "baseDataType": "DATE", + "bizDomainType": "", + "dbDataType": "DATE", + "dataLen": null, + "numScale": null, + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": null, + "stndDictId": null, + "stndFieldId": null, + "stndDictKey": null, + "stndFieldKey": null, + "stndComplianceLevel": null, + "stndComplianceType": null, + "dictFrom": "", + "dictItems": null, + "fieldTier": "", + "mark": null, + "attr1": null, + "attr2": null, + "attr3": null, + "attr4": null, + "attr5": null, + "attr6": null, + "attr7": null, + "attr8": null, + "attr9": null, + "attr10": null, + "attr11": null, + "attr12": null, + "attr13": null, + "attr14": null, + "attr15": null, + "attr16": null, + "attr17": null, + "attr18": null, + "attr19": null, + "attr20": null, + "origin": "PASTE" + }, + { + "id": "C4F825B3-047E-4DCF-8520-8C84A95CD42C", + "defKey": "arrival_date", + "defName": "到货日期", + "intro": null, + "baseDataType": "DATE", + "bizDomainType": "", + "dbDataType": "DATE", + "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": "092D294F-AFCA-48CD-80EC-EE0F0DAEF330", + "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": "B800BC09-3A66-4884-9444-C75C6D6BA9C0", + "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": "085A2332-BB67-4EC2-9DE7-FA25E859B93C", + "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": "A12D6B0C-FC5B-4149-8BD6-2963B49B58BD", + "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": "7CF0D820-64DF-4FD7-BA33-8E69670CE4EE", + "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": "12133BF9-7508-4638-9D9D-213F6EC8D244", + "defKey": "quantity", + "defName": "数量", + "intro": "", + "baseDataType": "INT", + "bizDomainType": "", + "dbDataType": "INT", + "dataLen": "", + "numScale": "", + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": null, + "stndFieldId": null, + "stndDictKey": null, + "stndFieldKey": null, + "stndComplianceLevel": null, + "stndComplianceType": null, + "dictFrom": "", + "dictItems": null, + "fieldTier": "", + "mark": null, + "attr1": null, + "attr2": null, + "attr3": null, + "attr4": null, + "attr5": null, + "attr6": null, + "attr7": null, + "attr8": null, + "attr9": null, + "attr10": null, + "attr11": null, + "attr12": null, + "attr13": null, + "attr14": null, + "attr15": null, + "attr16": null, + "attr17": null, + "attr18": null, + "attr19": null, + "attr20": null, + "origin": "PASTE" + }, + { + "id": "CEE0F9ED-2463-4297-BFE8-79A48F4FAC97", + "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": "6102BDFA-D0AA-49EC-A563-C77AAF63DF1A", + "defKey": "total_money", + "defName": "总金额", + "intro": "单位:元", + "baseDataType": "DECIMAL", + "bizDomainType": "", + "dbDataType": "DECIMAL", + "dataLen": 14, + "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": "PASTE" + }, + { + "id": "5084BB59-025D-4842-93B5-BD2BD68D1F93", + "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": "A8D86085-D3FD-42B3-BC03-25E792D9B9B8", "defKey": "creator_id", @@ -35231,15 +35482,15 @@ "indexes": [] }, { - "id": "4FF32B1E-3845-417B-B4A6-EEF2E4AB4961", + "id": "FC24E76A-8EA4-4A60-BC0F-B0B5AE154AFE", "schemaName": null, - "defKey": "wh_purchase_order_item", - "defName": "采购单明细", + "defKey": "wh_sales_order", + "defName": "销售单", "intro": "", "type": "P", "fields": [ { - "id": "7226BCFC-24CA-4E3C-B3D3-FA3DD467E223", + "id": "397D078E-EDE8-4317-884C-205FE836D9C2", "defKey": "id", "defName": "Id", "intro": "", @@ -35285,10 +35536,131 @@ "origin": "PASTE" }, { - "id": "F822DB59-6A91-4A51-A86E-2BF3609E4C1B", - "defKey": "creator_id", - "defName": "创建人 Id", - "intro": " sys_user.id", + "id": "0DD7B844-92B3-48C8-8473-FC83660092FC", + "defKey": "sn", + "defName": "编号", + "intro": "", + "baseDataType": "VARCHAR", + "bizDomainType": "", + "dbDataType": "VARCHAR", + "dataLen": 128, + "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": "D53F6AD5-1A84-4601-AD3F-2197BDA68264", + "defKey": "sales_order_status", + "defName": "状态", + "intro": "", + "baseDataType": "VARCHAR", + "bizDomainType": "", + "dbDataType": "VARCHAR", + "dataLen": 64, + "numScale": "", + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "sales_order_status", + "stndFieldId": "", + "stndDictKey": "sales_order_status", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "Manual", + "dictItems": [ + { + "itemKey": "JinXingZhong", + "itemName": "进行中", + "parentKey": "", + "intro": "", + "id": "463EF98F-75B7-4F89-8BFE-353B60EE2C31" + }, + { + "itemKey": "YiFaHuo", + "itemName": "已发货", + "parentKey": "", + "intro": "", + "id": "CE31D0D3-CE02-4ED6-8591-218AA19106CD" + }, + { + "itemKey": "YiChuKu", + "itemName": "已出库", + "parentKey": "", + "intro": "", + "id": "2B09C9FC-549E-45C4-9653-C4753487A8C6" + }, + { + "itemKey": "YiQuXiao", + "itemName": "已取消", + "parentKey": "", + "intro": "", + "id": "13FEDA85-F837-4227-B266-C430EDF5447F" + } + ], + "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": "7E015163-8560-4727-83EF-D95922E27A09", + "defKey": "customer_id", + "defName": "购买方客户 Id", + "intro": "", "baseDataType": "BIGINT", "bizDomainType": "", "dbDataType": "BIGINT", @@ -35325,16 +35697,200 @@ "attr15": "", "attr16": "", "attr17": "", - "attr18": "PDManer", + "attr18": "", "attr19": "", "attr20": "", "origin": "PASTE" }, { - "id": "520C51C3-AAFA-4C31-A39B-AD023400F477", - "defKey": "modifier_id", - "defName": "修改人 Id", - "intro": " sys_user.id", + "id": "6B77EC84-0EAA-4B63-A842-EE0B8B1E9968", + "defKey": "order_date", + "defName": "下单日期", + "intro": null, + "baseDataType": "DATE", + "bizDomainType": "", + "dbDataType": "DATE", + "dataLen": null, + "numScale": null, + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": null, + "stndDictId": null, + "stndFieldId": null, + "stndDictKey": null, + "stndFieldKey": null, + "stndComplianceLevel": null, + "stndComplianceType": null, + "dictFrom": "", + "dictItems": null, + "fieldTier": "", + "mark": null, + "attr1": null, + "attr2": null, + "attr3": null, + "attr4": null, + "attr5": null, + "attr6": null, + "attr7": null, + "attr8": null, + "attr9": null, + "attr10": null, + "attr11": null, + "attr12": null, + "attr13": null, + "attr14": null, + "attr15": null, + "attr16": null, + "attr17": null, + "attr18": null, + "attr19": null, + "attr20": null, + "origin": "PASTE" + }, + { + "id": "847116D4-0572-4CC3-800D-E157567E66E1", + "defKey": "shipment_date", + "defName": "发货日期", + "intro": null, + "baseDataType": "DATE", + "bizDomainType": "", + "dbDataType": "DATE", + "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": "0E7615C1-FF47-4119-B856-E0947B882139", + "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": "BF642C25-FC37-4CCB-8949-17DA2E74EB4D", + "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": "97B128D7-B1AC-49E2-85FD-4394D73066C2", + "defKey": "goods_id", + "defName": "产品 Id", + "intro": "", "baseDataType": "BIGINT", "bizDomainType": "", "dbDataType": "BIGINT", @@ -35351,7 +35907,7 @@ "stndComplianceLevel": "", "stndComplianceType": "", "dictFrom": "", - "dictItems": [], + "dictItems": null, "fieldTier": "", "mark": null, "attr1": "", @@ -35371,20 +35927,20 @@ "attr15": "", "attr16": "", "attr17": "", - "attr18": "PDManer", + "attr18": "", "attr19": "", "attr20": "", "origin": "PASTE" }, { - "id": "960510C1-EDA5-4A74-8F7D-A148101DD1A7", - "defKey": "create_time", - "defName": "创建时间", + "id": "CBAD68D7-6EF0-4B8D-9443-A309377388AC", + "defKey": "goods_name", + "defName": "产品名称", "intro": "", - "baseDataType": "DATETIME", + "baseDataType": "VARCHAR", "bizDomainType": "", - "dbDataType": "DATETIME", - "dataLen": "", + "dbDataType": "VARCHAR", + "dataLen": 128, "numScale": "", "primaryKey": 0, "notNull": 1, @@ -35397,7 +35953,7 @@ "stndComplianceLevel": "", "stndComplianceType": "", "dictFrom": "", - "dictItems": [], + "dictItems": null, "fieldTier": "", "mark": null, "attr1": "", @@ -35417,20 +35973,20 @@ "attr15": "", "attr16": "", "attr17": "", - "attr18": "PDManer", + "attr18": "", "attr19": "", "attr20": "", "origin": "PASTE" }, { - "id": "1051B81E-463A-40D9-A647-6D420C7CC130", - "defKey": "modify_time", - "defName": "修改时间", + "id": "E0002556-C225-4FCA-B5EC-C7F175CDA366", + "defKey": "good_sn", + "defName": "商品编码", "intro": "", - "baseDataType": "DATETIME", + "baseDataType": "VARCHAR", "bizDomainType": "", - "dbDataType": "DATETIME", - "dataLen": "", + "dbDataType": "VARCHAR", + "dataLen": 128, "numScale": "", "primaryKey": 0, "notNull": 1, @@ -35443,7 +35999,7 @@ "stndComplianceLevel": "", "stndComplianceType": "", "dictFrom": "", - "dictItems": [], + "dictItems": null, "fieldTier": "", "mark": null, "attr1": "", @@ -35463,25 +36019,71 @@ "attr15": "", "attr16": "", "attr17": "", - "attr18": "PDManer", + "attr18": "", "attr19": "", "attr20": "", "origin": "PASTE" }, { - "id": "3E277E22-20FA-478D-B5BB-591251F9CA7E", - "defKey": "deleted", - "defName": "是否删除", - "intro": " 0-->未删除、1-->已删除", - "baseDataType": "TINYINT", + "id": "34B6AA06-D0A3-4379-AA1B-A6AADEF67A59", + "defKey": "quantity", + "defName": "数量", + "intro": "", + "baseDataType": "INT", "bizDomainType": "", - "dbDataType": "TINYINT", - "dataLen": 1, + "dbDataType": "INT", + "dataLen": "", "numScale": "", "primaryKey": 0, "notNull": 1, "autoIncrement": 0, - "defaultValue": "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": "B67619D4-5684-47D1-9621-B3AAB2CCF7C0", + "defKey": "unit", + "defName": "计量单位", + "intro": "字典代码:unit", + "baseDataType": "VARCHAR", + "bizDomainType": "", + "dbDataType": "VARCHAR", + "dataLen": 16, + "numScale": "", + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "", "stndDictId": "", "stndFieldId": "", "stndDictKey": "", @@ -35489,7 +36091,7 @@ "stndComplianceLevel": "", "stndComplianceType": "", "dictFrom": "", - "dictItems": [], + "dictItems": null, "fieldTier": "", "mark": null, "attr1": "", @@ -35509,36 +36111,71 @@ "attr15": "", "attr16": "", "attr17": "", - "attr18": "PDManer", + "attr18": "", "attr19": "", "attr20": "", "origin": "PASTE" - } - ], - "indexes": [] - }, - { - "id": "FC24E76A-8EA4-4A60-BC0F-B0B5AE154AFE", - "schemaName": null, - "defKey": "wh_sales_order", - "defName": "销售单", - "intro": "", - "type": "P", - "fields": [ + }, { - "id": "397D078E-EDE8-4317-884C-205FE836D9C2", - "defKey": "id", - "defName": "Id", - "intro": "", - "baseDataType": "BIGINT", + "id": "BF1A1561-F477-488F-BCC8-07C82B302E1A", + "defKey": "total_money", + "defName": "总金额", + "intro": "单位:元", + "baseDataType": "DECIMAL", "bizDomainType": "", - "dbDataType": "BIGINT", - "dataLen": "", - "numScale": "", - "primaryKey": 1, + "dbDataType": "DECIMAL", + "dataLen": 14, + "numScale": 2, + "primaryKey": 0, "notNull": 1, "autoIncrement": 0, - "defaultValue": "", + "defaultValue": "0.0", + "stndDictId": "", + "stndFieldId": "", + "stndDictKey": "", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "", + "dictItems": null, + "fieldTier": "", + "mark": null, + "attr1": "", + "attr2": "", + "attr3": "", + "attr4": "", + "attr5": "", + "attr6": "", + "attr7": "", + "attr8": "", + "attr9": "", + "attr10": "", + "attr11": "", + "attr12": "", + "attr13": "", + "attr14": "", + "attr15": "", + "attr16": "", + "attr17": "", + "attr18": "", + "attr19": "", + "attr20": "", + "origin": "PASTE" + }, + { + "id": "892545EB-D2A5-4988-A231-564A73F96C01", + "defKey": "memo", + "defName": "备注", + "intro": "", + "baseDataType": "VARCHAR", + "bizDomainType": "", + "dbDataType": "VARCHAR", + "dataLen": 512, + "numScale": "", + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "''", "stndDictId": "", "stndFieldId": "", "stndDictKey": "", @@ -35804,293 +36441,6 @@ ], "indexes": [] }, - { - "id": "FBD96B03-9549-4BC4-8E04-96EE3D0EB922", - "schemaName": null, - "defKey": "wh_sales_order_item", - "defName": "销售单明细", - "intro": "", - "type": "P", - "fields": [ - { - "id": "1C0C1F6D-782A-4DF4-8326-884BB70D6549", - "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": "B06567C3-0A12-412B-B619-77ECEA0557BD", - "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": "BF297773-20ED-4263-9190-9A6E40119AB0", - "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": "EE634E05-DDB0-4591-BB9D-CD3CA9964EB6", - "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": "6079E4CA-7C47-4DC0-953F-E4EAD5B42933", - "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": "D088869C-5D10-47A5-B275-753A43393B99", - "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": "22ACAD57-2008-4E85-B7E6-A31C50221F49", "schemaName": null, @@ -36145,6 +36495,374 @@ "attr20": "", "origin": "PASTE" }, + { + "id": "FDF94CD7-BE07-40C3-923B-18176BD4930D", + "defKey": "warehouse_id", + "defName": "仓库 Id", + "intro": null, + "baseDataType": "BIGINT", + "bizDomainType": "", + "dbDataType": "BIGINT", + "dataLen": null, + "numScale": null, + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": null, + "stndDictId": null, + "stndFieldId": null, + "stndDictKey": null, + "stndFieldKey": null, + "stndComplianceLevel": null, + "stndComplianceType": null, + "dictFrom": "", + "dictItems": null, + "fieldTier": "", + "mark": null, + "attr1": null, + "attr2": null, + "attr3": null, + "attr4": null, + "attr5": null, + "attr6": null, + "attr7": null, + "attr8": null, + "attr9": null, + "attr10": null, + "attr11": null, + "attr12": null, + "attr13": null, + "attr14": null, + "attr15": null, + "attr16": null, + "attr17": null, + "attr18": null, + "attr19": null, + "attr20": null, + "origin": "PASTE" + }, + { + "id": "B633AFCE-DA3D-4F78-AE07-6AAA42ECD2CF", + "defKey": "goods_id", + "defName": "产品 Id", + "intro": null, + "baseDataType": "BIGINT", + "bizDomainType": "", + "dbDataType": "BIGINT", + "dataLen": null, + "numScale": null, + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": null, + "stndDictId": null, + "stndFieldId": null, + "stndDictKey": null, + "stndFieldKey": null, + "stndComplianceLevel": null, + "stndComplianceType": null, + "dictFrom": "", + "dictItems": null, + "fieldTier": "", + "mark": null, + "attr1": null, + "attr2": null, + "attr3": null, + "attr4": null, + "attr5": null, + "attr6": null, + "attr7": null, + "attr8": null, + "attr9": null, + "attr10": null, + "attr11": null, + "attr12": null, + "attr13": null, + "attr14": null, + "attr15": null, + "attr16": null, + "attr17": null, + "attr18": null, + "attr19": null, + "attr20": null, + "origin": "PASTE" + }, + { + "id": "858ECDB9-8CE8-4F22-A6AF-2700A3F853B0", + "defKey": "location", + "defName": "存放位置", + "intro": null, + "baseDataType": "VARCHAR", + "bizDomainType": "", + "dbDataType": "VARCHAR", + "dataLen": 128, + "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": "021FD2B8-A725-4348-B046-ABDD92739763", + "defKey": "stock_quantity", + "defName": "当前库存数量", + "intro": null, + "baseDataType": "INT", + "bizDomainType": "", + "dbDataType": "INT", + "dataLen": "", + "numScale": "", + "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": "5AF22117-81B1-4669-BA61-A76FB59FB98C", + "defKey": "lock_quantity", + "defName": "锁定数量", + "intro": null, + "baseDataType": "INT", + "bizDomainType": "", + "dbDataType": "INT", + "dataLen": "", + "numScale": "", + "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": "828CD9F5-E4D2-4D59-8C8B-C88AF4C04B60", + "defKey": "total_quantity", + "defName": "总量", + "intro": null, + "baseDataType": "INT", + "bizDomainType": "", + "dbDataType": "INT", + "dataLen": "", + "numScale": "", + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": null, + "stndFieldId": null, + "stndDictKey": null, + "stndFieldKey": null, + "stndComplianceLevel": null, + "stndComplianceType": null, + "dictFrom": "", + "dictItems": null, + "fieldTier": "", + "mark": null, + "attr1": null, + "attr2": null, + "attr3": null, + "attr4": null, + "attr5": null, + "attr6": null, + "attr7": null, + "attr8": null, + "attr9": null, + "attr10": null, + "attr11": null, + "attr12": null, + "attr13": null, + "attr14": null, + "attr15": null, + "attr16": null, + "attr17": null, + "attr18": null, + "attr19": null, + "attr20": null, + "origin": "PASTE" + }, + { + "id": "075DF93E-0B4B-4A07-AADF-AB178ABFCAED", + "defKey": "remaining_quantity", + "defName": "剩余量", + "intro": "", + "baseDataType": "INT", + "bizDomainType": "", + "dbDataType": "INT", + "dataLen": "", + "numScale": "", + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "", + "stndFieldId": "", + "stndDictKey": "", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "", + "dictItems": null, + "fieldTier": "", + "mark": null, + "attr1": "", + "attr2": "", + "attr3": "", + "attr4": "", + "attr5": "", + "attr6": "", + "attr7": "", + "attr8": "", + "attr9": "", + "attr10": "", + "attr11": "", + "attr12": "", + "attr13": "", + "attr14": "", + "attr15": "", + "attr16": "", + "attr17": "", + "attr18": "", + "attr19": "", + "attr20": "", + "origin": "PASTE" + }, + { + "id": "DA090487-BF2B-46AB-9249-F8AA7FB9BF57", + "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": "DDCE2943-6145-4EDF-A400-06A0073E911A", "defKey": "creator_id", @@ -36378,5116 +37096,6 @@ ], "indexes": [] }, - { - "id": "EA551124-2954-4538-9098-D44E8EEEE955", - "type": "P", - "defKey": "inventory", - "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": "63508BBA-C74F-4A26-8A5F-57C93C7DA336", - "defKey": "inventory_id", - "defName": "库存ID(主键)", - "intro": null, - "orderValue": null, - "baseDataType": "BIGINT", - "bizDomainType": "", - "dbDataType": "BIGINT", - "dataLen": null, - "numScale": null, - "primaryKey": 1, - "notNull": 1, - "autoIncrement": 1, - "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": "05CBE632-3D63-47C0-BA44-D8EFB09DC53A", - "defKey": "product_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": "604FCC72-F45C-4BFB-B699-B0B25BE4528B", - "defKey": "warehouse_id", - "defName": "仓库ID", - "intro": null, - "orderValue": null, - "baseDataType": "BIGINT", - "bizDomainType": "", - "dbDataType": "BIGINT", - "dataLen": null, - "numScale": null, - "primaryKey": null, - "notNull": 1, - "autoIncrement": null, - "defaultValue": null, - "stndDictId": null, - "stndDictKey": null, - "stndFieldId": null, - "stndFieldKey": null, - "mark": null, - "attr1": null, - "attr2": null, - "attr3": null, - "attr4": null, - "attr5": null, - "attr6": null, - "attr7": null, - "attr8": null, - "attr9": null, - "attr10": null, - "attr11": null, - "attr12": null, - "attr13": null, - "attr14": null, - "attr15": null, - "attr16": null, - "attr17": null, - "attr18": null, - "attr19": null, - "attr20": null, - "origin": null, - "stndComplianceType": null, - "stndComplianceLevel": null, - "updatedUserId": null, - "createdUserId": null - }, - { - "id": "28507115-E5F5-40BA-BE5B-E84DD2683F6C", - "defKey": "stock_quantity", - "defName": "当前库存数量", - "intro": null, - "orderValue": null, - "baseDataType": "DOUBLE", - "bizDomainType": "", - "dbDataType": "DOUBLE", - "dataLen": 10, - "numScale": 2, - "primaryKey": null, - "notNull": 1, - "autoIncrement": null, - "defaultValue": "0.00", - "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": "3AF1F3B8-B3F0-42D4-9B2B-CA659CDFAAAB", - "defKey": "lock_quantity", - "defName": "锁定数量(如未出库的销售单)", - "intro": null, - "orderValue": null, - "baseDataType": "DOUBLE", - "bizDomainType": "", - "dbDataType": "DOUBLE", - "dataLen": 10, - "numScale": 2, - "primaryKey": null, - "notNull": 1, - "autoIncrement": null, - "defaultValue": "0.00", - "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": "806F3DC8-E949-44ED-8457-50621EABACF1", - "defKey": "create_time", - "defName": null, - "intro": null, - "orderValue": null, - "baseDataType": "DATETIME", - "bizDomainType": "", - "dbDataType": "DATETIME", - "dataLen": null, - "numScale": null, - "primaryKey": null, - "notNull": 1, - "autoIncrement": null, - "defaultValue": null, - "stndDictId": null, - "stndDictKey": null, - "stndFieldId": null, - "stndFieldKey": null, - "mark": null, - "attr1": null, - "attr2": null, - "attr3": null, - "attr4": null, - "attr5": null, - "attr6": null, - "attr7": null, - "attr8": null, - "attr9": null, - "attr10": null, - "attr11": null, - "attr12": null, - "attr13": null, - "attr14": null, - "attr15": null, - "attr16": null, - "attr17": null, - "attr18": null, - "attr19": null, - "attr20": null, - "origin": null, - "stndComplianceType": null, - "stndComplianceLevel": null, - "updatedUserId": null, - "createdUserId": null - }, - { - "id": "79C5B794-4BAB-4BB6-BA98-117CB0D6EC8A", - "defKey": "update_time", - "defName": null, - "intro": null, - "orderValue": null, - "baseDataType": "DATETIME", - "bizDomainType": "", - "dbDataType": "DATETIME", - "dataLen": null, - "numScale": null, - "primaryKey": null, - "notNull": 1, - "autoIncrement": null, - "defaultValue": null, - "stndDictId": null, - "stndDictKey": null, - "stndFieldId": null, - "stndFieldKey": null, - "mark": null, - "attr1": null, - "attr2": null, - "attr3": null, - "attr4": null, - "attr5": null, - "attr6": null, - "attr7": null, - "attr8": null, - "attr9": null, - "attr10": null, - "attr11": null, - "attr12": null, - "attr13": null, - "attr14": null, - "attr15": null, - "attr16": null, - "attr17": null, - "attr18": null, - "attr19": null, - "attr20": null, - "origin": null, - "stndComplianceType": null, - "stndComplianceLevel": null, - "updatedUserId": null, - "createdUserId": null - } - ], - "correlations": null, - "indexes": [ - { - "id": "6F130B74-4416-4E11-994A-4849163A8995", - "type": "PRIMARY KEY", - "defKey": null, - "defName": null, - "intro": null, - "orderValue": null, - "fields": [ - { - "id": "1D81BD34-E540-4405-B6DA-BD59CE7ED21D", - "fieldId": "63508BBA-C74F-4A26-8A5F-57C93C7DA336", - "fieldDefKey": "inventory_id", - "sortType": null - } - ] - } - ] - }, - { - "id": "9A7F904D-B8FA-4933-9DF4-23F0C001D5CF", - "type": "P", - "defKey": "purchase_order", - "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": "C8920CEA-8418-4DC2-8CE0-EF21EFDFCFE8", - "defKey": "po_id", - "defName": "采购单ID(主键)", - "intro": null, - "orderValue": null, - "baseDataType": "BIGINT", - "bizDomainType": "", - "dbDataType": "BIGINT", - "dataLen": null, - "numScale": null, - "primaryKey": 1, - "notNull": 1, - "autoIncrement": 1, - "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": "6A680EFD-0468-4E74-9DA9-A118ED547818", - "defKey": "po_code", - "defName": "采购单号(唯一,如PO20251208001)", - "intro": null, - "orderValue": null, - "baseDataType": "CHAR", - "bizDomainType": "", - "dbDataType": "CHAR", - "dataLen": 50, - "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": "B11DF0B7-8181-4204-8241-E1B94AD13C76", - "defKey": "supplier_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": "16FABE98-E85F-4522-A484-129E2C41654C", - "defKey": "warehouse_id", - "defName": "入库仓库ID", - "intro": null, - "orderValue": null, - "baseDataType": "BIGINT", - "bizDomainType": "", - "dbDataType": "BIGINT", - "dataLen": null, - "numScale": null, - "primaryKey": null, - "notNull": 1, - "autoIncrement": null, - "defaultValue": null, - "stndDictId": null, - "stndDictKey": null, - "stndFieldId": null, - "stndFieldKey": null, - "mark": null, - "attr1": null, - "attr2": null, - "attr3": null, - "attr4": null, - "attr5": null, - "attr6": null, - "attr7": null, - "attr8": null, - "attr9": null, - "attr10": null, - "attr11": null, - "attr12": null, - "attr13": null, - "attr14": null, - "attr15": null, - "attr16": null, - "attr17": null, - "attr18": null, - "attr19": null, - "attr20": null, - "origin": null, - "stndComplianceType": null, - "stndComplianceLevel": null, - "updatedUserId": null, - "createdUserId": null - }, - { - "id": "A22E85F7-E9A9-4ED0-9975-62758E900CC6", - "defKey": "total_amount", - "defName": "采购总金额", - "intro": null, - "orderValue": null, - "baseDataType": "DOUBLE", - "bizDomainType": "", - "dbDataType": "DOUBLE", - "dataLen": 12, - "numScale": 2, - "primaryKey": null, - "notNull": 1, - "autoIncrement": null, - "defaultValue": "0.00", - "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": "1E7B84CD-4F1B-45BA-8FCB-73C85DF2080C", - "defKey": "status", - "defName": "状态:1-待审核 2-已审核 3-部分入库 4-全部入库 5-已取消", - "intro": null, - "orderValue": null, - "baseDataType": "TINYINT", - "bizDomainType": "", - "dbDataType": "TINYINT", - "dataLen": null, - "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": "DE11B28C-9AA4-46AB-B19E-B5E7C57766B4", - "defKey": "purchase_date", - "defName": "采购日期", - "intro": null, - "orderValue": null, - "baseDataType": "TIME", - "bizDomainType": "", - "dbDataType": "TIME", - "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": "DEE9909C-C211-42B9-AC3F-34C3348A4E8B", - "defKey": "expected_arrival_date", - "defName": "预计到货日期", - "intro": null, - "orderValue": null, - "baseDataType": "TIME", - "bizDomainType": "", - "dbDataType": "TIME", - "dataLen": null, - "numScale": null, - "primaryKey": null, - "notNull": null, - "autoIncrement": null, - "defaultValue": "NULL", - "stndDictId": null, - "stndDictKey": null, - "stndFieldId": null, - "stndFieldKey": null, - "mark": null, - "attr1": null, - "attr2": null, - "attr3": null, - "attr4": null, - "attr5": null, - "attr6": null, - "attr7": null, - "attr8": null, - "attr9": null, - "attr10": null, - "attr11": null, - "attr12": null, - "attr13": null, - "attr14": null, - "attr15": null, - "attr16": null, - "attr17": null, - "attr18": null, - "attr19": null, - "attr20": null, - "origin": null, - "stndComplianceType": null, - "stndComplianceLevel": null, - "updatedUserId": null, - "createdUserId": null - }, - { - "id": "3350D630-0E15-4FF8-851D-3718841FB071", - "defKey": "remark", - "defName": "备注", - "intro": null, - "orderValue": null, - "baseDataType": "CHAR", - "bizDomainType": "", - "dbDataType": "CHAR", - "dataLen": 500, - "numScale": null, - "primaryKey": null, - "notNull": null, - "autoIncrement": null, - "defaultValue": "", - "stndDictId": null, - "stndDictKey": null, - "stndFieldId": null, - "stndFieldKey": null, - "mark": null, - "attr1": null, - "attr2": null, - "attr3": null, - "attr4": null, - "attr5": null, - "attr6": null, - "attr7": null, - "attr8": null, - "attr9": null, - "attr10": null, - "attr11": null, - "attr12": null, - "attr13": null, - "attr14": null, - "attr15": null, - "attr16": null, - "attr17": null, - "attr18": null, - "attr19": null, - "attr20": null, - "origin": null, - "stndComplianceType": null, - "stndComplianceLevel": null, - "updatedUserId": null, - "createdUserId": null - }, - { - "id": "51591D80-2860-4791-9E92-46598A8F8433", - "defKey": "creator", - "defName": "创建人", - "intro": null, - "orderValue": null, - "baseDataType": "CHAR", - "bizDomainType": "", - "dbDataType": "CHAR", - "dataLen": 50, - "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": "81321066-8834-453B-B8B9-38EDB63F1C53", - "defKey": "create_time", - "defName": null, - "intro": null, - "orderValue": null, - "baseDataType": "DATETIME", - "bizDomainType": "", - "dbDataType": "DATETIME", - "dataLen": null, - "numScale": null, - "primaryKey": null, - "notNull": 1, - "autoIncrement": null, - "defaultValue": null, - "stndDictId": null, - "stndDictKey": null, - "stndFieldId": null, - "stndFieldKey": null, - "mark": null, - "attr1": null, - "attr2": null, - "attr3": null, - "attr4": null, - "attr5": null, - "attr6": null, - "attr7": null, - "attr8": null, - "attr9": null, - "attr10": null, - "attr11": null, - "attr12": null, - "attr13": null, - "attr14": null, - "attr15": null, - "attr16": null, - "attr17": null, - "attr18": null, - "attr19": null, - "attr20": null, - "origin": null, - "stndComplianceType": null, - "stndComplianceLevel": null, - "updatedUserId": null, - "createdUserId": null - }, - { - "id": "30E89C3F-A476-4ADD-AA16-80F62ACBE545", - "defKey": "update_time", - "defName": null, - "intro": null, - "orderValue": null, - "baseDataType": "DATETIME", - "bizDomainType": "", - "dbDataType": "DATETIME", - "dataLen": null, - "numScale": null, - "primaryKey": null, - "notNull": 1, - "autoIncrement": null, - "defaultValue": null, - "stndDictId": null, - "stndDictKey": null, - "stndFieldId": null, - "stndFieldKey": null, - "mark": null, - "attr1": null, - "attr2": null, - "attr3": null, - "attr4": null, - "attr5": null, - "attr6": null, - "attr7": null, - "attr8": null, - "attr9": null, - "attr10": null, - "attr11": null, - "attr12": null, - "attr13": null, - "attr14": null, - "attr15": null, - "attr16": null, - "attr17": null, - "attr18": null, - "attr19": null, - "attr20": null, - "origin": null, - "stndComplianceType": null, - "stndComplianceLevel": null, - "updatedUserId": null, - "createdUserId": null - } - ], - "correlations": null, - "indexes": [ - { - "id": "4990E30D-CB1C-4C46-B6E2-59BCC3E3A9F5", - "type": "PRIMARY KEY", - "defKey": null, - "defName": null, - "intro": null, - "orderValue": null, - "fields": [ - { - "id": "4029B1B9-A2D3-4BAD-AB96-4969CDB1D6E3", - "fieldId": "C8920CEA-8418-4DC2-8CE0-EF21EFDFCFE8", - "fieldDefKey": "po_id", - "sortType": null - } - ] - } - ] - }, - { - "id": "B0F2D81A-45EB-46A5-8AD4-B6E7E1743763", - "type": "P", - "defKey": "purchase_order_item", - "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": "CCF35D5A-92D7-4CA5-8CAF-0D982E10198C", - "defKey": "poi_id", - "defName": "采购明细ID(主键)", - "intro": null, - "orderValue": null, - "baseDataType": "BIGINT", - "bizDomainType": "", - "dbDataType": "BIGINT", - "dataLen": null, - "numScale": null, - "primaryKey": 1, - "notNull": 1, - "autoIncrement": 1, - "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": "470C4CAA-34F3-434E-A82E-9371A4753C5E", - "defKey": "po_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": "D4F8DDB3-6B5B-4195-B55A-6728454CD80B", - "defKey": "product_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": "14431578-1FB9-4B53-9AE7-4B99727E44C5", - "defKey": "purchase_quantity", - "defName": "采购数量", - "intro": null, - "orderValue": null, - "baseDataType": "DOUBLE", - "bizDomainType": "", - "dbDataType": "DOUBLE", - "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": "C148DDF3-F2A6-45A8-86E9-47719D767C6A", - "defKey": "received_quantity", - "defName": "已入库数量", - "intro": null, - "orderValue": null, - "baseDataType": "DOUBLE", - "bizDomainType": "", - "dbDataType": "DOUBLE", - "dataLen": 10, - "numScale": 2, - "primaryKey": null, - "notNull": 1, - "autoIncrement": null, - "defaultValue": "0.00", - "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": "62B93DD9-62BD-449F-9676-38C18ED9B0E2", - "defKey": "unit_price", - "defName": "采购单价", - "intro": null, - "orderValue": null, - "baseDataType": "DOUBLE", - "bizDomainType": "", - "dbDataType": "DOUBLE", - "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": "CA7AD60E-E75E-4AE3-B21C-68B61139B696", - "defKey": "amount", - "defName": "明细金额(数量*单价)", - "intro": null, - "orderValue": null, - "baseDataType": "DOUBLE", - "bizDomainType": "", - "dbDataType": "DOUBLE", - "dataLen": 12, - "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": "975900C8-FDC2-4E03-8A7A-C6F36560E07E", - "defKey": "create_time", - "defName": null, - "intro": null, - "orderValue": null, - "baseDataType": "DATETIME", - "bizDomainType": "", - "dbDataType": "DATETIME", - "dataLen": null, - "numScale": null, - "primaryKey": null, - "notNull": 1, - "autoIncrement": null, - "defaultValue": null, - "stndDictId": null, - "stndDictKey": null, - "stndFieldId": null, - "stndFieldKey": null, - "mark": null, - "attr1": null, - "attr2": null, - "attr3": null, - "attr4": null, - "attr5": null, - "attr6": null, - "attr7": null, - "attr8": null, - "attr9": null, - "attr10": null, - "attr11": null, - "attr12": null, - "attr13": null, - "attr14": null, - "attr15": null, - "attr16": null, - "attr17": null, - "attr18": null, - "attr19": null, - "attr20": null, - "origin": null, - "stndComplianceType": null, - "stndComplianceLevel": null, - "updatedUserId": null, - "createdUserId": null - }, - { - "id": "3811BFA8-AC5C-4B3B-907D-FB32CD1141AC", - "defKey": "update_time", - "defName": null, - "intro": null, - "orderValue": null, - "baseDataType": "DATETIME", - "bizDomainType": "", - "dbDataType": "DATETIME", - "dataLen": null, - "numScale": null, - "primaryKey": null, - "notNull": 1, - "autoIncrement": null, - "defaultValue": null, - "stndDictId": null, - "stndDictKey": null, - "stndFieldId": null, - "stndFieldKey": null, - "mark": null, - "attr1": null, - "attr2": null, - "attr3": null, - "attr4": null, - "attr5": null, - "attr6": null, - "attr7": null, - "attr8": null, - "attr9": null, - "attr10": null, - "attr11": null, - "attr12": null, - "attr13": null, - "attr14": null, - "attr15": null, - "attr16": null, - "attr17": null, - "attr18": null, - "attr19": null, - "attr20": null, - "origin": null, - "stndComplianceType": null, - "stndComplianceLevel": null, - "updatedUserId": null, - "createdUserId": null - } - ], - "correlations": null, - "indexes": [ - { - "id": "9AFFAE9E-82ED-4FD0-A100-CFC47DDD62D7", - "type": "PRIMARY KEY", - "defKey": null, - "defName": null, - "intro": null, - "orderValue": null, - "fields": [ - { - "id": "55A1321D-817B-481B-9C0B-065B9877E9CD", - "fieldId": "CCF35D5A-92D7-4CA5-8CAF-0D982E10198C", - "fieldDefKey": "poi_id", - "sortType": null - } - ] - } - ] - }, - { - "id": "1A3D45AD-87D8-4DB7-8EA7-9E1E3F03C6B5", - "type": "P", - "defKey": "sales_order", - "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": "DF5691AF-CE40-45FE-8194-5E70CE6E50FD", - "defKey": "so_id", - "defName": "销售单ID(主键)", - "intro": null, - "orderValue": null, - "baseDataType": "BIGINT", - "bizDomainType": "", - "dbDataType": "BIGINT", - "dataLen": null, - "numScale": null, - "primaryKey": 1, - "notNull": 1, - "autoIncrement": 1, - "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": "F91C96AF-6AA4-4A31-BDB8-604C3D8E9342", - "defKey": "so_code", - "defName": "销售单号(唯一,如SO20251208001)", - "intro": null, - "orderValue": null, - "baseDataType": "CHAR", - "bizDomainType": "", - "dbDataType": "CHAR", - "dataLen": 50, - "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": "09C32391-0D61-41B3-A4B0-1C02E418D6EE", - "defKey": "customer_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": "7A234F78-5FC6-48FF-B157-77B8F3F2CB26", - "defKey": "warehouse_id", - "defName": "出库仓库ID", - "intro": null, - "orderValue": null, - "baseDataType": "BIGINT", - "bizDomainType": "", - "dbDataType": "BIGINT", - "dataLen": null, - "numScale": null, - "primaryKey": null, - "notNull": 1, - "autoIncrement": null, - "defaultValue": null, - "stndDictId": null, - "stndDictKey": null, - "stndFieldId": null, - "stndFieldKey": null, - "mark": null, - "attr1": null, - "attr2": null, - "attr3": null, - "attr4": null, - "attr5": null, - "attr6": null, - "attr7": null, - "attr8": null, - "attr9": null, - "attr10": null, - "attr11": null, - "attr12": null, - "attr13": null, - "attr14": null, - "attr15": null, - "attr16": null, - "attr17": null, - "attr18": null, - "attr19": null, - "attr20": null, - "origin": null, - "stndComplianceType": null, - "stndComplianceLevel": null, - "updatedUserId": null, - "createdUserId": null - }, - { - "id": "FFB726BB-BCCB-41AC-87C3-1E0BB051E9F1", - "defKey": "total_amount", - "defName": "销售总金额", - "intro": null, - "orderValue": null, - "baseDataType": "DOUBLE", - "bizDomainType": "", - "dbDataType": "DOUBLE", - "dataLen": 12, - "numScale": 2, - "primaryKey": null, - "notNull": 1, - "autoIncrement": null, - "defaultValue": "0.00", - "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": "E1199816-FAAB-4416-9A37-A374475F4472", - "defKey": "status", - "defName": "状态:1-待审核 2-已审核 3-部分出库 4-全部出库 5-已取消", - "intro": null, - "orderValue": null, - "baseDataType": "TINYINT", - "bizDomainType": "", - "dbDataType": "TINYINT", - "dataLen": null, - "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": "655BF2F1-32FA-486E-980A-8B35CC63979B", - "defKey": "sales_date", - "defName": "销售日期", - "intro": null, - "orderValue": null, - "baseDataType": "TIME", - "bizDomainType": "", - "dbDataType": "TIME", - "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": "248DCADC-EE87-4168-9D86-9DF5AD56CB09", - "defKey": "expected_delivery_date", - "defName": "预计发货日期", - "intro": null, - "orderValue": null, - "baseDataType": "TIME", - "bizDomainType": "", - "dbDataType": "TIME", - "dataLen": null, - "numScale": null, - "primaryKey": null, - "notNull": null, - "autoIncrement": null, - "defaultValue": "NULL", - "stndDictId": null, - "stndDictKey": null, - "stndFieldId": null, - "stndFieldKey": null, - "mark": null, - "attr1": null, - "attr2": null, - "attr3": null, - "attr4": null, - "attr5": null, - "attr6": null, - "attr7": null, - "attr8": null, - "attr9": null, - "attr10": null, - "attr11": null, - "attr12": null, - "attr13": null, - "attr14": null, - "attr15": null, - "attr16": null, - "attr17": null, - "attr18": null, - "attr19": null, - "attr20": null, - "origin": null, - "stndComplianceType": null, - "stndComplianceLevel": null, - "updatedUserId": null, - "createdUserId": null - }, - { - "id": "BA449211-F5A8-4C4D-9630-A9E26C95AE33", - "defKey": "remark", - "defName": "备注", - "intro": null, - "orderValue": null, - "baseDataType": "CHAR", - "bizDomainType": "", - "dbDataType": "CHAR", - "dataLen": 500, - "numScale": null, - "primaryKey": null, - "notNull": null, - "autoIncrement": null, - "defaultValue": "", - "stndDictId": null, - "stndDictKey": null, - "stndFieldId": null, - "stndFieldKey": null, - "mark": null, - "attr1": null, - "attr2": null, - "attr3": null, - "attr4": null, - "attr5": null, - "attr6": null, - "attr7": null, - "attr8": null, - "attr9": null, - "attr10": null, - "attr11": null, - "attr12": null, - "attr13": null, - "attr14": null, - "attr15": null, - "attr16": null, - "attr17": null, - "attr18": null, - "attr19": null, - "attr20": null, - "origin": null, - "stndComplianceType": null, - "stndComplianceLevel": null, - "updatedUserId": null, - "createdUserId": null - }, - { - "id": "75823A79-1061-4874-99FF-4152F2913CC9", - "defKey": "creator", - "defName": "创建人", - "intro": null, - "orderValue": null, - "baseDataType": "CHAR", - "bizDomainType": "", - "dbDataType": "CHAR", - "dataLen": 50, - "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": "AA3E5AC7-9434-4A85-BE40-2612EE451A94", - "defKey": "create_time", - "defName": null, - "intro": null, - "orderValue": null, - "baseDataType": "DATETIME", - "bizDomainType": "", - "dbDataType": "DATETIME", - "dataLen": null, - "numScale": null, - "primaryKey": null, - "notNull": 1, - "autoIncrement": null, - "defaultValue": null, - "stndDictId": null, - "stndDictKey": null, - "stndFieldId": null, - "stndFieldKey": null, - "mark": null, - "attr1": null, - "attr2": null, - "attr3": null, - "attr4": null, - "attr5": null, - "attr6": null, - "attr7": null, - "attr8": null, - "attr9": null, - "attr10": null, - "attr11": null, - "attr12": null, - "attr13": null, - "attr14": null, - "attr15": null, - "attr16": null, - "attr17": null, - "attr18": null, - "attr19": null, - "attr20": null, - "origin": null, - "stndComplianceType": null, - "stndComplianceLevel": null, - "updatedUserId": null, - "createdUserId": null - }, - { - "id": "40AF4F80-38B9-4FD0-BCD4-F49873683041", - "defKey": "update_time", - "defName": null, - "intro": null, - "orderValue": null, - "baseDataType": "DATETIME", - "bizDomainType": "", - "dbDataType": "DATETIME", - "dataLen": null, - "numScale": null, - "primaryKey": null, - "notNull": 1, - "autoIncrement": null, - "defaultValue": null, - "stndDictId": null, - "stndDictKey": null, - "stndFieldId": null, - "stndFieldKey": null, - "mark": null, - "attr1": null, - "attr2": null, - "attr3": null, - "attr4": null, - "attr5": null, - "attr6": null, - "attr7": null, - "attr8": null, - "attr9": null, - "attr10": null, - "attr11": null, - "attr12": null, - "attr13": null, - "attr14": null, - "attr15": null, - "attr16": null, - "attr17": null, - "attr18": null, - "attr19": null, - "attr20": null, - "origin": null, - "stndComplianceType": null, - "stndComplianceLevel": null, - "updatedUserId": null, - "createdUserId": null - } - ], - "correlations": null, - "indexes": [ - { - "id": "DF9B0715-671A-48DE-9CF3-71BF64F19ED4", - "type": "PRIMARY KEY", - "defKey": null, - "defName": null, - "intro": null, - "orderValue": null, - "fields": [ - { - "id": "F995ED61-83D0-4C7E-ADEE-D03BE547DEA2", - "fieldId": "DF5691AF-CE40-45FE-8194-5E70CE6E50FD", - "fieldDefKey": "so_id", - "sortType": null - } - ] - } - ] - }, - { - "id": "B3E8A3CC-C66E-4D6E-AB19-420C4A1A7DE4", - "type": "P", - "defKey": "sales_order_item", - "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": "8F77F207-B511-4962-BEDC-6687BF5AEEEE", - "defKey": "soi_id", - "defName": "销售明细ID(主键)", - "intro": null, - "orderValue": null, - "baseDataType": "BIGINT", - "bizDomainType": "", - "dbDataType": "BIGINT", - "dataLen": null, - "numScale": null, - "primaryKey": 1, - "notNull": 1, - "autoIncrement": 1, - "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": "AF37F19E-88A5-4783-BC45-16FE7F101DAF", - "defKey": "so_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": "280AAD20-96B0-47E5-9DE4-FD0E262D0202", - "defKey": "product_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": "A3AE7218-EE27-4FCC-86C3-17548E6CDD84", - "defKey": "sales_quantity", - "defName": "销售数量", - "intro": null, - "orderValue": null, - "baseDataType": "DOUBLE", - "bizDomainType": "", - "dbDataType": "DOUBLE", - "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": "BD21E7DF-95CD-40B2-918B-6233DEB02A5F", - "defKey": "delivered_quantity", - "defName": "已出库数量", - "intro": null, - "orderValue": null, - "baseDataType": "DOUBLE", - "bizDomainType": "", - "dbDataType": "DOUBLE", - "dataLen": 10, - "numScale": 2, - "primaryKey": null, - "notNull": 1, - "autoIncrement": null, - "defaultValue": "0.00", - "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": "4D8E1A3C-9E25-41BF-963A-C5F67EE3249E", - "defKey": "unit_price", - "defName": "销售单价", - "intro": null, - "orderValue": null, - "baseDataType": "DOUBLE", - "bizDomainType": "", - "dbDataType": "DOUBLE", - "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": "CDBE88E4-D1BD-43E3-AAA4-F7B9306E9B4D", - "defKey": "amount", - "defName": "明细金额(数量*单价)", - "intro": null, - "orderValue": null, - "baseDataType": "DOUBLE", - "bizDomainType": "", - "dbDataType": "DOUBLE", - "dataLen": 12, - "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": "1E9B6663-0342-4E1C-8C7E-79AF8F2DDCD1", - "defKey": "create_time", - "defName": null, - "intro": null, - "orderValue": null, - "baseDataType": "DATETIME", - "bizDomainType": "", - "dbDataType": "DATETIME", - "dataLen": null, - "numScale": null, - "primaryKey": null, - "notNull": 1, - "autoIncrement": null, - "defaultValue": null, - "stndDictId": null, - "stndDictKey": null, - "stndFieldId": null, - "stndFieldKey": null, - "mark": null, - "attr1": null, - "attr2": null, - "attr3": null, - "attr4": null, - "attr5": null, - "attr6": null, - "attr7": null, - "attr8": null, - "attr9": null, - "attr10": null, - "attr11": null, - "attr12": null, - "attr13": null, - "attr14": null, - "attr15": null, - "attr16": null, - "attr17": null, - "attr18": null, - "attr19": null, - "attr20": null, - "origin": null, - "stndComplianceType": null, - "stndComplianceLevel": null, - "updatedUserId": null, - "createdUserId": null - }, - { - "id": "1357431C-C6DB-4B2A-969E-53446743BEFC", - "defKey": "update_time", - "defName": null, - "intro": null, - "orderValue": null, - "baseDataType": "DATETIME", - "bizDomainType": "", - "dbDataType": "DATETIME", - "dataLen": null, - "numScale": null, - "primaryKey": null, - "notNull": 1, - "autoIncrement": null, - "defaultValue": null, - "stndDictId": null, - "stndDictKey": null, - "stndFieldId": null, - "stndFieldKey": null, - "mark": null, - "attr1": null, - "attr2": null, - "attr3": null, - "attr4": null, - "attr5": null, - "attr6": null, - "attr7": null, - "attr8": null, - "attr9": null, - "attr10": null, - "attr11": null, - "attr12": null, - "attr13": null, - "attr14": null, - "attr15": null, - "attr16": null, - "attr17": null, - "attr18": null, - "attr19": null, - "attr20": null, - "origin": null, - "stndComplianceType": null, - "stndComplianceLevel": null, - "updatedUserId": null, - "createdUserId": null - } - ], - "correlations": null, - "indexes": [ - { - "id": "4E434C19-B00F-4212-B567-C565C9913996", - "type": "PRIMARY KEY", - "defKey": null, - "defName": null, - "intro": null, - "orderValue": null, - "fields": [ - { - "id": "7A1D4FF7-15E7-4F56-8E74-D43445066D16", - "fieldId": "8F77F207-B511-4962-BEDC-6687BF5AEEEE", - "fieldDefKey": "soi_id", - "sortType": null - } - ] - } - ] - }, - { - "id": "A527CDDF-24DA-4C8F-A42A-522A20C8D64F", - "type": "P", - "defKey": "inbound_order", - "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": "A4235EAF-98A0-492B-8D5E-DC113CEB9A3D", - "defKey": "io_id", - "defName": "入库单ID(主键)", - "intro": null, - "orderValue": null, - "baseDataType": "BIGINT", - "bizDomainType": "", - "dbDataType": "BIGINT", - "dataLen": null, - "numScale": null, - "primaryKey": 1, - "notNull": 1, - "autoIncrement": 1, - "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": "1F0989C2-619F-49CA-8BBA-863305241665", - "defKey": "io_code", - "defName": "入库单号(唯一,如IN20251208001)", - "intro": null, - "orderValue": null, - "baseDataType": "CHAR", - "bizDomainType": "", - "dbDataType": "CHAR", - "dataLen": 50, - "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": "BE1CE9E4-365F-4CAD-BA60-D7A10F7FF3AB", - "defKey": "po_id", - "defName": "关联采购单ID(空为其他入库)", - "intro": null, - "orderValue": null, - "baseDataType": "BIGINT", - "bizDomainType": "", - "dbDataType": "BIGINT", - "dataLen": null, - "numScale": null, - "primaryKey": null, - "notNull": null, - "autoIncrement": null, - "defaultValue": "NULL", - "stndDictId": null, - "stndDictKey": null, - "stndFieldId": null, - "stndFieldKey": null, - "mark": null, - "attr1": null, - "attr2": null, - "attr3": null, - "attr4": null, - "attr5": null, - "attr6": null, - "attr7": null, - "attr8": null, - "attr9": null, - "attr10": null, - "attr11": null, - "attr12": null, - "attr13": null, - "attr14": null, - "attr15": null, - "attr16": null, - "attr17": null, - "attr18": null, - "attr19": null, - "attr20": null, - "origin": null, - "stndComplianceType": null, - "stndComplianceLevel": null, - "updatedUserId": null, - "createdUserId": null - }, - { - "id": "FBD57298-1FE4-466A-A6F2-724B0C0FAA90", - "defKey": "warehouse_id", - "defName": "入库仓库ID", - "intro": null, - "orderValue": null, - "baseDataType": "BIGINT", - "bizDomainType": "", - "dbDataType": "BIGINT", - "dataLen": null, - "numScale": null, - "primaryKey": null, - "notNull": 1, - "autoIncrement": null, - "defaultValue": null, - "stndDictId": null, - "stndDictKey": null, - "stndFieldId": null, - "stndFieldKey": null, - "mark": null, - "attr1": null, - "attr2": null, - "attr3": null, - "attr4": null, - "attr5": null, - "attr6": null, - "attr7": null, - "attr8": null, - "attr9": null, - "attr10": null, - "attr11": null, - "attr12": null, - "attr13": null, - "attr14": null, - "attr15": null, - "attr16": null, - "attr17": null, - "attr18": null, - "attr19": null, - "attr20": null, - "origin": null, - "stndComplianceType": null, - "stndComplianceLevel": null, - "updatedUserId": null, - "createdUserId": null - }, - { - "id": "83512404-9BDE-4AFC-ABE6-5EE38EA7CAA4", - "defKey": "total_quantity", - "defName": "入库总数量", - "intro": null, - "orderValue": null, - "baseDataType": "DOUBLE", - "bizDomainType": "", - "dbDataType": "DOUBLE", - "dataLen": 10, - "numScale": 2, - "primaryKey": null, - "notNull": 1, - "autoIncrement": null, - "defaultValue": "0.00", - "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": "9FD111AD-4764-4795-8DF7-87908E1B77CE", - "defKey": "status", - "defName": "状态:1-待审核 2-已审核 3-已完成 4-已取消", - "intro": null, - "orderValue": null, - "baseDataType": "TINYINT", - "bizDomainType": "", - "dbDataType": "TINYINT", - "dataLen": null, - "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": "9ED473BF-C1EF-4FB9-ACEE-D7E698374522", - "defKey": "inbound_date", - "defName": "入库日期", - "intro": null, - "orderValue": null, - "baseDataType": "TIME", - "bizDomainType": "", - "dbDataType": "TIME", - "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": "A0A7D214-887F-4B64-83D2-A6F14970E692", - "defKey": "remark", - "defName": "备注", - "intro": null, - "orderValue": null, - "baseDataType": "CHAR", - "bizDomainType": "", - "dbDataType": "CHAR", - "dataLen": 500, - "numScale": null, - "primaryKey": null, - "notNull": null, - "autoIncrement": null, - "defaultValue": "", - "stndDictId": null, - "stndDictKey": null, - "stndFieldId": null, - "stndFieldKey": null, - "mark": null, - "attr1": null, - "attr2": null, - "attr3": null, - "attr4": null, - "attr5": null, - "attr6": null, - "attr7": null, - "attr8": null, - "attr9": null, - "attr10": null, - "attr11": null, - "attr12": null, - "attr13": null, - "attr14": null, - "attr15": null, - "attr16": null, - "attr17": null, - "attr18": null, - "attr19": null, - "attr20": null, - "origin": null, - "stndComplianceType": null, - "stndComplianceLevel": null, - "updatedUserId": null, - "createdUserId": null - }, - { - "id": "E9B045D6-1618-4160-AF61-87BD0F4D65CB", - "defKey": "creator", - "defName": "创建人", - "intro": null, - "orderValue": null, - "baseDataType": "CHAR", - "bizDomainType": "", - "dbDataType": "CHAR", - "dataLen": 50, - "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": "7D9CE632-E43B-4811-A2F7-64951E68B121", - "defKey": "create_time", - "defName": null, - "intro": null, - "orderValue": null, - "baseDataType": "DATETIME", - "bizDomainType": "", - "dbDataType": "DATETIME", - "dataLen": null, - "numScale": null, - "primaryKey": null, - "notNull": 1, - "autoIncrement": null, - "defaultValue": null, - "stndDictId": null, - "stndDictKey": null, - "stndFieldId": null, - "stndFieldKey": null, - "mark": null, - "attr1": null, - "attr2": null, - "attr3": null, - "attr4": null, - "attr5": null, - "attr6": null, - "attr7": null, - "attr8": null, - "attr9": null, - "attr10": null, - "attr11": null, - "attr12": null, - "attr13": null, - "attr14": null, - "attr15": null, - "attr16": null, - "attr17": null, - "attr18": null, - "attr19": null, - "attr20": null, - "origin": null, - "stndComplianceType": null, - "stndComplianceLevel": null, - "updatedUserId": null, - "createdUserId": null - }, - { - "id": "DFCBBF24-5F38-46F3-B2C5-818DA1B52DD5", - "defKey": "update_time", - "defName": null, - "intro": null, - "orderValue": null, - "baseDataType": "DATETIME", - "bizDomainType": "", - "dbDataType": "DATETIME", - "dataLen": null, - "numScale": null, - "primaryKey": null, - "notNull": 1, - "autoIncrement": null, - "defaultValue": null, - "stndDictId": null, - "stndDictKey": null, - "stndFieldId": null, - "stndFieldKey": null, - "mark": null, - "attr1": null, - "attr2": null, - "attr3": null, - "attr4": null, - "attr5": null, - "attr6": null, - "attr7": null, - "attr8": null, - "attr9": null, - "attr10": null, - "attr11": null, - "attr12": null, - "attr13": null, - "attr14": null, - "attr15": null, - "attr16": null, - "attr17": null, - "attr18": null, - "attr19": null, - "attr20": null, - "origin": null, - "stndComplianceType": null, - "stndComplianceLevel": null, - "updatedUserId": null, - "createdUserId": null - } - ], - "correlations": null, - "indexes": [ - { - "id": "6E4D5118-5211-4882-993C-B56986CCAC06", - "type": "PRIMARY KEY", - "defKey": null, - "defName": null, - "intro": null, - "orderValue": null, - "fields": [ - { - "id": "D13910D0-48E4-4A6F-BCA8-B38F8648A6E2", - "fieldId": "A4235EAF-98A0-492B-8D5E-DC113CEB9A3D", - "fieldDefKey": "io_id", - "sortType": null - } - ] - } - ] - }, - { - "id": "74E768ED-438E-4003-971E-696EB4A241E2", - "type": "P", - "defKey": "inbound_order_item", - "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": "20859A0D-3295-4D5C-AFDD-9B8AF058D608", - "defKey": "ioni_id", - "defName": "入库明细ID(主键)", - "intro": null, - "orderValue": null, - "baseDataType": "BIGINT", - "bizDomainType": "", - "dbDataType": "BIGINT", - "dataLen": null, - "numScale": null, - "primaryKey": 1, - "notNull": 1, - "autoIncrement": 1, - "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": "17D3C4B2-F3D7-42F2-AE7C-CAB6DC69471F", - "defKey": "io_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": "2D25D2AD-6E8C-488E-BB3C-A45A0A6C1DD4", - "defKey": "product_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": "73EB015E-39E5-4D44-B42F-EF064CC3F9F4", - "defKey": "inbound_quantity", - "defName": "入库数量", - "intro": null, - "orderValue": null, - "baseDataType": "DOUBLE", - "bizDomainType": "", - "dbDataType": "DOUBLE", - "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": "B42E8298-6D75-4E0E-B05F-AB6561426B44", - "defKey": "unit_price", - "defName": "入库单价(参考)", - "intro": null, - "orderValue": null, - "baseDataType": "DOUBLE", - "bizDomainType": "", - "dbDataType": "DOUBLE", - "dataLen": 10, - "numScale": 2, - "primaryKey": null, - "notNull": null, - "autoIncrement": null, - "defaultValue": "0.00", - "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": "B014A1B4-339F-44DB-B1CF-20F579F3D738", - "defKey": "poi_id", - "defName": "关联采购明细ID", - "intro": null, - "orderValue": null, - "baseDataType": "BIGINT", - "bizDomainType": "", - "dbDataType": "BIGINT", - "dataLen": null, - "numScale": null, - "primaryKey": null, - "notNull": null, - "autoIncrement": null, - "defaultValue": "NULL", - "stndDictId": null, - "stndDictKey": null, - "stndFieldId": null, - "stndFieldKey": null, - "mark": null, - "attr1": null, - "attr2": null, - "attr3": null, - "attr4": null, - "attr5": null, - "attr6": null, - "attr7": null, - "attr8": null, - "attr9": null, - "attr10": null, - "attr11": null, - "attr12": null, - "attr13": null, - "attr14": null, - "attr15": null, - "attr16": null, - "attr17": null, - "attr18": null, - "attr19": null, - "attr20": null, - "origin": null, - "stndComplianceType": null, - "stndComplianceLevel": null, - "updatedUserId": null, - "createdUserId": null - }, - { - "id": "CACFCFCE-6922-4983-8C8C-7809638C69AB", - "defKey": "create_time", - "defName": null, - "intro": null, - "orderValue": null, - "baseDataType": "DATETIME", - "bizDomainType": "", - "dbDataType": "DATETIME", - "dataLen": null, - "numScale": null, - "primaryKey": null, - "notNull": 1, - "autoIncrement": null, - "defaultValue": null, - "stndDictId": null, - "stndDictKey": null, - "stndFieldId": null, - "stndFieldKey": null, - "mark": null, - "attr1": null, - "attr2": null, - "attr3": null, - "attr4": null, - "attr5": null, - "attr6": null, - "attr7": null, - "attr8": null, - "attr9": null, - "attr10": null, - "attr11": null, - "attr12": null, - "attr13": null, - "attr14": null, - "attr15": null, - "attr16": null, - "attr17": null, - "attr18": null, - "attr19": null, - "attr20": null, - "origin": null, - "stndComplianceType": null, - "stndComplianceLevel": null, - "updatedUserId": null, - "createdUserId": null - }, - { - "id": "6222718C-EC69-4938-82CF-1EB3F81C4DBB", - "defKey": "update_time", - "defName": null, - "intro": null, - "orderValue": null, - "baseDataType": "DATETIME", - "bizDomainType": "", - "dbDataType": "DATETIME", - "dataLen": null, - "numScale": null, - "primaryKey": null, - "notNull": 1, - "autoIncrement": null, - "defaultValue": null, - "stndDictId": null, - "stndDictKey": null, - "stndFieldId": null, - "stndFieldKey": null, - "mark": null, - "attr1": null, - "attr2": null, - "attr3": null, - "attr4": null, - "attr5": null, - "attr6": null, - "attr7": null, - "attr8": null, - "attr9": null, - "attr10": null, - "attr11": null, - "attr12": null, - "attr13": null, - "attr14": null, - "attr15": null, - "attr16": null, - "attr17": null, - "attr18": null, - "attr19": null, - "attr20": null, - "origin": null, - "stndComplianceType": null, - "stndComplianceLevel": null, - "updatedUserId": null, - "createdUserId": null - } - ], - "correlations": null, - "indexes": [ - { - "id": "826047A4-1D00-4EA1-8FE4-EC4DC2E7B5E3", - "type": "PRIMARY KEY", - "defKey": null, - "defName": null, - "intro": null, - "orderValue": null, - "fields": [ - { - "id": "2ACD942E-CB87-4BF1-919D-1DD18A92720D", - "fieldId": "20859A0D-3295-4D5C-AFDD-9B8AF058D608", - "fieldDefKey": "ioni_id", - "sortType": null - } - ] - } - ] - }, - { - "id": "592C560C-5785-4D93-A2FF-82AD697A0003", - "type": "P", - "defKey": "outbound_order", - "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": "0EAF733D-413D-4EAB-8BB2-00530180BD35", - "defKey": "oo_id", - "defName": "出库单ID(主键)", - "intro": null, - "orderValue": null, - "baseDataType": "BIGINT", - "bizDomainType": "", - "dbDataType": "BIGINT", - "dataLen": null, - "numScale": null, - "primaryKey": 1, - "notNull": 1, - "autoIncrement": 1, - "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": "CD97B384-C29C-4816-BE90-5C8115844C14", - "defKey": "oo_code", - "defName": "出库单号(唯一,如OUT20251208001)", - "intro": null, - "orderValue": null, - "baseDataType": "CHAR", - "bizDomainType": "", - "dbDataType": "CHAR", - "dataLen": 50, - "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": "98D39AF8-C924-49A2-AF2A-3A7449888437", - "defKey": "so_id", - "defName": "关联销售单ID(空为其他出库)", - "intro": null, - "orderValue": null, - "baseDataType": "BIGINT", - "bizDomainType": "", - "dbDataType": "BIGINT", - "dataLen": null, - "numScale": null, - "primaryKey": null, - "notNull": null, - "autoIncrement": null, - "defaultValue": "NULL", - "stndDictId": null, - "stndDictKey": null, - "stndFieldId": null, - "stndFieldKey": null, - "mark": null, - "attr1": null, - "attr2": null, - "attr3": null, - "attr4": null, - "attr5": null, - "attr6": null, - "attr7": null, - "attr8": null, - "attr9": null, - "attr10": null, - "attr11": null, - "attr12": null, - "attr13": null, - "attr14": null, - "attr15": null, - "attr16": null, - "attr17": null, - "attr18": null, - "attr19": null, - "attr20": null, - "origin": null, - "stndComplianceType": null, - "stndComplianceLevel": null, - "updatedUserId": null, - "createdUserId": null - }, - { - "id": "B556F3F4-31EF-4980-8F5C-D16F271E74E7", - "defKey": "warehouse_id", - "defName": "出库仓库ID", - "intro": null, - "orderValue": null, - "baseDataType": "BIGINT", - "bizDomainType": "", - "dbDataType": "BIGINT", - "dataLen": null, - "numScale": null, - "primaryKey": null, - "notNull": 1, - "autoIncrement": null, - "defaultValue": null, - "stndDictId": null, - "stndDictKey": null, - "stndFieldId": null, - "stndFieldKey": null, - "mark": null, - "attr1": null, - "attr2": null, - "attr3": null, - "attr4": null, - "attr5": null, - "attr6": null, - "attr7": null, - "attr8": null, - "attr9": null, - "attr10": null, - "attr11": null, - "attr12": null, - "attr13": null, - "attr14": null, - "attr15": null, - "attr16": null, - "attr17": null, - "attr18": null, - "attr19": null, - "attr20": null, - "origin": null, - "stndComplianceType": null, - "stndComplianceLevel": null, - "updatedUserId": null, - "createdUserId": null - }, - { - "id": "CF750A0F-3D91-4E3E-BC45-5EBFD720A07C", - "defKey": "total_quantity", - "defName": "出库总数量", - "intro": null, - "orderValue": null, - "baseDataType": "DOUBLE", - "bizDomainType": "", - "dbDataType": "DOUBLE", - "dataLen": 10, - "numScale": 2, - "primaryKey": null, - "notNull": 1, - "autoIncrement": null, - "defaultValue": "0.00", - "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": "E61540F5-4C33-4ABD-8D3C-2130D27E21E6", - "defKey": "status", - "defName": "状态:1-待审核 2-已审核 3-已完成 4-已取消", - "intro": null, - "orderValue": null, - "baseDataType": "TINYINT", - "bizDomainType": "", - "dbDataType": "TINYINT", - "dataLen": null, - "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": "6B9BD261-93DC-461F-AD2B-BA12D2E41A06", - "defKey": "outbound_date", - "defName": "出库日期", - "intro": null, - "orderValue": null, - "baseDataType": "TIME", - "bizDomainType": "", - "dbDataType": "TIME", - "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": "B1E5FCD7-113E-46B1-B70E-069E861C7B82", - "defKey": "remark", - "defName": "备注", - "intro": null, - "orderValue": null, - "baseDataType": "CHAR", - "bizDomainType": "", - "dbDataType": "CHAR", - "dataLen": 500, - "numScale": null, - "primaryKey": null, - "notNull": null, - "autoIncrement": null, - "defaultValue": "", - "stndDictId": null, - "stndDictKey": null, - "stndFieldId": null, - "stndFieldKey": null, - "mark": null, - "attr1": null, - "attr2": null, - "attr3": null, - "attr4": null, - "attr5": null, - "attr6": null, - "attr7": null, - "attr8": null, - "attr9": null, - "attr10": null, - "attr11": null, - "attr12": null, - "attr13": null, - "attr14": null, - "attr15": null, - "attr16": null, - "attr17": null, - "attr18": null, - "attr19": null, - "attr20": null, - "origin": null, - "stndComplianceType": null, - "stndComplianceLevel": null, - "updatedUserId": null, - "createdUserId": null - }, - { - "id": "1965641A-736A-41A4-B4C9-546DFBA8108F", - "defKey": "creator", - "defName": "创建人", - "intro": null, - "orderValue": null, - "baseDataType": "CHAR", - "bizDomainType": "", - "dbDataType": "CHAR", - "dataLen": 50, - "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": "DA59D296-6E85-439E-B0A4-1EFBE4017039", - "defKey": "create_time", - "defName": null, - "intro": null, - "orderValue": null, - "baseDataType": "DATETIME", - "bizDomainType": "", - "dbDataType": "DATETIME", - "dataLen": null, - "numScale": null, - "primaryKey": null, - "notNull": 1, - "autoIncrement": null, - "defaultValue": null, - "stndDictId": null, - "stndDictKey": null, - "stndFieldId": null, - "stndFieldKey": null, - "mark": null, - "attr1": null, - "attr2": null, - "attr3": null, - "attr4": null, - "attr5": null, - "attr6": null, - "attr7": null, - "attr8": null, - "attr9": null, - "attr10": null, - "attr11": null, - "attr12": null, - "attr13": null, - "attr14": null, - "attr15": null, - "attr16": null, - "attr17": null, - "attr18": null, - "attr19": null, - "attr20": null, - "origin": null, - "stndComplianceType": null, - "stndComplianceLevel": null, - "updatedUserId": null, - "createdUserId": null - }, - { - "id": "127C0AA0-512F-4F82-A9F2-D1C798B140A1", - "defKey": "update_time", - "defName": null, - "intro": null, - "orderValue": null, - "baseDataType": "DATETIME", - "bizDomainType": "", - "dbDataType": "DATETIME", - "dataLen": null, - "numScale": null, - "primaryKey": null, - "notNull": 1, - "autoIncrement": null, - "defaultValue": null, - "stndDictId": null, - "stndDictKey": null, - "stndFieldId": null, - "stndFieldKey": null, - "mark": null, - "attr1": null, - "attr2": null, - "attr3": null, - "attr4": null, - "attr5": null, - "attr6": null, - "attr7": null, - "attr8": null, - "attr9": null, - "attr10": null, - "attr11": null, - "attr12": null, - "attr13": null, - "attr14": null, - "attr15": null, - "attr16": null, - "attr17": null, - "attr18": null, - "attr19": null, - "attr20": null, - "origin": null, - "stndComplianceType": null, - "stndComplianceLevel": null, - "updatedUserId": null, - "createdUserId": null - } - ], - "correlations": null, - "indexes": [ - { - "id": "3CB3F81D-2B6D-4579-948E-4F15F54BA44F", - "type": "PRIMARY KEY", - "defKey": null, - "defName": null, - "intro": null, - "orderValue": null, - "fields": [ - { - "id": "CE24652E-CCB8-4F94-A30A-26E9FE6511F8", - "fieldId": "0EAF733D-413D-4EAB-8BB2-00530180BD35", - "fieldDefKey": "oo_id", - "sortType": null - } - ] - } - ] - }, - { - "id": "C46E6F4E-8E26-4489-B201-7764980DBD8B", - "type": "P", - "defKey": "outbound_order_item", - "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": "7F263D59-3D5C-4D4B-BF4D-0A60FF119F81", - "defKey": "ooi_id", - "defName": "出库明细ID(主键)", - "intro": null, - "orderValue": null, - "baseDataType": "BIGINT", - "bizDomainType": "", - "dbDataType": "BIGINT", - "dataLen": null, - "numScale": null, - "primaryKey": 1, - "notNull": 1, - "autoIncrement": 1, - "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": "AE4162F0-D485-4A51-850A-3D6FB622FD3F", - "defKey": "oo_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": "5C147CF3-37DF-445C-8492-58E73DC078FA", - "defKey": "product_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": "411DD8EA-0000-46B7-92EC-62A29A735F60", - "defKey": "outbound_quantity", - "defName": "出库数量", - "intro": null, - "orderValue": null, - "baseDataType": "DOUBLE", - "bizDomainType": "", - "dbDataType": "DOUBLE", - "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": "31F4E27D-CCDB-45E6-8849-822792D99572", - "defKey": "unit_price", - "defName": "出库单价(参考)", - "intro": null, - "orderValue": null, - "baseDataType": "DOUBLE", - "bizDomainType": "", - "dbDataType": "DOUBLE", - "dataLen": 10, - "numScale": 2, - "primaryKey": null, - "notNull": null, - "autoIncrement": null, - "defaultValue": "0.00", - "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": "6E08DFEC-989E-43A2-B4E2-4DC84C59B48C", - "defKey": "soi_id", - "defName": "关联销售明细ID", - "intro": null, - "orderValue": null, - "baseDataType": "BIGINT", - "bizDomainType": "", - "dbDataType": "BIGINT", - "dataLen": null, - "numScale": null, - "primaryKey": null, - "notNull": null, - "autoIncrement": null, - "defaultValue": "NULL", - "stndDictId": null, - "stndDictKey": null, - "stndFieldId": null, - "stndFieldKey": null, - "mark": null, - "attr1": null, - "attr2": null, - "attr3": null, - "attr4": null, - "attr5": null, - "attr6": null, - "attr7": null, - "attr8": null, - "attr9": null, - "attr10": null, - "attr11": null, - "attr12": null, - "attr13": null, - "attr14": null, - "attr15": null, - "attr16": null, - "attr17": null, - "attr18": null, - "attr19": null, - "attr20": null, - "origin": null, - "stndComplianceType": null, - "stndComplianceLevel": null, - "updatedUserId": null, - "createdUserId": null - }, - { - "id": "5069B4EB-CD90-4606-97EF-CE4E481D8F61", - "defKey": "create_time", - "defName": null, - "intro": null, - "orderValue": null, - "baseDataType": "DATETIME", - "bizDomainType": "", - "dbDataType": "DATETIME", - "dataLen": null, - "numScale": null, - "primaryKey": null, - "notNull": 1, - "autoIncrement": null, - "defaultValue": null, - "stndDictId": null, - "stndDictKey": null, - "stndFieldId": null, - "stndFieldKey": null, - "mark": null, - "attr1": null, - "attr2": null, - "attr3": null, - "attr4": null, - "attr5": null, - "attr6": null, - "attr7": null, - "attr8": null, - "attr9": null, - "attr10": null, - "attr11": null, - "attr12": null, - "attr13": null, - "attr14": null, - "attr15": null, - "attr16": null, - "attr17": null, - "attr18": null, - "attr19": null, - "attr20": null, - "origin": null, - "stndComplianceType": null, - "stndComplianceLevel": null, - "updatedUserId": null, - "createdUserId": null - }, - { - "id": "F134B873-87E3-452C-AFE9-981286B5779E", - "defKey": "update_time", - "defName": null, - "intro": null, - "orderValue": null, - "baseDataType": "DATETIME", - "bizDomainType": "", - "dbDataType": "DATETIME", - "dataLen": null, - "numScale": null, - "primaryKey": null, - "notNull": 1, - "autoIncrement": null, - "defaultValue": null, - "stndDictId": null, - "stndDictKey": null, - "stndFieldId": null, - "stndFieldKey": null, - "mark": null, - "attr1": null, - "attr2": null, - "attr3": null, - "attr4": null, - "attr5": null, - "attr6": null, - "attr7": null, - "attr8": null, - "attr9": null, - "attr10": null, - "attr11": null, - "attr12": null, - "attr13": null, - "attr14": null, - "attr15": null, - "attr16": null, - "attr17": null, - "attr18": null, - "attr19": null, - "attr20": null, - "origin": null, - "stndComplianceType": null, - "stndComplianceLevel": null, - "updatedUserId": null, - "createdUserId": null - } - ], - "correlations": null, - "indexes": [ - { - "id": "FA244A7F-6CDD-45DD-876A-3DC655C13D50", - "type": "PRIMARY KEY", - "defKey": null, - "defName": null, - "intro": null, - "orderValue": null, - "fields": [ - { - "id": "DB506ADB-3C6F-4549-9302-2ED5B60E3259", - "fieldId": "7F263D59-3D5C-4D4B-BF4D-0A60FF119F81", - "fieldDefKey": "ooi_id", - "sortType": null - } - ] - } - ] - }, - { - "id": "8B1DE3E0-44C6-4C3E-9002-B778841EC3B3", - "type": "P", - "defKey": "inventory_flow", - "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": "63C75D8B-54BA-4E9C-9A76-936842AFB73E", - "defKey": "flow_id", - "defName": "流水ID(主键)", - "intro": null, - "orderValue": null, - "baseDataType": "BIGINT", - "bizDomainType": "", - "dbDataType": "BIGINT", - "dataLen": null, - "numScale": null, - "primaryKey": 1, - "notNull": 1, - "autoIncrement": 1, - "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": "01D4EDCA-E01D-4405-9DD0-2EF1C2411177", - "defKey": "product_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": "9371E178-224D-4CE6-9851-E0FE863F5547", - "defKey": "warehouse_id", - "defName": "仓库ID", - "intro": null, - "orderValue": null, - "baseDataType": "BIGINT", - "bizDomainType": "", - "dbDataType": "BIGINT", - "dataLen": null, - "numScale": null, - "primaryKey": null, - "notNull": 1, - "autoIncrement": null, - "defaultValue": null, - "stndDictId": null, - "stndDictKey": null, - "stndFieldId": null, - "stndFieldKey": null, - "mark": null, - "attr1": null, - "attr2": null, - "attr3": null, - "attr4": null, - "attr5": null, - "attr6": null, - "attr7": null, - "attr8": null, - "attr9": null, - "attr10": null, - "attr11": null, - "attr12": null, - "attr13": null, - "attr14": null, - "attr15": null, - "attr16": null, - "attr17": null, - "attr18": null, - "attr19": null, - "attr20": null, - "origin": null, - "stndComplianceType": null, - "stndComplianceLevel": null, - "updatedUserId": null, - "createdUserId": null - }, - { - "id": "F704679C-15F1-4C2B-9979-ACA685889C90", - "defKey": "flow_type", - "defName": "变动类型:1-采购入库 2-销售出库 3-调拨 4-盘点 5-其他入库 6-其他出库", - "intro": null, - "orderValue": null, - "baseDataType": "TINYINT", - "bizDomainType": "", - "dbDataType": "TINYINT", - "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": "1DEC9FBE-260E-4D63-8AC2-3B7A10EEA789", - "defKey": "order_type", - "defName": "关联单据类型:PO-采购单 IN-入库单 SO-销售单 OUT-出库单", - "intro": null, - "orderValue": null, - "baseDataType": "CHAR", - "bizDomainType": "", - "dbDataType": "CHAR", - "dataLen": 20, - "numScale": null, - "primaryKey": null, - "notNull": 1, - "autoIncrement": null, - "defaultValue": null, - "stndDictId": null, - "stndDictKey": null, - "stndFieldId": null, - "stndFieldKey": null, - "mark": null, - "attr1": null, - "attr2": null, - "attr3": null, - "attr4": null, - "attr5": null, - "attr6": null, - "attr7": null, - "attr8": null, - "attr9": null, - "attr10": null, - "attr11": null, - "attr12": null, - "attr13": null, - "attr14": null, - "attr15": null, - "attr16": null, - "attr17": null, - "attr18": null, - "attr19": null, - "attr20": null, - "origin": null, - "stndComplianceType": null, - "stndComplianceLevel": null, - "updatedUserId": null, - "createdUserId": null - }, - { - "id": "6A8389C7-CDF8-4E69-9E15-645281C0DDFA", - "defKey": "order_id", - "defName": "关联单据ID", - "intro": null, - "orderValue": null, - "baseDataType": "BIGINT", - "bizDomainType": "", - "dbDataType": "BIGINT", - "dataLen": null, - "numScale": null, - "primaryKey": null, - "notNull": 1, - "autoIncrement": null, - "defaultValue": 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": "02EDEC0A-DEAA-4FC3-B7F8-C73828F24CF7", - "defKey": "order_item_id", - "defName": "关联单据明细ID", - "intro": null, - "orderValue": null, - "baseDataType": "BIGINT", - "bizDomainType": "", - "dbDataType": "BIGINT", - "dataLen": null, - "numScale": null, - "primaryKey": null, - "notNull": null, - "autoIncrement": null, - "defaultValue": "NULL", - "stndDictId": null, - "stndDictKey": null, - "stndFieldId": null, - "stndFieldKey": null, - "mark": null, - "attr1": null, - "attr2": null, - "attr3": null, - "attr4": null, - "attr5": null, - "attr6": null, - "attr7": null, - "attr8": null, - "attr9": null, - "attr10": null, - "attr11": null, - "attr12": null, - "attr13": null, - "attr14": null, - "attr15": null, - "attr16": null, - "attr17": null, - "attr18": null, - "attr19": null, - "attr20": null, - "origin": null, - "stndComplianceType": null, - "stndComplianceLevel": null, - "updatedUserId": null, - "createdUserId": null - }, - { - "id": "E7883C45-55AD-4BFD-9E86-679E9D697D77", - "defKey": "change_quantity", - "defName": "变动数量(入库+,出库-)", - "intro": null, - "orderValue": null, - "baseDataType": "DOUBLE", - "bizDomainType": "", - "dbDataType": "DOUBLE", - "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": "C5BFE02C-596F-4E18-B852-8B0401FA0252", - "defKey": "before_quantity", - "defName": "变动前库存", - "intro": null, - "orderValue": null, - "baseDataType": "DOUBLE", - "bizDomainType": "", - "dbDataType": "DOUBLE", - "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": "E698B4C3-A584-4D57-AC2D-2834F7727F89", - "defKey": "after_quantity", - "defName": "变动后库存", - "intro": null, - "orderValue": null, - "baseDataType": "DOUBLE", - "bizDomainType": "", - "dbDataType": "DOUBLE", - "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": "4BADE558-BEB7-4F60-975C-61F5D2C4E5A4", - "defKey": "operator", - "defName": "操作人", - "intro": null, - "orderValue": null, - "baseDataType": "CHAR", - "bizDomainType": "", - "dbDataType": "CHAR", - "dataLen": 50, - "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": "A3360EF2-705E-4D04-8F41-0C67695D51DD", - "defKey": "flow_time", - "defName": "变动时间", - "intro": null, - "orderValue": null, - "baseDataType": "DATETIME", - "bizDomainType": "", - "dbDataType": "DATETIME", - "dataLen": null, - "numScale": null, - "primaryKey": null, - "notNull": 1, - "autoIncrement": null, - "defaultValue": null, - "stndDictId": null, - "stndDictKey": null, - "stndFieldId": null, - "stndFieldKey": null, - "mark": null, - "attr1": null, - "attr2": null, - "attr3": null, - "attr4": null, - "attr5": null, - "attr6": null, - "attr7": null, - "attr8": null, - "attr9": null, - "attr10": null, - "attr11": null, - "attr12": null, - "attr13": null, - "attr14": null, - "attr15": null, - "attr16": null, - "attr17": null, - "attr18": null, - "attr19": null, - "attr20": null, - "origin": null, - "stndComplianceType": null, - "stndComplianceLevel": null, - "updatedUserId": null, - "createdUserId": null - }, - { - "id": "C2715DD8-6883-4FC0-AA3F-1D84A9670594", - "defKey": "remark", - "defName": "备注", - "intro": null, - "orderValue": null, - "baseDataType": "CHAR", - "bizDomainType": "", - "dbDataType": "CHAR", - "dataLen": 500, - "numScale": null, - "primaryKey": null, - "notNull": null, - "autoIncrement": null, - "defaultValue": "", - "stndDictId": null, - "stndDictKey": null, - "stndFieldId": null, - "stndFieldKey": null, - "mark": null, - "attr1": null, - "attr2": null, - "attr3": null, - "attr4": null, - "attr5": null, - "attr6": null, - "attr7": null, - "attr8": null, - "attr9": null, - "attr10": null, - "attr11": null, - "attr12": null, - "attr13": null, - "attr14": null, - "attr15": null, - "attr16": null, - "attr17": null, - "attr18": null, - "attr19": null, - "attr20": null, - "origin": null, - "stndComplianceType": null, - "stndComplianceLevel": null, - "updatedUserId": null, - "createdUserId": null - } - ], - "correlations": null, - "indexes": [ - { - "id": "69D14A26-F56E-48B7-9B5C-32AF306513A1", - "type": "PRIMARY KEY", - "defKey": null, - "defName": null, - "intro": null, - "orderValue": null, - "fields": [ - { - "id": "42CEACAF-EB89-4A56-96F7-C42A3E9A762A", - "fieldId": "63C75D8B-54BA-4E9C-9A76-936842AFB73E", - "fieldDefKey": "flow_id", - "sortType": null - } - ] - } - ] - }, { "id": "3A0C2179-8576-40CB-8A4D-647318E432BC", "type": "P", @@ -43216,7 +38824,7 @@ "readonly": false, "allowWs": false }, - "updateTime": 1766223215646, - "signature": "674f37424e1a4670d28d951e2b590117", + "updateTime": 1766388284712, + "signature": "f5251cf69e7c212ec50edab3ca8251d0", "branchId": "1111" -} +} \ No newline at end of file