package com.ruoyi.production.mapper;
|
|
import com.ruoyi.production.bean.dto.ProductionCostingQueryDto;
|
import com.ruoyi.production.bean.vo.ProductionCostingRawVo;
|
import org.apache.ibatis.annotations.Mapper;
|
import org.apache.ibatis.annotations.Param;
|
|
import java.util.List;
|
|
/**
|
* 生产核算-核算统计 Mapper
|
*/
|
@Mapper
|
public interface ProductionCostingMapper {
|
|
/**
|
* 查询某条件下的报工聚合原始行(员工+月份+工序+型号/产品大类)
|
*/
|
List<ProductionCostingRawVo> selectCostingRows(@Param("c") ProductionCostingQueryDto dto);
|
}
|