Browse Source

添加 TwoItemRemark 属性以增强数据处理

在 `GroupsController.cs` 中添加了 `TwoItemRemark` 属性的赋值和使用,确保在处理数据时包含该属性。
在 `EnterExitCostDraftDto.cs` 和 `EnterExitCostDto.cs` 中新增了 `TwoItemRemark` 字符串属性,以便在数据传输对象中包含该信息。
在 `Grp_EnterExitCostDraft.cs` 中添加了 `TwoItemRemark` 属性,并指定其为可空的字符串类型,确保数据库模型中包含该字段。
在 `EnterExitCostDraftView.cs` 和 `EnterExitCostView.cs` 中同样添加了 `TwoItemRemark` 属性,以便在视图模型中使用。
所有更改均涉及到 `CityTranffic` 和 `TwoItemRemark` 属性的添加,确保在不同层次的数据结构中都能访问到这些信息。
LEIYI 1 week ago
parent
commit
b0c82374ef

+ 5 - 2
OASystem/OASystem.Api/Controllers/GroupsController.cs

@@ -9215,7 +9215,8 @@ FROM
                     AirJJ = eecInfo.AirJJ,
                     AirGW = eecInfo.AirGW,
                     AirTD = eecInfo.AirTD,
-                    CityTranffic = eecInfo.CityTranffic
+                    CityTranffic = eecInfo.CityTranffic,
+                    TwoItemRemark = eecInfo.TwoItemRemark
                 };
                 return Ok(JsonView(twoData));
             }
@@ -9724,6 +9725,7 @@ FROM
             info.AirGW = dto.AirGW;
             info.AirTD = dto.AirTD;
             info.CityTranffic = dto.CityTranffic;
+            info.TwoItemRemark = dto.TwoItemRemark;
             info.SumJJC = dto.ChoiceTwoJJ;
             info.SumGWC = dto.ChoiceTwoGW;
             info.SumTDC = dto.ChoiceTwoTD;
@@ -9752,7 +9754,8 @@ FROM
                         x.AirJJ,
                         x.AirGW,
                         x.AirTD,
-                        x.CityTranffic
+                        x.CityTranffic,
+                        x.TwoItemRemark
                     })
                     .Where(x => x.Id == id)
                     .ExecuteCommandAsync();

+ 2 - 0
OASystem/OASystem.Domain/Dtos/Groups/EnterExitCostDraftDto.cs

@@ -153,6 +153,8 @@ namespace OASystem.Domain.Dtos.Groups
         /// </summary>
         public decimal CityTranffic { get; set; }
 
+        public string TwoItemRemark { get; set; }
+
         /// <summary>
         ///  多个币种存储
         ///  存储方式: 美元(USD):6.2350|.......|墨西哥比索(MXN):1.0000

+ 1 - 0
OASystem/OASystem.Domain/Dtos/Groups/EnterExitCostDto.cs

@@ -664,6 +664,7 @@ namespace OASystem.Domain.Dtos.Groups
         ///  国外城市间交通费
         /// </summary>
         public decimal CityTranffic { get; set; }
+        public string TwoItemRemark { get; set; }
     }
 
     public class PostEnterExitCostMobileOpStep3To6Dto

+ 2 - 1
OASystem/OASystem.Domain/Entities/Groups/Grp_EnterExitCostDraft.cs

@@ -121,7 +121,8 @@ namespace OASystem.Domain.Entities.Groups
         [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
         public decimal CityTranffic { get; set; }
 
-
+        [SugarColumn(IsNullable = true, ColumnDataType = "varchar(500)")]
+        public string TwoItemRemark { get; set; }
         #region 汇率币种
 
         /// <summary>

+ 2 - 0
OASystem/OASystem.Domain/ViewModels/Groups/EnterExitCostDraftView.cs

@@ -111,6 +111,8 @@ namespace OASystem.Domain.ViewModels.Groups
         /// </summary>
         public decimal CityTranffic { get; set; }
 
+        public string TwoItemRemark { get; set; }
+
         #region 汇率币种
 
         /// <summary>

+ 2 - 0
OASystem/OASystem.Domain/ViewModels/Groups/EnterExitCostView.cs

@@ -725,6 +725,8 @@ namespace OASystem.Domain.ViewModels.Groups
         ///  国外城市间交通费
         /// </summary>
         public decimal CityTranffic { get; set; }
+
+        public string TwoItemRemark { get; set; }
     }
 
     public class ChoiceTwoMobileSubInfoView : ChoiceTwoMobileInfoView