|
@@ -1,10 +1,12 @@
|
|
|
package cn.ezhizao.project.business.order.mapper;
|
|
|
|
|
|
+import java.util.Date;
|
|
|
import java.util.List;
|
|
|
|
|
|
import cn.ezhizao.project.business.order.domain.BizArchiveInput;
|
|
|
import cn.ezhizao.project.business.order.domain.vo.InputVo;
|
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
|
+import org.apache.ibatis.annotations.Param;
|
|
|
|
|
|
/**
|
|
|
* 档案入库Mapper接口
|
|
@@ -32,4 +34,6 @@ public interface BizArchiveInputMapper extends BaseMapper<BizArchiveInput>
|
|
|
int removeByIds(List<Long> ids);
|
|
|
|
|
|
List<BizArchiveInput> getListByInput(InputVo bizArchiveInput);
|
|
|
+
|
|
|
+ int deleteByDate(@Param("workOrderId")Long workOrderId, @Param("endDate")Date endDate, @Param("taskTypeId")Long taskTypeId);
|
|
|
}
|