Blame view

src/main/java/com/order/erp/controller/ProjectBaseDevelopOptLogController.java 1.02 KB
chenhang4442024 authored
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
package com.order.erp.controller;

import com.order.erp.common.constant.ServerResult;
import com.order.erp.domain.vo.order.ProjectOptLogQueryVO;

import com.order.erp.service.order.ProjectBaseDevelopOptLogService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

/**
 * 净利润分析板块(业务研发净利润/内部生产净利润)--用户操作日志记录
 * */
@RestController
@RequestMapping("/projectOptLog")
public class ProjectBaseDevelopOptLogController {
    @Autowired
    private ProjectBaseDevelopOptLogService projectBaseDevelopOptLogService;
    /**
    * 分页查询
     * */
    @PostMapping("/listByPage")
    public ServerResult listByPage(@RequestBody ProjectOptLogQueryVO queryVO){
        return projectBaseDevelopOptLogService.listByPage(queryVO);
    }

}