|
@@ -78,6 +78,7 @@ public class ChannelCustomerServiceImpl extends ServiceImpl<ChannelCustomerMappe
|
78
|
78
|
taRecommendCustomer.setEntryType(CommConstant.ENTRY_VERIFY);
|
79
|
79
|
taRecommendCustomer.setStatus(CommConstant.CUSTOMER_REPORT);
|
80
|
80
|
taRecommendCustomer.setRealtyConsultant(channelCustomerDTO.getRealtyConsultant());
|
|
81
|
+ taRecommendCustomer.setCirculationTime(LocalDateTime.now());
|
81
|
82
|
taRecommendCustomerMapper.insert(taRecommendCustomer);
|
82
|
83
|
return ResponseBean.success("审核成功");
|
83
|
84
|
}
|
|
@@ -131,6 +132,7 @@ public class ChannelCustomerServiceImpl extends ServiceImpl<ChannelCustomerMappe
|
131
|
132
|
taRecommendCustomer.setEntryType(CommConstant.ENTRY_VERIFY);
|
132
|
133
|
taRecommendCustomer.setStatus(CommConstant.CUSTOMER_VISITE);
|
133
|
134
|
taRecommendCustomer.setRealtyConsultant(params.getRealtyConsultant());
|
|
135
|
+ taRecommendCustomer.setCirculationTime(LocalDateTime.now());
|
134
|
136
|
taRecommendCustomerMapper.insert(taRecommendCustomer);
|
135
|
137
|
return ResponseBean.success("审核成功");
|
136
|
138
|
}
|
|
@@ -146,6 +148,7 @@ public class ChannelCustomerServiceImpl extends ServiceImpl<ChannelCustomerMappe
|
146
|
148
|
recommendCustomer.setVerifyStatus(CommConstant.VERIFY_AGREE);
|
147
|
149
|
recommendCustomer.setStatus(CommConstant.CUSTOMER_VISITE);
|
148
|
150
|
recommendCustomer.setRealtyConsultant(params.getRealtyConsultant());
|
|
151
|
+ recommendCustomer.setCirculationTime(LocalDateTime.now());
|
149
|
152
|
taRecommendCustomerMapper.updateById(recommendCustomer);
|
150
|
153
|
return ResponseBean.success("审核成功");
|
151
|
154
|
}
|
|
@@ -154,6 +157,7 @@ public class ChannelCustomerServiceImpl extends ServiceImpl<ChannelCustomerMappe
|
154
|
157
|
TaRecommendCustomer taRecommendCustomer = taRecommendCustomerMapper.selectById(params.getId());
|
155
|
158
|
taRecommendCustomer.setVerifyStatus(CommConstant.VERIFY_AGREE);
|
156
|
159
|
taRecommendCustomer.setStatus(CommConstant.CUSTOMER_VISITE);
|
|
160
|
+ taRecommendCustomer.setCirculationTime(LocalDateTime.now());
|
157
|
161
|
taRecommendCustomerMapper.updateById(taRecommendCustomer);
|
158
|
162
|
return ResponseBean.success("审核成功");
|
159
|
163
|
}
|