Commit fe73e2c5 authored by knight's avatar knight

客户集运服务设置

parent 4a5a8f2f
...@@ -537,7 +537,7 @@ public class CustomerDO extends BaseDO { ...@@ -537,7 +537,7 @@ public class CustomerDO extends BaseDO {
/** /**
* 是否开启集运服务 * 是否开启集运服务
*/ */
private Integer isConsService; private Boolean isConsService;
/** /**
* 集运服务运输方式偏好 * 集运服务运输方式偏好
......
...@@ -3721,7 +3721,7 @@ public class CustomerServiceImpl extends AbstractService<CustomerMapper, ...@@ -3721,7 +3721,7 @@ public class CustomerServiceImpl extends AbstractService<CustomerMapper,
BigDecimal weightUnit = customerSetupUpdateReqVO.getWeightUnit(); BigDecimal weightUnit = customerSetupUpdateReqVO.getWeightUnit();
// 修改集运服务配置 // 修改集运服务配置
Integer isConsService = customerSetupUpdateReqVO.getIsConsService(); Boolean isConsService = customerSetupUpdateReqVO.getIsConsService();
Integer preferenceTransportType = customerSetupUpdateReqVO.getPreferenceTransportType(); Integer preferenceTransportType = customerSetupUpdateReqVO.getPreferenceTransportType();
if (arrivalConfirm != null) { if (arrivalConfirm != null) {
......
...@@ -122,4 +122,15 @@ public class CustomerBaseVO { ...@@ -122,4 +122,15 @@ public class CustomerBaseVO {
private List<CustomerProductTypeGroupVO> products; private List<CustomerProductTypeGroupVO> products;
/**
* 泡货标准(kg)
*/
@ApiModelProperty(value = "是否开启集运服务")
private Boolean isConsService;
/**
* 泡货标准(kg)
*/
@ApiModelProperty(value = "集运服务运输方式偏好")
private Integer preferenceTransportType;
} }
...@@ -318,7 +318,7 @@ public class CustomerDetailRespVO extends CustomerBaseVO { ...@@ -318,7 +318,7 @@ public class CustomerDetailRespVO extends CustomerBaseVO {
//联系人信息 //联系人信息
private String contactstr; private String contactstr;
private Integer isConsService; private Boolean isConsService;
private Integer preferenceTransportType; private Integer preferenceTransportType;
......
...@@ -76,7 +76,7 @@ public class CustomerSetupUpdateReqVO { ...@@ -76,7 +76,7 @@ public class CustomerSetupUpdateReqVO {
* 泡货标准(kg) * 泡货标准(kg)
*/ */
@ApiModelProperty(value = "是否开启集运服务") @ApiModelProperty(value = "是否开启集运服务")
private Integer isConsService; private Boolean isConsService;
/** /**
* 泡货标准(kg) * 泡货标准(kg)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment