|
@@ -170,7 +170,7 @@ public class OrderServiceImpl implements OrderService {
|
|
|
Integer organizeID) {
|
|
|
WxJsonModel model = WxJsonModel.newInstance();
|
|
|
CmOperationUser operationUser = loginMapper.doLogin(openid, organizeID);
|
|
|
- if (operationUser != null && operationUser.getUserID() == userID) {
|
|
|
+ if (operationUser != null && operationUser.getUserID().equals(userID)) {
|
|
|
return model.success(true);
|
|
|
}
|
|
|
CmMallShareCodeRecord shareCodeRecord = orderMapper.findShareCodeRecord(openid, orderID);
|