Commit 00bed76e authored by 吴春's avatar 吴春

提交代码

parent 86db1f0d
......@@ -16,7 +16,7 @@ namespace Mall.Model.Extend.MarketingCenter
/// <summary>
/// 会员名称
/// </summary>
public string AliasName { get; set; }
public string Name { get; set; }
/// <summary>
/// 会员头像
......
......@@ -27,7 +27,7 @@ namespace Mall.Repository.MarketingCenter
public List<RB_Coupon_SelfMotionMember_Extend> GetListRepository(RB_Coupon_SelfMotionMember_Extend query)
{
StringBuilder builder = new StringBuilder();
builder.Append(@$" SELECT a.*,b.`AliasName`,b.Photo as GrandpaID FROM {TableName} as a
builder.Append(@$" SELECT a.*,b.`Name`,b.Photo FROM {TableName} as a
LEFT JOIN {UserTableName} as b on a.UserId = b.ID WHERE a.{nameof(RB_Coupon_SelfMotionMember_Extend.Status)}=0");
if (query != null)
{
......
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