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