/*********************************************************************** * Project: baifenBinfa * ProjectName: 百分兵法管理系统 * Web: http://chuanyin.com * Author: * Email: * CreateTime: 202403/02 * Description: 暂无 ***********************************************************************/ using System; using System.Collections.Generic; using System.Text; using CoreCms.Net.Model.Entities; namespace CoreCms.Net.Model.FromBody { public class FMCreateAgentGood { /// /// 商品主体 /// public CoreCmsAgentGoods good { get; set; } /// /// 货品数据 /// public List products { get; set; } } //API接口提交================================================ /// /// 申请成为代理商接口提交参数 /// public class FMAgentApply { 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 FMSetAgentStorePost { public string storeBanner { get; set; } public string storeDesc { get; set; } public string storeLogo { get; set; } public string storeName { get; set; } } /// /// 后台创建代理商提交参数 /// public class FMAdminCreateAgentPost { /// /// 已注册用户手机号码 /// 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; } } }