/*********************************************************************** * Project: baifenBinfa * ProjectName: 百分兵法管理系统 * Web: http://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 storeName { get; set; } /// /// 地址分类 /// public string areaCode { get; set; } /// /// 详细地址 /// public string address { get; set; } /// /// 店铺门头 /// public string storeBanner { get; set; } //public string qq { get; set; } //public string weixin { get; set; } /// /// 销售额度 /// public decimal sales { get; set; } /// /// 所属行业 /// public string profession { get; set; } /// /// 坐标 /// public string storeCoordinate { 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.Int32 userId { get; set; } /// /// 经销商名称 /// public System.String name { get; set; } /// /// 分销等级 /// public System.Int32 gradeId { get; set; } /// /// 手机号 /// public System.String mobile { get; set; } /// /// 店铺名称 /// public string storeName { get; set; } /// /// 区域 /// public string areaCode { get; set; } /// /// 详细地址 /// public string address { get; set; } /// /// 店铺门头 /// public string storeBanner { get; set; } //public string qq { get; set; } //public string weixin { get; set; } /// /// 销售额度 /// public decimal sales { get; set; } /// /// 所属行业 /// public string profession { get; set; } /// /// 坐标 /// public string storeCoordinate { get; set; } /// /// 审核状态 /// public System.Int32 verifyStatus { get; set; } } }