OrderCostDetailedOptLogController.java 1.01 KB
package com.order.erp.controller;

import com.order.erp.common.constant.ServerResult;
import com.order.erp.domain.vo.order.OrderCostDetailedOptedLogQueryVO;
import com.order.erp.service.order.OrderCostDetailedOptLogService;
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("/orderCostDetailedOptLog")
public class OrderCostDetailedOptLogController {
    @Autowired
    private OrderCostDetailedOptLogService orderCostDetailedOptLogService;
    @PostMapping("/listByPage")
    public ServerResult listByPage(@RequestBody OrderCostDetailedOptedLogQueryVO queryVO){
       return orderCostDetailedOptLogService.listByPage(queryVO);
    }
}