From 24ed7d322c43caa4412ecc76597cc6789ff89b3c Mon Sep 17 00:00:00 2001
From: jinpengyong <jpy123456>
Date: Tue, 10 Oct 2023 10:43:42 +0800
Subject: [PATCH] chore:处理尘负荷字符串转化异常

---
 screen-api/src/main/java/com/moral/api/service/AllocationService.java |   38 ++++++++++++++++++++++++++++++++++++++
 1 files changed, 38 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..cb74d7c 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
@@ -25,8 +25,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 +50,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 +91,10 @@
      */
     List<AllocationListExt> extList(AllocationListCond allocationListCond);
 
+    /**
+     * ������������
+     * @param allocationExtensionAddCond
+     * @return
+     */
     boolean applyFor (AllocationExtensionAddCond allocationExtensionAddCond);
 }

--
Gitblit v1.8.0