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.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);
}