qinchaoyue 2 maanden geleden
bovenliggende
commit
59b480dd8e

+ 1 - 0
src/Hotline.Application/Snapshot/RedPackApplication.cs

@@ -383,6 +383,7 @@ public class RedPackApplication : IRedPackApplication, IScopeDependency
                 AuditRemark = redPackAudit.AuditRemark,
                 BankCardNo = record.BankCardNo,
                 OpenBank = record.OpenBank,
+                AwardName = record.Name,
                 AuditStatus = redPackAudit.Status,
             });
         return query;

+ 5 - 0
src/Hotline.Share/Dtos/Snapshot/OrderDto.cs

@@ -458,6 +458,11 @@ public class SnapshotOrderAuditItemsOutDto
     /// 红包审核状态
     /// </summary>
     public string AuditStatusTxt => AuditStatus.GetDescription();
+
+    /// <summary>
+    /// 奖励人姓名
+    /// </summary>
+    public string? AwardName { get; set; }
 }
 
 /// <summary>

+ 6 - 8
src/Hotline.Share/Dtos/Snapshot/StatisticsDto.cs

@@ -15,32 +15,32 @@ public class SnapshotStatisticsOutDto
     /// <summary>
     /// 随手拍来件数
     /// </summary>
-    public int SuiShouPaiLaiJianShu { get; set; }
+    public int SSPLJS { get; set; }
 
     /// <summary>
     /// 未在受理范围内件数
     /// </summary>
-    public int WeiZaiShouLiFanWeiNeiJianShu { get; set; }
+    public int WZSLFWNJS { get; set; }
 
     /// <summary>
     /// 随手拍转12345件数
     /// </summary>
-    public int SuiShouPaiZhuan12345JianShu { get; set; }
+    public int SSPZ12345JS { get; set; }
 
     /// <summary>
     /// 受理范围内总件数
     /// </summary>
-    public int ShouLiFanWeiNeiZongJianShu { get; set; }
+    public int SLFWNZJS { get; set; }
 
     /// <summary>
     /// 受理范围内派给各网格员件数
     /// </summary>
-    public int ShouLiFanWeiNeiPaiGeiGeWangGeYuanJianShu { get; set; }
+    public int SLFWNPGGWGYJS { get; set; }
 
     /// <summary>
     /// 受理范围内派给网格员四小时内回复件数
     /// </summary>
-    public int ShouLiFanWeiNeiPaiGeiWangGeYuanSiXiaoShiNeiHuiFuJianShu { get; set; }
+    public int SLFWNPGWGYSXSNHFJS { get; set; }
 
     /// <summary>
     /// 受理范围内派给网格员超过四小时回复件数
@@ -141,8 +141,6 @@ public class SnapshotStatisticsOutDto
     /// 审批同意(网格员)红包个数
     /// </summary>
     public float SPTYWGYHBGS { get; set; }
-
-
 }
 
 /// <summary>