tuqin
18 小时以前 55011a9cd84676913b62b3c130257939c1df2488
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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);
}