ProjectBaseDevelopOptLogController.java 1.02 KB
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);
    }

}