liaoxujun@qq.com
2024-03-22 d856b2d3c85f39a2908de47ad1934e34805591e4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
/***********************************************************************
 *            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接口提交================================================
    /// <summary>
    ///     申请成为经销商接口提交参数
    /// </summary>
    public class FMDistributionApply
    {
       
        public string agreement { get; set; }
      /// <summary>
      /// 电话
      /// </summary>
        public string mobile { get; set; }
        /// <summary>
        /// 联系人
        /// </summary>
        public string name { get; set; }
        /// <summary>
        /// 店铺名称
        /// </summary>
              public string storeName { get; set; }
        /// <summary>
        /// 地址分类
        /// </summary>
        public string areaCode {  get; set; }
 
        /// <summary>
        /// 详细地址
        /// </summary>
        public string address { get; set; }
 
        /// <summary>
        /// 店铺门头
        /// </summary>
        public string storeBanner { get; set; }
        //public string qq { get; set; }
        //public string weixin { get; set; }
        /// <summary>
        /// 销售额度
        /// </summary>
        public decimal sales {  get; set; }
 
        /// <summary>
        /// 所属行业
        /// </summary>
        public string profession { get; set; }
 
        /// <summary>
        /// 坐标
        /// </summary>
        public string storeCoordinate {  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; }
    }
}