fix: produceshiftorderdetail
This commit is contained in:
@@ -35,19 +35,46 @@ public interface ProduceshiftorderdetailService extends CommonService<Produceshi
|
|||||||
*/
|
*/
|
||||||
List<ProduceshiftorderdetailDto> queryAll(ProduceshiftorderdetailQueryParam query);
|
List<ProduceshiftorderdetailDto> queryAll(ProduceshiftorderdetailQueryParam query);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 根据id查询
|
||||||
|
* @param id
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
Produceshiftorderdetail getById(String id);
|
Produceshiftorderdetail getById(String id);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 根据id查询
|
||||||
|
* @param id
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
ProduceshiftorderdetailDto findById(String id);
|
ProduceshiftorderdetailDto findById(String id);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 插入一条新数据。
|
* 插入一条新数据。
|
||||||
|
* @param resources
|
||||||
|
* @return
|
||||||
*/
|
*/
|
||||||
int insert(ProduceshiftorderdetailDto resources);
|
int insert(ProduceshiftorderdetailDto resources);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 根据id修改
|
||||||
|
* @param resources
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
int updateById(ProduceshiftorderdetailDto resources);
|
int updateById(ProduceshiftorderdetailDto 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);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -29,7 +29,6 @@ import java.util.*;
|
|||||||
@Transactional(propagation = Propagation.SUPPORTS, readOnly = true, rollbackFor = Exception.class)
|
@Transactional(propagation = Propagation.SUPPORTS, readOnly = true, rollbackFor = Exception.class)
|
||||||
public class ProduceshiftorderdetailServiceImpl extends CommonServiceImpl<ProduceshiftorderdetailMapper, Produceshiftorderdetail> implements ProduceshiftorderdetailService {
|
public class ProduceshiftorderdetailServiceImpl extends CommonServiceImpl<ProduceshiftorderdetailMapper, Produceshiftorderdetail> implements ProduceshiftorderdetailService {
|
||||||
|
|
||||||
// private final RedisUtils redisUtils;
|
|
||||||
private final ProduceshiftorderdetailMapper produceshiftorderdetailMapper;
|
private final ProduceshiftorderdetailMapper produceshiftorderdetailMapper;
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|||||||
Reference in New Issue
Block a user