fix: produceshiftorder
This commit is contained in:
@@ -35,19 +35,46 @@ public interface ProduceshiftorderService extends CommonService<Produceshiftorde
|
|||||||
*/
|
*/
|
||||||
List<ProduceshiftorderDto> queryAll(ProduceshiftorderQueryParam query);
|
List<ProduceshiftorderDto> queryAll(ProduceshiftorderQueryParam query);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 根据id查询
|
||||||
|
* @param id
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
Produceshiftorder getById(String id);
|
Produceshiftorder getById(String id);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 根据id查询
|
||||||
|
* @param id
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
ProduceshiftorderDto findById(String id);
|
ProduceshiftorderDto findById(String id);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 插入一条新数据。
|
* 插入一条新数据。
|
||||||
|
* @param resources
|
||||||
|
* @return
|
||||||
*/
|
*/
|
||||||
int insert(ProduceshiftorderDto resources);
|
int insert(ProduceshiftorderDto resources);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 根据id修改
|
||||||
|
* @param resources
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
int updateById(ProduceshiftorderDto resources);
|
int updateById(ProduceshiftorderDto resources);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 根据id删除
|
||||||
|
* @param id
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
int removeById(String id);
|
int removeById(String id);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 根据id批量删除
|
||||||
|
* @param ids
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
int removeByIds(Set<String> ids);
|
int removeByIds(Set<String> ids);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
Reference in New Issue
Block a user