mirror of
http://git.coreshop.cn/jianweie/coreshoppro.git
synced 2025-12-06 17:43:26 +08:00
【新增】新增后台可以增加分销商。方便有特别需求的用户,减少前端申请的申请及审核步骤。
This commit is contained in:
@@ -9,6 +9,11 @@
|
||||
***********************************************************************/
|
||||
|
||||
|
||||
using SqlSugar;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.Security.Principal;
|
||||
using System.Xml.Linq;
|
||||
|
||||
namespace CoreCms.Net.Model.FromBody
|
||||
{
|
||||
//API接口提交================================================
|
||||
@@ -35,4 +40,51 @@ namespace CoreCms.Net.Model.FromBody
|
||||
public string storeLogo { get; set; }
|
||||
public string storeName { get; set; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 后台创建分销商提交参数
|
||||
/// </summary>
|
||||
public class FMAdminCreateDistributionPost
|
||||
{
|
||||
/// <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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user