提交 a35799a4 作者: zhangqiliang

仓库管理的查询的优化

父级 ac22758b
...@@ -37,11 +37,11 @@ public class Warehouse extends CoreEntity { ...@@ -37,11 +37,11 @@ public class Warehouse extends CoreEntity {
private Integer isEnabled; private Integer isEnabled;
private Integer superiorWarehouseId; private String superiorWarehouseId;
private String receivePeople; private String receivePeople;
private Integer receivePhone; private String receivePhone;
private String receiveAddress; private String receiveAddress;
...@@ -157,11 +157,11 @@ public class Warehouse extends CoreEntity { ...@@ -157,11 +157,11 @@ public class Warehouse extends CoreEntity {
this.isEnabled = isEnabled; this.isEnabled = isEnabled;
} }
public Integer getSuperiorWarehouseId() { public String getSuperiorWarehouseId() {
return superiorWarehouseId; return superiorWarehouseId;
} }
public void setSuperiorWarehouseId(Integer superiorWarehouseId) { public void setSuperiorWarehouseId(String superiorWarehouseId) {
this.superiorWarehouseId = superiorWarehouseId; this.superiorWarehouseId = superiorWarehouseId;
} }
...@@ -173,11 +173,11 @@ public class Warehouse extends CoreEntity { ...@@ -173,11 +173,11 @@ public class Warehouse extends CoreEntity {
this.receivePeople = receivePeople; this.receivePeople = receivePeople;
} }
public Integer getReceivePhone() { public String getReceivePhone() {
return receivePhone; return receivePhone;
} }
public void setReceivePhone(Integer receivePhone) { public void setReceivePhone(String receivePhone) {
this.receivePhone = receivePhone; this.receivePhone = receivePhone;
} }
......
...@@ -70,11 +70,11 @@ public class WarehouseDTO implements Serializable { ...@@ -70,11 +70,11 @@ public class WarehouseDTO implements Serializable {
@ApiModelProperty(value = "全路径名称") @ApiModelProperty(value = "全路径名称")
private String pathName; private String pathName;
@ApiModelProperty(value = "上级仓库ID") @ApiModelProperty(value = "上级仓库ID")
private Integer superiorWarehouseId; private String superiorWarehouseId;
@ApiModelProperty(value = "收件人") @ApiModelProperty(value = "收件人")
private String receivePeople; private String receivePeople;
@ApiModelProperty(value = "收件电话") @ApiModelProperty(value = "收件电话")
private Integer receivePhone; private String receivePhone;
@ApiModelProperty(value = "收件地址") @ApiModelProperty(value = "收件地址")
private String receiveAddress; private String receiveAddress;
} }
...@@ -50,7 +50,7 @@ public class WarehouseSaveQuery { ...@@ -50,7 +50,7 @@ public class WarehouseSaveQuery {
@ApiModelProperty(value = "收件人") @ApiModelProperty(value = "收件人")
private String receivePeople; private String receivePeople;
@ApiModelProperty(value = "收件电话") @ApiModelProperty(value = "收件电话")
private Integer receivePhone; private String receivePhone;
@ApiModelProperty(value = "收件地址") @ApiModelProperty(value = "收件地址")
private String receiveAddress; private String receiveAddress;
...@@ -151,11 +151,11 @@ public class WarehouseSaveQuery { ...@@ -151,11 +151,11 @@ public class WarehouseSaveQuery {
this.receivePeople = receivePeople; this.receivePeople = receivePeople;
} }
public Integer getReceivePhone() { public String getReceivePhone() {
return receivePhone; return receivePhone;
} }
public void setReceivePhone(Integer receivePhone) { public void setReceivePhone(String receivePhone) {
this.receivePhone = receivePhone; this.receivePhone = receivePhone;
} }
......
server: server:
port: 30350 port: 30360
spring: spring:
application: application:
......
server: server:
port: 30350 port: 30360
spring: spring:
application: application:
......
...@@ -81,6 +81,10 @@ ...@@ -81,6 +81,10 @@
tw.create_account, tw.create_account,
tw.modify_account, tw.modify_account,
tw.modify_time, tw.modify_time,
tw.superior_warehouse_id,
tw.receive_people,
tw.receive_phone,
tw.receive_address,
twl.parent_id parentId, twl.parent_id parentId,
twl.path_code pathCode, twl.path_code pathCode,
twl.path_name pathName twl.path_name pathName
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论