|
@@ -13,6 +13,7 @@ import com.diagbot.dto.UserAndProdutDTO;
|
|
|
import com.diagbot.dto.WaitExamOrderCouDTO;
|
|
|
import com.diagbot.entity.OpenedProducts;
|
|
|
import com.diagbot.entity.UserRenewals;
|
|
|
+import com.diagbot.entity.wrapper.OrderDetailsWapper;
|
|
|
import com.diagbot.facade.LantoneProductFacade;
|
|
|
import com.diagbot.facade.OpenedProductsFacade;
|
|
|
import com.diagbot.facade.OrderDetailsFacade;
|
|
@@ -169,7 +170,9 @@ public class ProductOrderController {
|
|
|
@SysLogger("getOrderByUserToAudit")
|
|
|
|
|
|
public RespDTO<Integer> getOrderByUserToAudit(@RequestBody Long userId){
|
|
|
- int sums = orderDetailsFacade.getOrderByUserToAudit(userId);
|
|
|
+ OrderDetailsWapper rderDetails =new OrderDetailsWapper();
|
|
|
+ rderDetails.setUserId(userId);
|
|
|
+ int sums = orderDetailsFacade.getOrderByUserToAudit(rderDetails);
|
|
|
return RespDTO.onSuc(sums);
|
|
|
}
|
|
|
@ApiOperation(value = "客户中心-查询用户续费数量[by:wangfeng]", notes = "用户已开通信息")
|