mirror of
http://git.coreshop.cn/jianweie/coreshoppro.git
synced 2025-12-06 21:03:26 +08:00
【新增】后端注册用户管理增加设置上级推荐人功能。
【新增】后端注册用户管理,支持查询上级推荐人昵称或者上级序列号。
This commit is contained in:
@@ -154,5 +154,24 @@ namespace CoreCms.Net.Model.FromBody
|
||||
public string memo { get; set; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 更新用户上级提交model
|
||||
/// </summary>
|
||||
public class FMUpdateUserParentId
|
||||
{
|
||||
/// <summary>
|
||||
/// 序列
|
||||
/// </summary>
|
||||
[Required(ErrorMessage = "请输入序列")]
|
||||
public int id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 上级序列
|
||||
/// </summary>
|
||||
[Required(ErrorMessage = "请输入上级序列")]
|
||||
public int parentId { get; set; }
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
Reference in New Issue
Block a user