瀏覽代碼

DecreasePaymentsList
新增View字段 CreateTime

leiy 1 年之前
父節點
當前提交
ff7a7a191f
共有 1 個文件被更改,包括 2 次插入1 次删除
  1. 2 1
      OASystem/OASystem.Infrastructure/Repositories/Groups/DecreasePaymentsRepository.cs

+ 2 - 1
OASystem/OASystem.Infrastructure/Repositories/Groups/DecreasePaymentsRepository.cs

@@ -52,8 +52,9 @@ namespace OASystem.Infrastructure.Repositories.Groups
                     sqlWhere += string.Format(@" And ccp.IsPay = {0} ", dto.IsPaySign);
                 }
 
+                //雷怡 2024-5-8 15:14 新增View字段 CreateTime
                 string sql = string.Format(@" Select gdp.Id,gdp.DiId,gdp.PriceName,gdp.Price,sd1.[Name] as Currency,gdp.FilePath,su.CnName as CreateUserName,
-ccp.IsAuditDM as isAudit,ccp.IsPay
+ccp.IsAuditDM as isAudit,ccp.IsPay,gdp.CreateTime
 From Grp_DecreasePayments as gdp With(Nolock) Left Join Grp_CreditCardPayment as ccp With(Nolock) On gdp.Id = ccp.CId
 Left Join Sys_SetData as sd1 On gdp.Currency = sd1.Id
 Left Join Sys_Users as su On gdp.CreateUserId = su.Id