移动系统liao
2024-07-30 306ab8865840b2637590abb6e670e5614446f24d
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
/***********************************************************************
 *            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
    {
        /// <summary>
        /// 商品主体
        /// </summary>
        public CoreCmsAgentGoods good { get; set; }
 
        /// <summary>
        /// 货品数据
        /// </summary>
        public List<CoreCmsAgentProducts> products { get; set; }
    }
 
 
 
    //API接口提交================================================
    /// <summary>
    /// 申请成为代理商接口提交参数
    /// </summary>
    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; }
    }
 
 
    /// <summary>
    /// 代理商店铺设置提交参数
    /// </summary>
    public class FMSetAgentStorePost
    {
        public string storeBanner { get; set; }
        public string storeDesc { get; set; }
        public string storeLogo { get; set; }
        public string storeName { get; set; }
    }
 
    /// <summary>
    /// 后台创建代理商提交参数
    /// </summary>
    public class FMAdminCreateAgentPost
    {
        /// <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; }
    }
 
 
}