tuqin
17 小时以前 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.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.ruoyi.production.pojo.ProductionCostingStandard;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
/**
 * 生产核算-标准数量配置 Mapper
 */
@Mapper
public interface ProductionCostingStandardMapper extends BaseMapper<ProductionCostingStandard> {
 
    /**
     * 查询标准数量配置列表(含工序名称、型号名称)
     */
    List<ProductionCostingStandard> selectStandardList(@Param("c") ProductionCostingStandard query);
}