SPC/ym-process-inspection/src/main/java/com/cnbm/processInspection/service/IInspectionSheetService.java

31 lines
744 B
Java
Raw Normal View History

2022-08-23 15:02:24 +08:00
package com.cnbm.processInspection.service;
import com.cnbm.common.page.PageData;
import com.cnbm.common.service.CrudService;
import com.cnbm.processInspection.dto.InspectionSheetDTO;
import com.cnbm.processInspection.entity.InspectionSheet;
import java.util.List;
import java.util.Map;
/**
* 检验单
*
* @author why
* @since 2022-08-17
*/
public interface IInspectionSheetService extends CrudService<InspectionSheet, InspectionSheetDTO> {
PageData<InspectionSheetDTO> page (Map<String, Object> params);
InspectionSheetDTO get(Long id);
void save(InspectionSheetDTO dto);
void update(InspectionSheetDTO dto);
void delete(Long[] ids);
List<InspectionSheetDTO> list(Map<String, Object> params);
}