|
@@ -10,6 +10,7 @@ using SqlSugar;
|
|
|
using SqlSugar.Extensions;
|
|
|
using XF.Domain.Dependency;
|
|
|
using XF.Domain.Exceptions;
|
|
|
+using XF.Utility.EnumExtensions;
|
|
|
|
|
|
namespace Hotline.Application.Snapshot;
|
|
|
public class RedPackApplication : IRedPackApplication, IScopeDependency
|
|
@@ -56,6 +57,7 @@ public class RedPackApplication : IRedPackApplication, IScopeDependency
|
|
|
if (count != 0)
|
|
|
outDto.RedPackTxt += $"今天审批【{count}】个";
|
|
|
|
|
|
+ outDto.AuditComBox = EnumExts.GetDescriptions<ERedPackAuditStatus>();
|
|
|
return outDto;
|
|
|
}
|
|
|
|