yzh
2021-10-11 6c4ea53f92500f49959013c36b5c67fed25cd791
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
 
 
namespace Model
{
 
    /**
     * 账户产品信息
     */
  public class GwClientProduct
  {
        //public int id { get; set; } //账户产品表ID
 
        public string client_product_id { get; set; }  //账户产品ID
 
        public string client_id { get; set; }  //账户ID
 
        public string sp_id { get; set; }  //API账号ID
 
        public int activate_status { get; set; }    //激活状态
 
        public string product_id { get; set; }    //产品ID
 
        public string product_name { get; set; }    //产品名称
 
        public string icon { get; set; }    //产品图标
 
        public string instructions { get; set; }    //使用说明
 
        public int classes { get; set; }    //类别
 
        public string parent_id { get; set; }
 
        public string path { get; set; }    //产品分类路径
 
        public int is_default { get; set; } //是否默认
 
        public int is_enable { get; set; }  //是否启用
 
        public int sort { get; set; }   //在账户信息显示顺序,值越小越排前
 
        public int giving_num { get; set; } //默认赠送条数
 
        public string remark { get; set; }  //备注
 
        public int balance { get; set; } //余额
 
        public int available_num { get; set; }   //可用条数,基本数 + 赠送数
 
        public string api_sp_xh_id { get; set; }  //API账号生成规则
    }
}