feat(可回溯): 重构

优化代码
This commit is contained in:
BrandWang
2023-05-08 16:20:39 +08:00
parent bc0e40193c
commit d1a4b55f5d
7 changed files with 11 additions and 33 deletions
@@ -1,6 +1,5 @@
package com.wabestway.recall.trace.dto;
import com.wabestway.commons.http.PageDTO;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
@@ -24,13 +24,6 @@ public interface RecallOrderService extends IService<RecallOrderEntity> {
*/
IPage<RecallOrderVO> queryRecallOrderByCondition(long page, long size, RecallOrderDTO recallOrderDTO);
/**
* 条件查询,不分页
* @param recallOrderDTO
* @return
*/
List<RecallOrderVO> queryRecallOrderListNoPage(RecallOrderDTO recallOrderDTO);
/**
* 根据id更新
* @param recallOrder 对象
@@ -31,9 +31,6 @@ public class RecallOrderServiceImpl extends ServiceImpl<RecallOrderDao, RecallOr
return iPage;
}
public List<RecallOrderVO> queryRecallOrderListNoPage(RecallOrderDTO recallOrderDTO) {
return baseMapper.queryRecallOrderListNoPage(recallOrderDTO);
}
@Override
public void updateRecallOrderById(RecallOrderEntity recallOrder) {