Commit 1dc5d9b2 authored by 吴春's avatar 吴春

提交代码

parent 85ddae70
......@@ -454,7 +454,8 @@ namespace Mall.Module.User
//2020-07-20 Add By:W
Dictionary<string, object> keyValuesDistributor = new Dictionary<string, object>() {
{ nameof(RB_Distributor_Info.VipExpiryDate),distributorModel.VipExpiryDate}
{ nameof(RB_Distributor_Info.VipExpiryDate),distributorModel.VipExpiryDate},
{ nameof(RB_Distributor_Info.FXGradeId),model.GradeId}
};
List<WhereHelper> wheresDistributor = new List<WhereHelper>() {
new WhereHelper{
......
......@@ -1296,7 +1296,8 @@ namespace Mall.WebApi.Controllers.User
x.GradeName,
x.PayState,
x.PayWay,
PayTimeStr = x.PayTime.HasValue ? x.PayTime.Value.ToString("yyyy-MM-dd HH:mm:ss") : ""
PayTimeStr = x.PayTime.HasValue ? x.PayTime.Value.ToString("yyyy-MM-dd HH:mm:ss") : "",
x.Remark
});
return ApiResult.Success("", pagelist);
}
......
......@@ -134,7 +134,8 @@ namespace Mall.WebApi.Controllers.User
x.GradeName,
x.PayState,
x.PayWay,
PayTimeStr = x.PayTime.HasValue ? x.PayTime.Value.ToString("yyyy-MM-dd HH:mm:ss") : ""
PayTimeStr = x.PayTime.HasValue ? x.PayTime.Value.ToString("yyyy-MM-dd HH:mm:ss") : "",
x.Remark
});
return ApiResult.Success("", pagelist);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment