OMS-GW推送-商业合作伙伴
This commit is contained in:
+4
-2
@@ -1221,11 +1221,13 @@ public class UserShipperApplicationService {
|
||||
* @param pushBy
|
||||
* @return
|
||||
*/
|
||||
public int updatePushStatus(Long shipperId, Integer pushStatus, Date pushTime, Long pushBy) {
|
||||
public int updatePushStatus(Long shipperId, Integer pushStatus, String pushTime, Long pushBy) {
|
||||
UserShipperEntity userShipper = new UserShipperEntity();
|
||||
userShipper.setShipperId(shipperId);
|
||||
userShipper.setPushStatus(pushStatus);
|
||||
userShipper.setPushTime(pushTime);
|
||||
if (pushTime != null && !"".equals(pushTime)) {
|
||||
userShipper.setPushTime(DateUtil.parse(pushTime));
|
||||
}
|
||||
userShipper.setPushBy(pushBy);
|
||||
return userShipperMapper.updatePushStatus(userShipper);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user