/*********************************************************************** * Project: CoreCms * ProjectName: 百分兵法管理系统 * Web: hhtp://chuanyin.com * Author: * Email: * CreateTime: 202403/02 * Description: 暂无 ***********************************************************************/ using SqlSugar; using System.ComponentModel.DataAnnotations; using System.Security.Principal; using System.Xml.Linq; namespace CoreCms.Net.Model.FromBody { //API接口提交================================================ /// /// 申请成为分销商接口提交参数 /// 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; } } /// /// 店铺设置提交参数 /// public class FMSetDistributionStorePost { public string storeBanner { get; set; } public string storeDesc { get; set; } public string storeLogo { get; set; } public string storeName { get; set; } } /// /// 后台创建分销商提交参数 /// public class FMAdminCreateDistributionPost { /// /// 已注册用户手机号码 /// public System.String registeredUserMobile { get; set; } /// /// 用户序列 /// public System.Int32 userId { get; set; } /// /// 分销商名称 /// public System.String name { get; set; } /// /// 分销等级 /// public System.Int32 gradeId { get; set; } /// /// 手机号 /// public System.String mobile { get; set; } /// /// 微信号 /// public System.String weixin { get; set; } /// /// qq号 /// public System.String qq { get; set; } /// /// 审核状态 /// public System.Int32 verifyStatus { get; set; } } }