|
|
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账号生成规则
|
}
|
}
|