From 49d7ce5a988596d7540083be0e1948bcb66af544 Mon Sep 17 00:00:00 2001
From: jinpengyong <jpy123456>
Date: Mon, 30 Oct 2023 17:12:03 +0800
Subject: [PATCH] chore:补充提交

---
 screen-api/src/main/java/com/moral/api/service/AllocationService.java |   75 +++++++++++++++++++++++++++++++++++++
 1 files changed, 75 insertions(+), 0 deletions(-)

diff --git a/screen-api/src/main/java/com/moral/api/service/AllocationService.java b/screen-api/src/main/java/com/moral/api/service/AllocationService.java
index 51278e3..f98f7e4 100644
--- a/screen-api/src/main/java/com/moral/api/service/AllocationService.java
+++ b/screen-api/src/main/java/com/moral/api/service/AllocationService.java
@@ -14,6 +14,11 @@
 import com.moral.api.pojo.query.allocation.*;
 import com.moral.api.pojo.dto.allocation.AllocationUnitDto;
 import com.moral.api.pojo.query.allocationextension.AllocationExtensionAddCond;
+import com.moral.api.pojo.query.app.AppAllocationFileCond;
+import com.moral.api.pojo.query.app.AppAllocationPageCond;
+import com.moral.api.pojo.vo.allocation.AllocationFindVo;
+import com.moral.api.pojo.vo.allocation.AllocationPageVo;
+import com.moral.api.pojo.vo.app.AppAllocationFindVo;
 
 public interface AllocationService extends IService<Allocation> {
 
@@ -25,8 +30,17 @@
 
     void updateAll(AllocationUpdateCond allocationUpdateCond);
 
+    /**
+     *  ������������������ 0������ ������������������
+     * @return
+     */
     List<Integer> unitResult();
 
+    /**
+     * ������������ ������������������������ 1������������������2���������������0������������
+     * ������������������������������
+     * @return
+     */
     Integer unitAreaCode();
 
     Map<String, Object> selectUnitView(Map<String,Object> map);
@@ -41,14 +55,38 @@
      */
     AllocationExt extOne(Integer id);
 
+    /**
+     * ������������
+     * @param id
+     * @return
+     */
      AllocationExt oneAllocation(Integer id);
 
+    /**
+     * ������
+     * @param changeCond
+     */
     void changeAllocation(AllocationChangeCond changeCond);
 
+    /**
+     * ������
+     * @param checkCond
+     */
     void checkAllocation(AllocationCheckCond checkCond);
 
+    /**
+     * ������
+     * @param id
+     * @return
+     */
     boolean removeById(Integer id);
 
+    /**
+     * ������
+     * @param id
+     * @param invalidReason
+     * @return
+     */
     boolean invalidResult (Integer id,String invalidReason);
 
     /**
@@ -58,5 +96,42 @@
      */
     List<AllocationListExt> extList(AllocationListCond allocationListCond);
 
+    /**
+     * ������������
+     * @param allocationExtensionAddCond
+     * @return
+     */
     boolean applyFor (AllocationExtensionAddCond allocationExtensionAddCond);
+
+    /**
+     * ���������������
+     * @param state
+     * @return
+     */
+    List<AllocationFindVo> selectSmallRoutine(Integer state,String startTime,String endTime);
+
+    /**
+     * ���������������
+     * @param allocationPageCond
+     * @return
+     */
+    Page<AllocationPageExt> pageApp(AppAllocationPageCond allocationPageCond);
+
+    boolean saveFile(AppAllocationFileCond appAllocationFileCond);
+
+    /**
+     * ���������������
+     * @param changeCond
+     */
+    void changeSmallRoutine(AllocationChangeCond changeCond);
+
+
+
+    /**
+     * ���������������
+     * @param checkCond
+     */
+    void checkSmallRoutine(AllocationCheckCond checkCond);
+
+
 }

--
Gitblit v1.8.0