ljx 4 lat temu
rodzic
commit
13b01f8478

+ 24 - 0
src/main/java/com/imed/costaccount/model/GetCheckData.java

@@ -45,26 +45,50 @@ public class GetCheckData {
         this.hospId = hospId;
     }
 
+    /**
+     * 根据科室Code+Name获取指定科室
+     * @return
+     */
     public Map<String, Department> getDepartmentMap() {
         return departmentMap;
     }
 
+    /**
+     * 根据Product的Code+name 获取product
+     * @return
+     */
     public Map<String, Product> getProductMap() {
         return productMap;
     }
 
+    /**
+     * 根据id获取责任中心
+     * @return
+     */
     public Map<Long, Responsibility> getResponsibilityMap() {
         return responsibilityMap;
     }
 
+    /**
+     * 根据id后去会计科目
+     * @return
+     */
     public Map<Long, Accounting> getAccountingMap() {
         return accountingMap;
     }
 
+    /**
+     * 根据科室的id获取责任中心的Id
+     * @return
+     */
     public Map<Long, Long> getResponsibilityDepMap() {
         return responsibilityDepMap;
     }
 
+    /**
+     * 根据成本项目id获取会计科目Id
+     * @return
+     */
     public Map<Long, Long> getAccountProMap() {
         return accountProMap;
     }