소스 검색

Merge branch 'develop' of http://132.232.92.186:3000/XinXiBu/OA2023 into develop

leiy 1 년 전
부모
커밋
fdda9e0ce5
2개의 변경된 파일891개의 추가작업 그리고 150개의 파일을 삭제
  1. 883 150
      OASystem/OASystem.Api/Controllers/GroupsController.cs
  2. 8 0
      OASystem/OASystem.Domain/Dtos/Groups/GroupCostSavaDto.cs

파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 883 - 150
OASystem/OASystem.Api/Controllers/GroupsController.cs


+ 8 - 0
OASystem/OASystem.Domain/Dtos/Groups/GroupCostSavaDto.cs

@@ -797,12 +797,15 @@ namespace OASystem.Domain.Dtos.Groups
     public class GroupCostExportExcelFile
     {
         public int Diid { get; set; }
+        public string costType { get; set; }
 
         public titleChunk title { get; set; }
 
         public List<LeftModel> leftInfo { get; set; }
 
         public List<RightModel> rightInfo { get; set; }
+
+        public List<TitleModel> titleModel { get; set; }
     }
 
     public class LeftModel
@@ -818,6 +821,11 @@ namespace OASystem.Domain.Dtos.Groups
 
         public List<RightInfoModel> rightInfoNumber { get; set; }
     }
+    public class TitleModel
+    {
+        public string label { get; set; }
+        public string text { get; set; }
+    }
 
     public class RightInfoModel
     {