Files
coreshoppro/CoreCms.Net.Model/FromBody/FMDistribution.cs

90 lines
2.5 KiB
C#

/***********************************************************************
* Project: CoreCms
* ProjectName: 核心内容管理系统
* Web: https://www.corecms.net
* Author: 大灰灰
* Email: jianweie@163.com
* CreateTime: 2021/1/31 21:45:10
* Description: 暂无
***********************************************************************/
using SqlSugar;
using System.ComponentModel.DataAnnotations;
using System.Security.Principal;
using System.Xml.Linq;
namespace CoreCms.Net.Model.FromBody
{
//API接口提交================================================
/// <summary>
/// 申请成为分销商接口提交参数
/// </summary>
public class FMDistributionApply
{
public string agreement { get; set; }
public string mobile { get; set; }
public string name { get; set; }
public string qq { get; set; }
public string weixin { get; set; }
}
/// <summary>
/// 店铺设置提交参数
/// </summary>
public class FMSetDistributionStorePost
{
public string storeBanner { get; set; }
public string storeDesc { get; set; }
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; }
}
}