puzhibing
2023-06-13 7860e5cb6db60aeb82c640651998f8294635df5b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
package com.dsh.course.controller;
 
import com.dsh.course.entity.PushOrder;
import com.dsh.course.model.vo.PushOrderListReq;
import com.dsh.course.model.vo.PushOrderListRes;
import com.dsh.course.model.vo.PushOrderListWapper;
import com.dsh.course.service.IPushOrderService;
import org.springframework.beans.BeanUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
 
import java.util.ArrayList;
import java.util.List;
 
@RestController
@RequestMapping("/pushOrder")
public class PushOrderController {
 
    @Autowired
    private IPushOrderService pushOrderService;
 
 
    /**
     * 获取企业推单规则
     * @param req
     * @return
     */
    @PostMapping("/queryPushOrderList")
    public PushOrderListWapper queryPushOrderList(PushOrderListReq req){
        try {
            List<PushOrder> querys = pushOrderService.querys(req.getType(), req.getPushType(), req.getCompanyId());
            List<PushOrderListRes> listRes = new ArrayList<>();
            for (PushOrder query : querys) {
                PushOrderListRes res = new PushOrderListRes();
                BeanUtils.copyProperties(query, res);
                listRes.add(res);
            }
            PushOrderListWapper listWapper = new PushOrderListWapper();
            listWapper.setListRes(listRes);
            return listWapper;
        }catch (Exception e){
            e.printStackTrace();
            return null;
        }
    }
}