package com.chinaztt.mes.production.service;
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
import com.chinaztt.mes.production.dto.HandymanTableDTO;
|
import com.chinaztt.mes.production.entity.HandymanTable;
|
|
/**
|
* 杂工登记
|
*
|
* @author cxf
|
* @date 2020-11-04 15:37:05
|
*/
|
public interface HandymanTableService extends IService<HandymanTable> {
|
|
/**
|
* 新增杂工登记
|
*
|
* @param handymanTableDTO
|
* @return
|
*/
|
boolean saveDto(HandymanTableDTO handymanTableDTO);
|
|
/**
|
* 删除杂工登记
|
*
|
* @param id
|
* @return
|
*/
|
boolean deleteById(Long id);
|
|
/**
|
* 通过id查询
|
*
|
* @param id
|
* @return
|
*/
|
HandymanTableDTO getDtoById(Long id);
|
|
/**
|
* 修改杂工登记
|
*
|
* @param handymanTableDTO
|
* @return
|
*/
|
boolean updateDtoById(HandymanTableDTO handymanTableDTO);
|
}
|