opt:优化更新仓库管理相关代码
This commit is contained in:
@@ -44,16 +44,6 @@ public class Storattr implements Serializable {
|
||||
*/
|
||||
private String simple_name;
|
||||
|
||||
/**
|
||||
* 容量
|
||||
*/
|
||||
private BigDecimal stor_capacity;
|
||||
|
||||
/**
|
||||
* 总面积(㎡)
|
||||
*/
|
||||
private BigDecimal total_area;
|
||||
|
||||
/**
|
||||
* 仓库性质
|
||||
*/
|
||||
@@ -67,38 +57,20 @@ public class Storattr implements Serializable {
|
||||
|
||||
private String is_productstore;
|
||||
|
||||
private String is_attachment;
|
||||
|
||||
private String is_reversed;
|
||||
|
||||
private String is_mvout_auto_cfm;
|
||||
|
||||
private String is_mvin_auto_cfm;
|
||||
|
||||
private String area;
|
||||
|
||||
/**
|
||||
* 地址
|
||||
*/
|
||||
private String storea_ddress;
|
||||
|
||||
/**
|
||||
* 负责人
|
||||
*/
|
||||
private String principal;
|
||||
|
||||
/**
|
||||
* 联系电话
|
||||
*/
|
||||
private String office_phone;
|
||||
|
||||
private String mobile_no;
|
||||
|
||||
/**
|
||||
* 备注
|
||||
*/
|
||||
private String remark;
|
||||
|
||||
private BigDecimal order_index;
|
||||
|
||||
private String whstate_scode;
|
||||
|
||||
/**
|
||||
@@ -106,8 +78,6 @@ public class Storattr implements Serializable {
|
||||
*/
|
||||
private String is_used;
|
||||
|
||||
private String base_class_id;
|
||||
|
||||
private String create_id;
|
||||
|
||||
private String create_name;
|
||||
@@ -131,8 +101,4 @@ public class Storattr implements Serializable {
|
||||
private String ext_id;
|
||||
|
||||
private String depart_name;
|
||||
|
||||
private String company_name;
|
||||
|
||||
private String is_attachment;
|
||||
}
|
||||
|
||||
@@ -3,10 +3,8 @@
|
||||
<mapper namespace="org.nl.wms.basedata.master.storattr.service.dao.mapper.StorattrMapper">
|
||||
|
||||
<select id="queryAll" resultType="org.nl.wms.basedata.master.storattr.service.dao.Storattr">
|
||||
SELECT stor.*,
|
||||
detail.label
|
||||
SELECT stor.*
|
||||
FROM st_ivt_bsrealstorattr stor
|
||||
LEFT JOIN sys_dict detail ON detail.value = stor.stor_type_scode AND detail.code = 'st_stor_type'
|
||||
<where>
|
||||
stor.is_delete = '0'
|
||||
<if test="search != null">
|
||||
@@ -19,7 +17,6 @@
|
||||
<select id="queryAllTotal" resultType="java.lang.Integer">
|
||||
SELECT COUNT(*)
|
||||
FROM st_ivt_bsrealstorattr stor
|
||||
LEFT JOIN sys_dict detail ON detail.value = stor.stor_type_scode AND detail.code = 'st_stor_type'
|
||||
<where>
|
||||
stor.is_delete = '0'
|
||||
<if test="map.search != null">
|
||||
|
||||
Reference in New Issue
Block a user