商业合作伙伴推送人姓名字段添加
This commit is contained in:
+2
-1
@@ -1221,7 +1221,7 @@ public class UserShipperApplicationService {
|
||||
* @param pushBy
|
||||
* @return
|
||||
*/
|
||||
public int updatePushStatus(Long shipperId, Integer pushStatus, String pushTime, Long pushBy) {
|
||||
public int updatePushStatus(Long shipperId, Integer pushStatus, String pushTime, Long pushBy,String pushByName) {
|
||||
UserShipperEntity userShipper = new UserShipperEntity();
|
||||
userShipper.setShipperId(shipperId);
|
||||
userShipper.setPushStatus(pushStatus);
|
||||
@@ -1229,6 +1229,7 @@ public class UserShipperApplicationService {
|
||||
userShipper.setPushTime(DateUtil.parse(pushTime));
|
||||
}
|
||||
userShipper.setPushBy(pushBy);
|
||||
userShipper.setPushByName(pushByName);
|
||||
return userShipperMapper.updatePushStatus(userShipper);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user