diff --git a/njzscloud-common/njzscloud-common-gen/src/main/resources/templates/ts/form_vue.btl b/njzscloud-common/njzscloud-common-gen/src/main/resources/templates/ts/form_vue.btl index c833e02..d36014e 100644 --- a/njzscloud-common/njzscloud-common-gen/src/main/resources/templates/ts/form_vue.btl +++ b/njzscloud-common/njzscloud-common-gen/src/main/resources/templates/ts/form_vue.btl @@ -44,6 +44,7 @@ var dTsName = dc + ".d.ts"; import ${ucc}Api from '@/pages/${moduleName}<%if(subModuleName != null){%>/${subModuleName}<%}%>/${apiTsName}' import Strings from '@/common/utils/strings.ts' import FormUtil from '@/common/utils/formUtil.ts' +import Utils from '@/common/utils' import { ElMessage, type FormInstance, @@ -57,7 +58,7 @@ const status = ref<'add' | 'view' | 'modify'>('add') const ${lcc}FormIns = useTemplateRef('${lcc}Form') -const formData = ref<${ucc}Types.Search${ucc}Result>({}) +const formData = Utils.resetAble(reactive<${ucc}Types.Search${ucc}Result>({})) const rules = reactive>({ <% for(column in table.columns) { @@ -67,14 +68,14 @@ ${toCamelCase(column.name)}: [{ required: true, message: '请填写${column.comm }) function dialogCloseHandler() { - formData.value = {} + formData.$reset() } function submitHandler() { if (status.value === 'view') return submiting.value = true - if (formData.value.id != null) { - FormUtil.submit(${lcc}FormIns, () => ${ucc}Api.modify(formData.value)) + if (formData.id != null) { + FormUtil.submit(${lcc}FormIns, () => ${ucc}Api.modify(formData)) .then(() => { ElMessage.success('修改成功') emits('editSucc') @@ -84,7 +85,7 @@ function submitHandler() { submiting.value = false }) } else { - FormUtil.submit(${lcc}FormIns, () => ${ucc}Api.add(formData.value)) + FormUtil.submit(${lcc}FormIns, () => ${ucc}Api.add(formData)) .then(() => { ElMessage.success('添加成功') emits('editSucc') @@ -103,11 +104,11 @@ defineExpose({ status.value = 'modify' ${ucc}Api.detail(data.id!) .then(res => { - formData.value = res.data + formData.$reset(res.data) }) } else { status.value = 'add' - formData.value = data + formData.$reset(data) } } }) diff --git a/njzscloud-common/njzscloud-common-gen/src/main/resources/templates/ts/page_vue.btl b/njzscloud-common/njzscloud-common-gen/src/main/resources/templates/ts/page_vue.btl index 99d68a2..eec5f77 100644 --- a/njzscloud-common/njzscloud-common-gen/src/main/resources/templates/ts/page_vue.btl +++ b/njzscloud-common/njzscloud-common-gen/src/main/resources/templates/ts/page_vue.btl @@ -68,11 +68,14 @@ var dTsName = dc + ".d.ts"; + layout="->, sizes, total, prev, pager, next" + v-model:current-page="searchForm.current" + v-model:page-size="searchForm.size" + :total="totalCount" + :page-sizes="[10, 20, 50, 100, 500]" + :hide-on-single-page="false" + :teleported="false" + @change="paging"/> <${ucc}Form ref="${lcc}Form" @edit-succ="paging"/> @@ -82,26 +85,19 @@ import ${ucc}Api from '@/pages/${moduleName}<%if(subModuleName != null){%>/${sub import ${ucc}Form from '@/pages/${moduleName}<%if(subModuleName != null){%>/${subModuleName}<%}%>/${formVueName}' import Page from '@/components/page/Page.vue' import { elIcons } from '@/common/element/element.ts' +import Utils from '@/common/utils' -const tableData = ref<${ucc}Types.Search${ucc}Result[]>([]) -const searchForm = ref<${ucc}Types.Search${ucc}Param>({ +const totalCount = ref(0) +const tableData = Utils.resetAble(reactive<${ucc}Types.Search${ucc}Result[]>([])) +const searchForm = Utils.resetAble(reactive<${ucc}Types.Search${ucc}Param>({ current: 1, size: 20, -}) +})) const searching = ref(false) const deling = ref(false) const showSearchForm = ref(true) const ${lcc}FormIns = useTemplateRef>('${lcc}Form') -const pagination = reactive({ - total: 0, - current: 1, - size: 1, -}) -function pageChangeHandler(currentPage: number, pageSize: number) { - searchForm.value.current = currentPage - searchForm.value.size = pageSize - paging() -} + function showDialog(data?: ${ucc}Types.Search${ucc}Result) { ${lcc}FormIns.value?.open(data) } @@ -127,18 +123,16 @@ function addHandler() { } function reset() { - searchForm.value = { - current: 1, - size: 20, - } + searchForm.$reset() paging() } function paging() { searching.value = true - ${ucc}Api.paging(searchForm.value) + ${ucc}Api.paging(searchForm) .then(res => { - tableData.value = res.data?.records ?? [] + totalCount.value = res.data?.total ?? 0 + tableData.$reset(res.data?.records ?? []) }) .finally(() => { searching.value = false @@ -153,6 +147,7 @@ onMounted(() => { diff --git a/njzscloud-svr/src/main/java/com/njzscloud/dispose/cst/customer/pojo/param/SearchCustomerParam.java b/njzscloud-svr/src/main/java/com/njzscloud/dispose/cst/customer/pojo/param/SearchCustomerParam.java index 79d5501..c9c5897 100644 --- a/njzscloud-svr/src/main/java/com/njzscloud/dispose/cst/customer/pojo/param/SearchCustomerParam.java +++ b/njzscloud-svr/src/main/java/com/njzscloud/dispose/cst/customer/pojo/param/SearchCustomerParam.java @@ -24,6 +24,9 @@ public class SearchCustomerParam { private String keywords; + private Boolean manager; + + /** * 结算方式,YueJie-->月结、YuE-->余额、XianFu-->现付 */ diff --git a/njzscloud-svr/src/main/resources/mapper/cst/customer/CustomerMapper.xml b/njzscloud-svr/src/main/resources/mapper/cst/customer/CustomerMapper.xml index 0b6e887..b1d456f 100644 --- a/njzscloud-svr/src/main/resources/mapper/cst/customer/CustomerMapper.xml +++ b/njzscloud-svr/src/main/resources/mapper/cst/customer/CustomerMapper.xml @@ -44,7 +44,7 @@ FROM cst_customer a INNER JOIN sys_user b ON b.id = a.user_id AND b.deleted = 0 INNER JOIN sys_user_account c ON c.user_id = b.id AND b.deleted = 0 - LEFT JOIN cst_org d ON c.id = a.org_id AND d.deleted = 0 + LEFT JOIN cst_org d ON d.id = a.org_id AND d.deleted = 0 diff --git a/z-doc/pdma/njzscloud-dispose.pdma b/z-doc/pdma/njzscloud-dispose.pdma index a12d6b7..bb35722 100644 --- a/z-doc/pdma/njzscloud-dispose.pdma +++ b/z-doc/pdma/njzscloud-dispose.pdma @@ -3362,11 +3362,6 @@ "refObjectId": "38B910DC-4D79-448E-9EA4-CED1E92B03DE", "refObjectType": "P", "orderValue": 11 - }, - { - "refObjectId": "6817DD07-3355-4E35-924A-F383FEF78E86", - "refObjectType": "P", - "orderValue": 12 } ], "diagramRefs": [], @@ -3691,19 +3686,14 @@ "orderValue": 63 }, { - "refObjectId": "6817DD07-3355-4E35-924A-F383FEF78E86", + "refObjectId": "3A0C2179-8576-40CB-8A4D-647318E432BC", "refObjectType": "P", "orderValue": 64 }, - { - "refObjectId": "3A0C2179-8576-40CB-8A4D-647318E432BC", - "refObjectType": "P", - "orderValue": 65 - }, { "refObjectId": "1DF0083F-E75C-45CA-BCCF-62018CC23FC3", "refObjectType": "P", - "orderValue": 66 + "orderValue": 65 } ], "diagramRefs": [] @@ -28759,11 +28749,568 @@ "attr20": "", "origin": "UI" }, + { + "id": "056BBA31-6276-46A6-AA03-B2D5CFAF2C72", + "defKey": "payment_status", + "defName": "支付状态", + "intro": "", + "baseDataType": "VARCHAR", + "bizDomainType": "", + "dbDataType": "VARCHAR", + "dataLen": 32, + "numScale": "", + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "'WeiZhiFu'", + "stndDictId": "payment_status", + "stndFieldId": "", + "stndDictKey": "payment_status", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "Manual", + "dictItems": [ + { + "itemKey": "MianFei", + "itemName": "免费", + "parentKey": "", + "intro": "", + "id": "9C81AAAC-DB22-457A-876C-9B85357D3C08" + }, + { + "itemKey": "WeiZhiFu", + "itemName": "未支付", + "parentKey": "", + "intro": "", + "id": "4E544E5C-3A58-4EF3-B43E-9920D95C4850" + }, + { + "itemKey": "YiZhiFu", + "itemName": "已支付", + "parentKey": "", + "intro": "", + "id": "1FDE8C9C-AF01-4D10-8B81-BAD8B5D52EC9" + }, + { + "itemKey": "YiTuiKuan", + "itemName": "已退款", + "parentKey": "", + "intro": "", + "id": "CD40B918-2BCD-4E02-B911-F05BBD0ADBBC" + } + ], + "fieldTier": "", + "mark": null, + "attr1": "", + "attr2": "", + "attr3": "", + "attr4": "", + "attr5": "", + "attr6": "", + "attr7": "", + "attr8": "", + "attr9": "", + "attr10": "", + "attr11": "", + "attr12": "", + "attr13": "", + "attr14": "", + "attr15": "", + "attr16": "", + "attr17": "", + "attr18": "", + "attr19": "", + "attr20": "", + "origin": "PASTE" + }, + { + "id": "FA809A82-2CE5-4D56-808C-C5E52D9E9EF3", + "defKey": "pay_time", + "defName": "支付时间", + "intro": "", + "baseDataType": "DATETIME", + "bizDomainType": "", + "dbDataType": "DATETIME", + "dataLen": "", + "numScale": "", + "primaryKey": 0, + "notNull": 0, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "", + "stndFieldId": "", + "stndDictKey": "", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "", + "dictItems": null, + "fieldTier": "", + "mark": null, + "attr1": "", + "attr2": "", + "attr3": "", + "attr4": "", + "attr5": "", + "attr6": "", + "attr7": "", + "attr8": "", + "attr9": "", + "attr10": "", + "attr11": "", + "attr12": "", + "attr13": "", + "attr14": "", + "attr15": "", + "attr16": "", + "attr17": "", + "attr18": "", + "attr19": "", + "attr20": "", + "origin": "PASTE" + }, + { + "id": "A72EAEB2-F77A-4070-9F01-3178424926A8", + "defKey": "refund_time", + "defName": "退款时间", + "intro": "", + "baseDataType": "DATETIME", + "bizDomainType": "", + "dbDataType": "DATETIME", + "dataLen": "", + "numScale": "", + "primaryKey": 0, + "notNull": 0, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "", + "stndFieldId": "", + "stndDictKey": "", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "", + "dictItems": null, + "fieldTier": "", + "mark": null, + "attr1": "", + "attr2": "", + "attr3": "", + "attr4": "", + "attr5": "", + "attr6": "", + "attr7": "", + "attr8": "", + "attr9": "", + "attr10": "", + "attr11": "", + "attr12": "", + "attr13": "", + "attr14": "", + "attr15": "", + "attr16": "", + "attr17": "", + "attr18": "", + "attr19": "", + "attr20": "", + "origin": "PASTE" + }, + { + "id": "90A9E640-2FF2-4990-8ED2-B25442C5806F", + "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": "EBF4ED2A-DA7A-4D31-9C88-F7F76D0776F3", + "defKey": "discount_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": "519D8CD7-371E-45FB-9BBF-644D8EAF1B05", + "defKey": "revise_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": "90BA9947-C47B-402F-AF4D-B4923540C80A", + "defKey": "settle_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": "45C26BC5-723E-4D5D-BAD4-A318CAE3C63B", + "defKey": "settlement_way", + "defName": "结算方式", + "intro": "", + "baseDataType": "VARCHAR", + "bizDomainType": "", + "dbDataType": "VARCHAR", + "dataLen": 16, + "numScale": "", + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "'XianFu'", + "stndDictId": "settlement_way", + "stndFieldId": "", + "stndDictKey": "settlement_way", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "Manual", + "dictItems": [ + { + "itemKey": "YueJie", + "itemName": "月结", + "parentKey": "", + "intro": "", + "id": "21E8CE9A-A4E4-43EC-802F-C62332F485CE" + }, + { + "itemKey": "YuE", + "itemName": "余额", + "parentKey": "", + "intro": "", + "id": "1E3F7458-C19E-481F-A6BB-881CB6E576CD" + }, + { + "itemKey": "XianFu", + "itemName": "现付", + "parentKey": "", + "intro": "", + "id": "02F37949-4DCD-4BF8-93DB-76D974A1BC47" + } + ], + "fieldTier": "", + "mark": null, + "attr1": "", + "attr2": "", + "attr3": "", + "attr4": "", + "attr5": "", + "attr6": "", + "attr7": "", + "attr8": "", + "attr9": "", + "attr10": "", + "attr11": "", + "attr12": "", + "attr13": "", + "attr14": "", + "attr15": "", + "attr16": "", + "attr17": "", + "attr18": "", + "attr19": "", + "attr20": "", + "origin": "PASTE" + }, + { + "id": "CC59BD46-47C8-4ACD-AB96-12BF347816E5", + "defKey": "payer_user_id", + "defName": "付款人 Id", + "intro": "sys_user.id", + "baseDataType": "BIGINT", + "bizDomainType": "", + "dbDataType": "BIGINT", + "dataLen": "", + "numScale": "", + "primaryKey": 0, + "notNull": 0, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "", + "stndFieldId": "", + "stndDictKey": "", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "", + "dictItems": null, + "fieldTier": "", + "mark": null, + "attr1": "", + "attr2": "", + "attr3": "", + "attr4": "", + "attr5": "", + "attr6": "", + "attr7": "", + "attr8": "", + "attr9": "", + "attr10": "", + "attr11": "", + "attr12": "", + "attr13": "", + "attr14": "", + "attr15": "", + "attr16": "", + "attr17": "", + "attr18": "", + "attr19": "", + "attr20": "", + "origin": "PASTE" + }, + { + "id": "CE690024-4CAC-434A-8287-91C3D6F7D279", + "defKey": "payer_customer_id", + "defName": "付款人客户 Id", + "intro": "cst_customer.id", + "baseDataType": "BIGINT", + "bizDomainType": "", + "dbDataType": "BIGINT", + "dataLen": "", + "numScale": "", + "primaryKey": 0, + "notNull": 0, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "", + "stndFieldId": "", + "stndDictKey": "", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "", + "dictItems": null, + "fieldTier": "", + "mark": null, + "attr1": "", + "attr2": "", + "attr3": "", + "attr4": "", + "attr5": "", + "attr6": "", + "attr7": "", + "attr8": "", + "attr9": "", + "attr10": "", + "attr11": "", + "attr12": "", + "attr13": "", + "attr14": "", + "attr15": "", + "attr16": "", + "attr17": "", + "attr18": "", + "attr19": "", + "attr20": "", + "origin": "PASTE" + }, + { + "id": "C740AEFD-BDD5-491F-B0A7-2786D3D5CB7A", + "defKey": "payer_money_account", + "defName": "付款方资金账户 Id", + "intro": "", + "baseDataType": "BIGINT", + "bizDomainType": "", + "dbDataType": "BIGINT", + "dataLen": "", + "numScale": "", + "primaryKey": 0, + "notNull": 0, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "", + "stndFieldId": "", + "stndDictKey": "", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "", + "dictItems": null, + "fieldTier": "", + "mark": null, + "attr1": "", + "attr2": "", + "attr3": "", + "attr4": "", + "attr5": "", + "attr6": "", + "attr7": "", + "attr8": "", + "attr9": "", + "attr10": "", + "attr11": "", + "attr12": "", + "attr13": "", + "attr14": "", + "attr15": "", + "attr16": "", + "attr17": "", + "attr18": "", + "attr19": "", + "attr20": "", + "origin": "PASTE" + }, { "id": "4E26BE38-0359-4A18-B025-E996E574D7C8", "defKey": "creator_id", "defName": "创建人 Id", - "intro": " sys_user.id", + "intro": "sys_user.id", "baseDataType": "BIGINT", "bizDomainType": "", "dbDataType": "BIGINT", @@ -29160,6 +29707,52 @@ "attr20": "", "origin": "PASTE" }, + { + "id": "8EB5EC01-41A0-4A14-8A46-7D3E2957E97A", + "defKey": "goods_id", + "defName": "产品 Id", + "intro": "仅当项目类型为“产品”时有值", + "baseDataType": "BIGINT", + "bizDomainType": "", + "dbDataType": "BIGINT", + "dataLen": "", + "numScale": "", + "primaryKey": 0, + "notNull": 0, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "", + "stndFieldId": "", + "stndDictKey": "", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "", + "dictItems": null, + "fieldTier": "", + "mark": null, + "attr1": "", + "attr2": "", + "attr3": "", + "attr4": "", + "attr5": "", + "attr6": "", + "attr7": "", + "attr8": "", + "attr9": "", + "attr10": "", + "attr11": "", + "attr12": "", + "attr13": "", + "attr14": "", + "attr15": "", + "attr16": "", + "attr17": "", + "attr18": "", + "attr19": "", + "attr20": "", + "origin": "PASTE" + }, { "id": "850B4B65-409F-4F25-AFA0-9ABDE60AD557", "defKey": "expense_item_name", @@ -29657,7 +30250,7 @@ "id": "3A320857-94C6-46AE-BE07-823A7C4F581F", "defKey": "user_scope", "defName": "适用用户", - "intro": "结构类型:{\n strategy: None | All | Specify,\n objs: long[]\n}", + "intro": "结构类型:{strategy: None | All | Specify,ids:long[]}", "baseDataType": "TEXT", "bizDomainType": "", "dbDataType": "TEXT", @@ -29725,7 +30318,7 @@ "id": "4270C166-11F1-4420-BA9A-31449DCED60E", "defKey": "station_scope", "defName": "适用站点", - "intro": "结构类型:{\n strategy: None | All | Specify,\n objs: long[]\n}", + "intro": "结构类型:{strategy: None | All | Specify,ids:long[]}", "baseDataType": "TEXT", "bizDomainType": "", "dbDataType": "TEXT", @@ -29793,7 +30386,7 @@ "id": "9A55E6F2-B165-4788-A6BA-00FE644E4CF6", "defKey": "goods_scope", "defName": "适用产品", - "intro": "结构类型:{\n strategy: None | All | Specify,\n objs: long[]\n}", + "intro": "结构类型:{strategy: None | All | Specify,ids:long[]}", "baseDataType": "TEXT", "bizDomainType": "", "dbDataType": "TEXT", @@ -29857,6 +30450,609 @@ "attr20": "", "origin": "PASTE" }, + { + "id": "2A72CCA6-ACB1-4A1B-883F-7221DF77682B", + "defKey": "quantity", + "defName": "量", + "intro": "", + "baseDataType": "INT", + "bizDomainType": "", + "dbDataType": "INT", + "dataLen": "", + "numScale": "", + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "", + "stndFieldId": "", + "stndDictKey": "", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "", + "dictItems": null, + "fieldTier": "", + "mark": null, + "attr1": "", + "attr2": "", + "attr3": "", + "attr4": "", + "attr5": "", + "attr6": "", + "attr7": "", + "attr8": "", + "attr9": "", + "attr10": "", + "attr11": "", + "attr12": "", + "attr13": "", + "attr14": "", + "attr15": "", + "attr16": "", + "attr17": "", + "attr18": "", + "attr19": "", + "attr20": "", + "origin": "PASTE" + }, + { + "id": "C4CB410F-E3CC-4EE5-9BA5-3238841A25BF", + "defKey": "payment_status", + "defName": "支付状态", + "intro": "", + "baseDataType": "VARCHAR", + "bizDomainType": "", + "dbDataType": "VARCHAR", + "dataLen": 32, + "numScale": "", + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "'WeiZhiFu'", + "stndDictId": "payment_status", + "stndFieldId": "", + "stndDictKey": "payment_status", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "Manual", + "dictItems": [ + { + "itemKey": "MianFei", + "itemName": "免费", + "parentKey": "", + "intro": "", + "id": "9C81AAAC-DB22-457A-876C-9B85357D3C08" + }, + { + "itemKey": "WeiZhiFu", + "itemName": "未支付", + "parentKey": "", + "intro": "", + "id": "4E544E5C-3A58-4EF3-B43E-9920D95C4850" + }, + { + "itemKey": "YiZhiFu", + "itemName": "已支付", + "parentKey": "", + "intro": "", + "id": "1FDE8C9C-AF01-4D10-8B81-BAD8B5D52EC9" + }, + { + "itemKey": "YiTuiKuan", + "itemName": "已退款", + "parentKey": "", + "intro": "", + "id": "CD40B918-2BCD-4E02-B911-F05BBD0ADBBC" + } + ], + "fieldTier": "", + "mark": null, + "attr1": "", + "attr2": "", + "attr3": "", + "attr4": "", + "attr5": "", + "attr6": "", + "attr7": "", + "attr8": "", + "attr9": "", + "attr10": "", + "attr11": "", + "attr12": "", + "attr13": "", + "attr14": "", + "attr15": "", + "attr16": "", + "attr17": "", + "attr18": "", + "attr19": "", + "attr20": "", + "origin": "PASTE" + }, + { + "id": "B0C03032-7AAC-45C4-A860-7CCD689982CA", + "defKey": "pay_time", + "defName": "支付时间", + "intro": "", + "baseDataType": "DATETIME", + "bizDomainType": "", + "dbDataType": "DATETIME", + "dataLen": "", + "numScale": "", + "primaryKey": 0, + "notNull": 0, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "", + "stndFieldId": "", + "stndDictKey": "", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "", + "dictItems": null, + "fieldTier": "", + "mark": null, + "attr1": "", + "attr2": "", + "attr3": "", + "attr4": "", + "attr5": "", + "attr6": "", + "attr7": "", + "attr8": "", + "attr9": "", + "attr10": "", + "attr11": "", + "attr12": "", + "attr13": "", + "attr14": "", + "attr15": "", + "attr16": "", + "attr17": "", + "attr18": "", + "attr19": "", + "attr20": "", + "origin": "PASTE" + }, + { + "id": "104FB3D7-1587-48F4-9AE1-3392DFD8C7D1", + "defKey": "refund_time", + "defName": "退款时间", + "intro": "", + "baseDataType": "DATETIME", + "bizDomainType": "", + "dbDataType": "DATETIME", + "dataLen": "", + "numScale": "", + "primaryKey": 0, + "notNull": 0, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "", + "stndFieldId": "", + "stndDictKey": "", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "", + "dictItems": null, + "fieldTier": "", + "mark": null, + "attr1": "", + "attr2": "", + "attr3": "", + "attr4": "", + "attr5": "", + "attr6": "", + "attr7": "", + "attr8": "", + "attr9": "", + "attr10": "", + "attr11": "", + "attr12": "", + "attr13": "", + "attr14": "", + "attr15": "", + "attr16": "", + "attr17": "", + "attr18": "", + "attr19": "", + "attr20": "", + "origin": "PASTE" + }, + { + "id": "6C0721B9-091F-4417-B258-2CDF46A278A8", + "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": "B5E01649-2C92-4BD2-ACBD-E95C6AECADE7", + "defKey": "discount_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": "3238B5F9-9DD7-4A7F-AEBB-AF0D7EB43D9C", + "defKey": "revise_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": "9D79E0D0-3293-4B93-A191-4AB6ACCC3C16", + "defKey": "settle_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": "48E28456-10FC-4B80-943F-F88416FB7759", + "defKey": "settlement_way", + "defName": "结算方式", + "intro": "", + "baseDataType": "VARCHAR", + "bizDomainType": "", + "dbDataType": "VARCHAR", + "dataLen": 16, + "numScale": "", + "primaryKey": 0, + "notNull": 1, + "autoIncrement": 0, + "defaultValue": "'XianFu'", + "stndDictId": "settlement_way", + "stndFieldId": "", + "stndDictKey": "settlement_way", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "Manual", + "dictItems": [ + { + "itemKey": "YueJie", + "itemName": "月结", + "parentKey": "", + "intro": "", + "id": "21E8CE9A-A4E4-43EC-802F-C62332F485CE" + }, + { + "itemKey": "YuE", + "itemName": "余额", + "parentKey": "", + "intro": "", + "id": "1E3F7458-C19E-481F-A6BB-881CB6E576CD" + }, + { + "itemKey": "XianFu", + "itemName": "现付", + "parentKey": "", + "intro": "", + "id": "02F37949-4DCD-4BF8-93DB-76D974A1BC47" + } + ], + "fieldTier": "", + "mark": null, + "attr1": "", + "attr2": "", + "attr3": "", + "attr4": "", + "attr5": "", + "attr6": "", + "attr7": "", + "attr8": "", + "attr9": "", + "attr10": "", + "attr11": "", + "attr12": "", + "attr13": "", + "attr14": "", + "attr15": "", + "attr16": "", + "attr17": "", + "attr18": "", + "attr19": "", + "attr20": "", + "origin": "PASTE" + }, + { + "id": "F308DD2F-C708-4836-B9E7-BAEDC70B63AF", + "defKey": "payer_user_id", + "defName": "付款人 Id", + "intro": "sys_user.id", + "baseDataType": "BIGINT", + "bizDomainType": "", + "dbDataType": "BIGINT", + "dataLen": "", + "numScale": "", + "primaryKey": 0, + "notNull": 0, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "", + "stndFieldId": "", + "stndDictKey": "", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "", + "dictItems": null, + "fieldTier": "", + "mark": null, + "attr1": "", + "attr2": "", + "attr3": "", + "attr4": "", + "attr5": "", + "attr6": "", + "attr7": "", + "attr8": "", + "attr9": "", + "attr10": "", + "attr11": "", + "attr12": "", + "attr13": "", + "attr14": "", + "attr15": "", + "attr16": "", + "attr17": "", + "attr18": "", + "attr19": "", + "attr20": "", + "origin": "PASTE" + }, + { + "id": "628989A1-C6D9-41D8-A99D-E89BB9631362", + "defKey": "payer_customer_id", + "defName": "付款人客户 Id", + "intro": "cst_customer.id", + "baseDataType": "BIGINT", + "bizDomainType": "", + "dbDataType": "BIGINT", + "dataLen": "", + "numScale": "", + "primaryKey": 0, + "notNull": 0, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "", + "stndFieldId": "", + "stndDictKey": "", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "", + "dictItems": null, + "fieldTier": "", + "mark": null, + "attr1": "", + "attr2": "", + "attr3": "", + "attr4": "", + "attr5": "", + "attr6": "", + "attr7": "", + "attr8": "", + "attr9": "", + "attr10": "", + "attr11": "", + "attr12": "", + "attr13": "", + "attr14": "", + "attr15": "", + "attr16": "", + "attr17": "", + "attr18": "", + "attr19": "", + "attr20": "", + "origin": "PASTE" + }, + { + "id": "393F0F1F-FF1A-43E5-B366-2786FF30C58F", + "defKey": "payer_money_account", + "defName": "付款方资金账户 Id", + "intro": "", + "baseDataType": "BIGINT", + "bizDomainType": "", + "dbDataType": "BIGINT", + "dataLen": "", + "numScale": "", + "primaryKey": 0, + "notNull": 0, + "autoIncrement": 0, + "defaultValue": "", + "stndDictId": "", + "stndFieldId": "", + "stndDictKey": "", + "stndFieldKey": "", + "stndComplianceLevel": "", + "stndComplianceType": "", + "dictFrom": "", + "dictItems": null, + "fieldTier": "", + "mark": null, + "attr1": "", + "attr2": "", + "attr3": "", + "attr4": "", + "attr5": "", + "attr6": "", + "attr7": "", + "attr8": "", + "attr9": "", + "attr10": "", + "attr11": "", + "attr12": "", + "attr13": "", + "attr14": "", + "attr15": "", + "attr16": "", + "attr17": "", + "attr18": "", + "attr19": "", + "attr20": "", + "origin": "PASTE" + }, { "id": "7EF2F922-5898-49D1-AA9B-EB4E0E633D7B", "defKey": "creator_id", @@ -31847,26 +33043,41 @@ }, { "id": "9245B048-E150-4C38-AD5E-85D40577D65E", - "defKey": "cargo_place", - "defName": "装/卸货地址", + "defKey": "zx", + "defName": "装/卸货", "intro": null, "baseDataType": "VARCHAR", "bizDomainType": "", "dbDataType": "VARCHAR", - "dataLen": 128, + "dataLen": 10, "numScale": null, "primaryKey": 0, "notNull": 1, "autoIncrement": 0, "defaultValue": null, - "stndDictId": null, + "stndDictId": "zx", "stndFieldId": null, - "stndDictKey": null, + "stndDictKey": "zx", "stndFieldKey": null, "stndComplianceLevel": null, "stndComplianceType": null, - "dictFrom": "", - "dictItems": null, + "dictFrom": "Manual", + "dictItems": [ + { + "itemKey": "ZhuangHuo", + "itemName": "装货地址", + "parentKey": "", + "intro": "", + "id": "33F25C62-CFB3-4650-93DB-E79AAB3678A6" + }, + { + "itemKey": "XieHuo", + "itemName": "卸货地址", + "parentKey": "", + "intro": "", + "id": "FFBDF795-EC61-4A64-A457-1023898CF0F1" + } + ], "fieldTier": "", "mark": null, "attr1": null, @@ -40323,1034 +41534,6 @@ } ] }, - { - "id": "6817DD07-3355-4E35-924A-F383FEF78E86", - "schemaName": null, - "defKey": "cst_order_expense_detail", - "defName": "收费明细", - "intro": "", - "type": "P", - "fields": [ - { - "id": "3EA33255-A956-4E05-A5B8-566D44CBAD90", - "defKey": "id", - "defName": "Id", - "intro": "", - "baseDataType": "BIGINT", - "bizDomainType": "", - "dbDataType": "BIGINT", - "dataLen": "", - "numScale": "", - "primaryKey": 1, - "notNull": 1, - "autoIncrement": 0, - "defaultValue": "", - "stndDictId": "", - "stndFieldId": "", - "stndDictKey": "", - "stndFieldKey": "", - "stndComplianceLevel": "", - "stndComplianceType": "", - "dictFrom": "", - "dictItems": [], - "fieldTier": "", - "mark": null, - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "attr10": "", - "attr11": "", - "attr12": "", - "attr13": "", - "attr14": "", - "attr15": "", - "attr16": "", - "attr17": "", - "attr18": "PDManer", - "attr19": "", - "attr20": "", - "origin": "PASTE" - }, - { - "id": "1385E0BC-22DC-49ED-99D2-85B61B3BFB3A", - "defKey": "trans_id", - "defName": "运输明细 Id", - "intro": "", - "baseDataType": "BIGINT", - "bizDomainType": "", - "dbDataType": "BIGINT", - "dataLen": "", - "numScale": "", - "primaryKey": 0, - "notNull": 1, - "autoIncrement": 0, - "defaultValue": "", - "stndDictId": "", - "stndFieldId": "", - "stndDictKey": "", - "stndFieldKey": "", - "stndComplianceLevel": "", - "stndComplianceType": "", - "dictFrom": "", - "dictItems": null, - "fieldTier": "", - "mark": null, - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "attr10": "", - "attr11": "", - "attr12": "", - "attr13": "", - "attr14": "", - "attr15": "", - "attr16": "", - "attr17": "", - "attr18": "", - "attr19": "", - "attr20": "", - "origin": "UI" - }, - { - "id": "9D0330FE-D21A-42DA-B23B-4DC81E2ECCA0", - "defKey": "train_num", - "defName": "车次", - "intro": "", - "baseDataType": "INT", - "bizDomainType": "", - "dbDataType": "INT", - "dataLen": "", - "numScale": "", - "primaryKey": 0, - "notNull": 1, - "autoIncrement": 0, - "defaultValue": "", - "stndDictId": "", - "stndFieldId": "", - "stndDictKey": "", - "stndFieldKey": "", - "stndComplianceLevel": "", - "stndComplianceType": "", - "dictFrom": "", - "dictItems": null, - "fieldTier": "", - "mark": null, - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "attr10": "", - "attr11": "", - "attr12": "", - "attr13": "", - "attr14": "", - "attr15": "", - "attr16": "", - "attr17": "", - "attr18": "", - "attr19": "", - "attr20": "", - "origin": "PASTE" - }, - { - "id": "1173E328-0EAA-4232-9397-858AA3518BC8", - "defKey": "quantity", - "defName": "量", - "intro": "", - "baseDataType": "INT", - "bizDomainType": "", - "dbDataType": "INT", - "dataLen": "", - "numScale": "", - "primaryKey": 0, - "notNull": 1, - "autoIncrement": 0, - "defaultValue": "", - "stndDictId": "", - "stndFieldId": "", - "stndDictKey": "", - "stndFieldKey": "", - "stndComplianceLevel": "", - "stndComplianceType": "", - "dictFrom": "", - "dictItems": null, - "fieldTier": "", - "mark": null, - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "attr10": "", - "attr11": "", - "attr12": "", - "attr13": "", - "attr14": "", - "attr15": "", - "attr16": "", - "attr17": "", - "attr18": "", - "attr19": "", - "attr20": "", - "origin": "PASTE" - }, - { - "id": "F18FB072-733A-42C0-A588-19A2A1463595", - "defKey": "expense_item_id", - "defName": "费用明细 Id", - "intro": "", - "baseDataType": "BIGINT", - "bizDomainType": "", - "dbDataType": "BIGINT", - "dataLen": "", - "numScale": "", - "primaryKey": 0, - "notNull": 1, - "autoIncrement": 0, - "defaultValue": "", - "stndDictId": "", - "stndFieldId": "", - "stndDictKey": "", - "stndFieldKey": "", - "stndComplianceLevel": "", - "stndComplianceType": "", - "dictFrom": "", - "dictItems": null, - "fieldTier": "", - "mark": null, - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "attr10": "", - "attr11": "", - "attr12": "", - "attr13": "", - "attr14": "", - "attr15": "", - "attr16": "", - "attr17": "", - "attr18": "", - "attr19": "", - "attr20": "", - "origin": "UI" - }, - { - "id": "F23740FA-4E98-4608-A333-BEE21FFB8190", - "defKey": "payment_status", - "defName": "支付状态", - "intro": "", - "baseDataType": "VARCHAR", - "bizDomainType": "", - "dbDataType": "VARCHAR", - "dataLen": 32, - "numScale": "", - "primaryKey": 0, - "notNull": 1, - "autoIncrement": 0, - "defaultValue": "", - "stndDictId": "payment_status", - "stndFieldId": "", - "stndDictKey": "payment_status", - "stndFieldKey": "", - "stndComplianceLevel": "", - "stndComplianceType": "", - "dictFrom": "Manual", - "dictItems": [ - { - "itemKey": "MianFei", - "itemName": "免费", - "parentKey": "", - "intro": "", - "id": "9C81AAAC-DB22-457A-876C-9B85357D3C08" - }, - { - "itemKey": "WeiZhiFu", - "itemName": "未支付", - "parentKey": "", - "intro": "", - "id": "4E544E5C-3A58-4EF3-B43E-9920D95C4850" - }, - { - "itemKey": "YiZhiFu", - "itemName": "已支付", - "parentKey": "", - "intro": "", - "id": "1FDE8C9C-AF01-4D10-8B81-BAD8B5D52EC9" - }, - { - "itemKey": "YiTuiKuan", - "itemName": "已退款", - "parentKey": "", - "intro": "", - "id": "CD40B918-2BCD-4E02-B911-F05BBD0ADBBC" - } - ], - "fieldTier": "", - "mark": null, - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "attr10": "", - "attr11": "", - "attr12": "", - "attr13": "", - "attr14": "", - "attr15": "", - "attr16": "", - "attr17": "", - "attr18": "", - "attr19": "", - "attr20": "", - "origin": "PASTE" - }, - { - "id": "78217DF7-7353-4DB0-B4D9-90018C95A6B3", - "defKey": "pay_time", - "defName": "支付时间", - "intro": "", - "baseDataType": "DECIMAL", - "bizDomainType": "", - "dbDataType": "DECIMAL", - "dataLen": "", - "numScale": "", - "primaryKey": 0, - "notNull": 0, - "autoIncrement": 0, - "defaultValue": "", - "stndDictId": "", - "stndFieldId": "", - "stndDictKey": "", - "stndFieldKey": "", - "stndComplianceLevel": "", - "stndComplianceType": "", - "dictFrom": "", - "dictItems": null, - "fieldTier": "", - "mark": null, - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "attr10": "", - "attr11": "", - "attr12": "", - "attr13": "", - "attr14": "", - "attr15": "", - "attr16": "", - "attr17": "", - "attr18": "", - "attr19": "", - "attr20": "", - "origin": "UI" - }, - { - "id": "35706508-0236-4E61-9524-2D4146A5E616", - "defKey": "refund_time", - "defName": "退款时间", - "intro": "", - "baseDataType": "DECIMAL", - "bizDomainType": "", - "dbDataType": "DECIMAL", - "dataLen": "", - "numScale": "", - "primaryKey": 0, - "notNull": 0, - "autoIncrement": 0, - "defaultValue": "", - "stndDictId": "", - "stndFieldId": "", - "stndDictKey": "", - "stndFieldKey": "", - "stndComplianceLevel": "", - "stndComplianceType": "", - "dictFrom": "", - "dictItems": null, - "fieldTier": "", - "mark": null, - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "attr10": "", - "attr11": "", - "attr12": "", - "attr13": "", - "attr14": "", - "attr15": "", - "attr16": "", - "attr17": "", - "attr18": "", - "attr19": "", - "attr20": "", - "origin": "UI" - }, - { - "id": "FCB081A8-CBA2-4AD1-940D-52D6398DB1AD", - "defKey": "total_money", - "defName": "总金额", - "intro": "单位:元", - "baseDataType": "DECIMAL", - "bizDomainType": "", - "dbDataType": "DECIMAL", - "dataLen": "", - "numScale": "", - "primaryKey": 0, - "notNull": 1, - "autoIncrement": 0, - "defaultValue": "", - "stndDictId": "", - "stndFieldId": "", - "stndDictKey": "", - "stndFieldKey": "", - "stndComplianceLevel": "", - "stndComplianceType": "", - "dictFrom": "", - "dictItems": null, - "fieldTier": "", - "mark": null, - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "attr10": "", - "attr11": "", - "attr12": "", - "attr13": "", - "attr14": "", - "attr15": "", - "attr16": "", - "attr17": "", - "attr18": "", - "attr19": "", - "attr20": "", - "origin": "PASTE" - }, - { - "id": "AF2303AA-916D-4732-B5E8-F2AFDD3F0BB2", - "defKey": "discount_money", - "defName": "优惠金额", - "intro": "单位:元,有正负", - "baseDataType": "DECIMAL", - "bizDomainType": "", - "dbDataType": "DECIMAL", - "dataLen": "", - "numScale": "", - "primaryKey": 0, - "notNull": 1, - "autoIncrement": 0, - "defaultValue": "", - "stndDictId": "", - "stndFieldId": "", - "stndDictKey": "", - "stndFieldKey": "", - "stndComplianceLevel": "", - "stndComplianceType": "", - "dictFrom": "", - "dictItems": null, - "fieldTier": "", - "mark": null, - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "attr10": "", - "attr11": "", - "attr12": "", - "attr13": "", - "attr14": "", - "attr15": "", - "attr16": "", - "attr17": "", - "attr18": "", - "attr19": "", - "attr20": "", - "origin": "PASTE" - }, - { - "id": "C0AC7493-AD80-4953-B9BC-5476CF525285", - "defKey": "revise_money", - "defName": "手动修正金额", - "intro": "单位:元,有正负", - "baseDataType": "DECIMAL", - "bizDomainType": "", - "dbDataType": "DECIMAL", - "dataLen": "", - "numScale": "", - "primaryKey": 0, - "notNull": 1, - "autoIncrement": 0, - "defaultValue": "", - "stndDictId": "", - "stndFieldId": "", - "stndDictKey": "", - "stndFieldKey": "", - "stndComplianceLevel": "", - "stndComplianceType": "", - "dictFrom": "", - "dictItems": null, - "fieldTier": "", - "mark": null, - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "attr10": "", - "attr11": "", - "attr12": "", - "attr13": "", - "attr14": "", - "attr15": "", - "attr16": "", - "attr17": "", - "attr18": "", - "attr19": "", - "attr20": "", - "origin": "PASTE" - }, - { - "id": "31DD0A72-4DD3-47C4-AFD6-322082395FE9", - "defKey": "settle_money", - "defName": "结算金额", - "intro": "单位:元", - "baseDataType": "DECIMAL", - "bizDomainType": "", - "dbDataType": "DECIMAL", - "dataLen": "", - "numScale": "", - "primaryKey": 0, - "notNull": 1, - "autoIncrement": 0, - "defaultValue": "", - "stndDictId": "", - "stndFieldId": "", - "stndDictKey": "", - "stndFieldKey": "", - "stndComplianceLevel": "", - "stndComplianceType": "", - "dictFrom": "", - "dictItems": null, - "fieldTier": "", - "mark": null, - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "attr10": "", - "attr11": "", - "attr12": "", - "attr13": "", - "attr14": "", - "attr15": "", - "attr16": "", - "attr17": "", - "attr18": "", - "attr19": "", - "attr20": "", - "origin": "PASTE" - }, - { - "id": "2FE1F94B-889D-4094-84A2-ED39776B9303", - "defKey": "settlement_way", - "defName": "结算方式", - "intro": "", - "baseDataType": "VARCHAR", - "bizDomainType": "", - "dbDataType": "VARCHAR", - "dataLen": 16, - "numScale": "", - "primaryKey": 0, - "notNull": 1, - "autoIncrement": 0, - "defaultValue": "", - "stndDictId": "settlement_way", - "stndFieldId": "", - "stndDictKey": "settlement_way", - "stndFieldKey": "", - "stndComplianceLevel": "", - "stndComplianceType": "", - "dictFrom": "Manual", - "dictItems": [ - { - "itemKey": "YueJie", - "itemName": "月结", - "parentKey": "", - "intro": "", - "id": "21E8CE9A-A4E4-43EC-802F-C62332F485CE" - }, - { - "itemKey": "YuE", - "itemName": "余额", - "parentKey": "", - "intro": "", - "id": "1E3F7458-C19E-481F-A6BB-881CB6E576CD" - }, - { - "itemKey": "XianFu", - "itemName": "现付", - "parentKey": "", - "intro": "", - "id": "02F37949-4DCD-4BF8-93DB-76D974A1BC47" - } - ], - "fieldTier": "", - "mark": null, - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "attr10": "", - "attr11": "", - "attr12": "", - "attr13": "", - "attr14": "", - "attr15": "", - "attr16": "", - "attr17": "", - "attr18": "", - "attr19": "", - "attr20": "", - "origin": "PASTE" - }, - { - "id": "B4F9823B-781A-4BE3-BC6B-7FA3C3E5C724", - "defKey": "payer_user_id", - "defName": "付款人 Id", - "intro": "sys_user.id", - "baseDataType": "BIGINT", - "bizDomainType": "", - "dbDataType": "BIGINT", - "dataLen": "", - "numScale": "", - "primaryKey": 0, - "notNull": 1, - "autoIncrement": 0, - "defaultValue": "", - "stndDictId": "", - "stndFieldId": "", - "stndDictKey": "", - "stndFieldKey": "", - "stndComplianceLevel": "", - "stndComplianceType": "", - "dictFrom": "", - "dictItems": null, - "fieldTier": "", - "mark": null, - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "attr10": "", - "attr11": "", - "attr12": "", - "attr13": "", - "attr14": "", - "attr15": "", - "attr16": "", - "attr17": "", - "attr18": "", - "attr19": "", - "attr20": "", - "origin": "PASTE" - }, - { - "id": "58A3A997-4623-40CB-BFC5-7BC7C015A309", - "defKey": "payer_customer_id", - "defName": "付款人客户 Id", - "intro": "cst_customer.id", - "baseDataType": "BIGINT", - "bizDomainType": "", - "dbDataType": "BIGINT", - "dataLen": "", - "numScale": "", - "primaryKey": 0, - "notNull": 1, - "autoIncrement": 0, - "defaultValue": "", - "stndDictId": "", - "stndFieldId": "", - "stndDictKey": "", - "stndFieldKey": "", - "stndComplianceLevel": "", - "stndComplianceType": "", - "dictFrom": "", - "dictItems": null, - "fieldTier": "", - "mark": null, - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "attr10": "", - "attr11": "", - "attr12": "", - "attr13": "", - "attr14": "", - "attr15": "", - "attr16": "", - "attr17": "", - "attr18": "", - "attr19": "", - "attr20": "", - "origin": "PASTE" - }, - { - "id": "B7B89277-88CA-4740-A3EA-E33F8B1CDD90", - "defKey": "payer_money_account", - "defName": "付款方资金账户 Id", - "intro": "", - "baseDataType": "BIGINT", - "bizDomainType": "", - "dbDataType": "BIGINT", - "dataLen": "", - "numScale": "", - "primaryKey": 0, - "notNull": 1, - "autoIncrement": 0, - "defaultValue": "", - "stndDictId": "", - "stndFieldId": "", - "stndDictKey": "", - "stndFieldKey": "", - "stndComplianceLevel": "", - "stndComplianceType": "", - "dictFrom": "", - "dictItems": null, - "fieldTier": "", - "mark": null, - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "attr10": "", - "attr11": "", - "attr12": "", - "attr13": "", - "attr14": "", - "attr15": "", - "attr16": "", - "attr17": "", - "attr18": "", - "attr19": "", - "attr20": "", - "origin": "PASTE" - }, - { - "id": "878BD04D-3F9F-47C8-8E88-7741ADEF321B", - "defKey": "creator_id", - "defName": "创建人 Id", - "intro": " sys_user.id", - "baseDataType": "BIGINT", - "bizDomainType": "", - "dbDataType": "BIGINT", - "dataLen": "", - "numScale": "", - "primaryKey": 0, - "notNull": 1, - "autoIncrement": 0, - "defaultValue": "", - "stndDictId": "", - "stndFieldId": "", - "stndDictKey": "", - "stndFieldKey": "", - "stndComplianceLevel": "", - "stndComplianceType": "", - "dictFrom": "", - "dictItems": null, - "fieldTier": "", - "mark": null, - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "attr10": "", - "attr11": "", - "attr12": "", - "attr13": "", - "attr14": "", - "attr15": "", - "attr16": "", - "attr17": "", - "attr18": "PDManer", - "attr19": "", - "attr20": "", - "origin": "PASTE" - }, - { - "id": "64944BC7-BE2C-41EB-B33B-1859F4B38683", - "defKey": "modifier_id", - "defName": "修改人 Id", - "intro": " sys_user.id", - "baseDataType": "BIGINT", - "bizDomainType": "", - "dbDataType": "BIGINT", - "dataLen": "", - "numScale": "", - "primaryKey": 0, - "notNull": 1, - "autoIncrement": 0, - "defaultValue": "", - "stndDictId": "", - "stndFieldId": "", - "stndDictKey": "", - "stndFieldKey": "", - "stndComplianceLevel": "", - "stndComplianceType": "", - "dictFrom": "", - "dictItems": [], - "fieldTier": "", - "mark": null, - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "attr10": "", - "attr11": "", - "attr12": "", - "attr13": "", - "attr14": "", - "attr15": "", - "attr16": "", - "attr17": "", - "attr18": "PDManer", - "attr19": "", - "attr20": "", - "origin": "PASTE" - }, - { - "id": "04BAECED-0468-4CE1-B73B-8E9581ABCFDD", - "defKey": "create_time", - "defName": "创建时间", - "intro": "", - "baseDataType": "DATETIME", - "bizDomainType": "", - "dbDataType": "DATETIME", - "dataLen": "", - "numScale": "", - "primaryKey": 0, - "notNull": 1, - "autoIncrement": 0, - "defaultValue": "", - "stndDictId": "", - "stndFieldId": "", - "stndDictKey": "", - "stndFieldKey": "", - "stndComplianceLevel": "", - "stndComplianceType": "", - "dictFrom": "", - "dictItems": [], - "fieldTier": "", - "mark": null, - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "attr10": "", - "attr11": "", - "attr12": "", - "attr13": "", - "attr14": "", - "attr15": "", - "attr16": "", - "attr17": "", - "attr18": "PDManer", - "attr19": "", - "attr20": "", - "origin": "PASTE" - }, - { - "id": "55186DB7-D3F2-443E-8378-5E74C2BF335B", - "defKey": "modify_time", - "defName": "修改时间", - "intro": "", - "baseDataType": "DATETIME", - "bizDomainType": "", - "dbDataType": "DATETIME", - "dataLen": "", - "numScale": "", - "primaryKey": 0, - "notNull": 1, - "autoIncrement": 0, - "defaultValue": "", - "stndDictId": "", - "stndFieldId": "", - "stndDictKey": "", - "stndFieldKey": "", - "stndComplianceLevel": "", - "stndComplianceType": "", - "dictFrom": "", - "dictItems": [], - "fieldTier": "", - "mark": null, - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "attr10": "", - "attr11": "", - "attr12": "", - "attr13": "", - "attr14": "", - "attr15": "", - "attr16": "", - "attr17": "", - "attr18": "PDManer", - "attr19": "", - "attr20": "", - "origin": "PASTE" - }, - { - "id": "55453AFC-60B5-46F1-9BCD-37DE0445D442", - "defKey": "deleted", - "defName": "是否删除", - "intro": " 0-->未删除、1-->已删除", - "baseDataType": "TINYINT", - "bizDomainType": "", - "dbDataType": "TINYINT", - "dataLen": 1, - "numScale": "", - "primaryKey": 0, - "notNull": 1, - "autoIncrement": 0, - "defaultValue": "0", - "stndDictId": "", - "stndFieldId": "", - "stndDictKey": "", - "stndFieldKey": "", - "stndComplianceLevel": "", - "stndComplianceType": "", - "dictFrom": "", - "dictItems": [], - "fieldTier": "", - "mark": null, - "attr1": "", - "attr2": "", - "attr3": "", - "attr4": "", - "attr5": "", - "attr6": "", - "attr7": "", - "attr8": "", - "attr9": "", - "attr10": "", - "attr11": "", - "attr12": "", - "attr13": "", - "attr14": "", - "attr15": "", - "attr16": "", - "attr17": "", - "attr18": "PDManer", - "attr19": "", - "attr20": "", - "origin": "PASTE" - } - ], - "indexes": [] - }, { "id": "3A0C2179-8576-40CB-8A4D-647318E432BC", "type": "P", @@ -43079,7 +43262,7 @@ "readonly": false, "allowWs": false }, - "updateTime": 1766024936008, - "signature": "9ada1d6a19aaacec204aacf6405d4882", + "updateTime": 1766138044775, + "signature": "85e73fbec29cde9576a187a502816a5b", "branchId": "1111" } \ No newline at end of file