Procházet zdrojové kódy

添加成本导出Api

yuanrf před 1 rokem
rodič
revize
a317009274

Rozdílová data souboru nebyla zobrazena, protože soubor je příliš velký
+ 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
     {