李林
2023-10-07 658d4927d468c47208fd012d9128b09249c07eff
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package com.chinaztt.mes.production.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.chinaztt.mes.production.dto.ProductOutItemsDTO;
import com.chinaztt.mes.production.entity.ProductOutItems;
import org.apache.ibatis.annotations.Mapper;
 
import java.util.List;
 
/**
 * 报工产出模板-产出汇报项表
 *
 * @author cxf
 * @date 2020-11-03 13:22:04
 */
@Mapper
public interface ProductOutItemsMapper extends BaseMapper<ProductOutItems> {
 
    /**
     * 根据模板id查询报工项
     *
     * @param templateId
     * @return
     */
    List<ProductOutItemsDTO> getByTemplateId(Long templateId);
}