tuqin
3 天以前 2c4bc1808f272b7d7282d1b8ba416d606ebc7df5
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);
}