liaoxujun@qq.com
2024-02-28 9f8e542b9b74fe18a6a4e0a00fef4b50e3e62581
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
/***********************************************************************
 *            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; }
    }
}