加货主是否支持多仓;

This commit is contained in:
王奎兴
2026-06-24 09:48:08 +08:00
parent 84174a6639
commit 89c3f398b8
5 changed files with 18 additions and 1 deletions
@@ -70,4 +70,8 @@ public class SysTableConfig extends BaseVOEntity {
@ApiModelProperty(value = "配送明细")
@Excel(name = "配送明细", width = 15)
private String deliveryDetail;
/**是否多仓库*/
@ApiModelProperty(value = "是否多仓库")
@Excel(name = "是否多仓库", width = 15)
private String isMultiWarehouse;
}
@@ -68,4 +68,8 @@ public class SysTableConfigPO extends BaseVOEntity {
@ApiModelProperty(value = "配送明细")
@Excel(name = "配送明细", width = 15)
private String deliveryDetail;
/**是否多仓库*/
@ApiModelProperty(value = "是否多仓库")
@Excel(name = "是否多仓库", width = 15)
private String isMultiWarehouse;
}
@@ -69,4 +69,8 @@ public class SysTableConfigDTO extends BaseVOEntity {
@ApiModelProperty(value = "组织名称")
@Excel(name = "组织名称", width = 15)
private String organizationName;
/**是否多仓库*/
@ApiModelProperty(value = "是否多仓库")
@Excel(name = "是否多仓库", width = 15)
private String isMultiWarehouse;
}
@@ -69,4 +69,8 @@ public class SysTableConfigVO extends BaseVOEntity {
@ApiModelProperty(value = "配送明细")
@Excel(name = "配送明细", width = 15)
private String deliveryDetail;
/**是否多仓库*/
@ApiModelProperty(value = "是否多仓库")
@Excel(name = "是否多仓库", width = 15)
private String isMultiWarehouse;
}
@@ -55,7 +55,8 @@
a.organization_id AS organizationId,
a.key AS key,
a.value AS value,
a.remark AS remark
a.remark AS remark,
a.IS_MULTI_WAREHOUSE AS isMultiWarehouse
FROM sys_table_config a
WHERE 1=1
<include refid="common_where"></include>