【新增】新增后台可以增加代理商。方便有特别需求的用户,减少前端申请的申请及审核步骤。

This commit is contained in:
大灰灰
2022-11-08 20:41:00 +08:00
parent 61cadafa2b
commit f29b38152d
5 changed files with 283 additions and 21 deletions

View File

@@ -57,7 +57,52 @@ namespace CoreCms.Net.Model.FromBody
public string storeName { get; set; }
}
/// <summary>
/// 后台创建代理商提交参数
/// </summary>
public class FMAdminCreateAgentPost
{
/// <summary>
/// 已注册用户手机号码
/// </summary>
public System.String registeredUserMobile { get; set; }
/// <summary>
/// 用户序列
/// </summary>
public System.Int32 userId { get; set; }
/// <summary>
/// 分销商名称
/// </summary>
public System.String name { get; set; }
/// <summary>
/// 分销等级
/// </summary>
public System.Int32 gradeId { get; set; }
/// <summary>
/// 手机号
/// </summary>
public System.String mobile { get; set; }
/// <summary>
/// 微信号
/// </summary>
public System.String weixin { get; set; }
/// <summary>
/// qq号
/// </summary>
public System.String qq { get; set; }
/// <summary>
/// 审核状态
/// </summary>
public System.Int32 verifyStatus { get; set; }
}
}