质量规划

This commit is contained in:
2022-08-23 15:02:24 +08:00
parent 848eb60f43
commit 96f9808e02
39 changed files with 2004 additions and 1 deletions

View File

@@ -0,0 +1,20 @@
package com.cnbm.processInspection.mapper;
import com.cnbm.common.dao.BaseDao;
import com.cnbm.processInspection.dto.InspectionSheetDTO;
import com.cnbm.processInspection.entity.InspectionSheet;
import org.apache.ibatis.annotations.Mapper;
import java.util.List;
import java.util.Map;
/**
* 检验单 表
*
* @author why
* @since 2022-08-17
*/
@Mapper
public interface InspectionSheetMapper extends BaseDao<InspectionSheet> {
List<InspectionSheetDTO> list(Map<String, Object> params);
}