using Muchinfo.MTPClient.Data.Model.Account;
using Muchinfo.MTPClient.Data.Model.GoodRules;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Muchinfo.MTPClient.Data.Model
{
///
/// 登录查询/基本信息【打包】查询 MTP2.0
/// 【账户信息 资金账户信息 商品交易规则和费用规则列表 最大通知id 最后更新时间列表】
///
public class AccountBaseInfoModel
{
#region 字段备注
//AccountInfo 账号信息 AccountInfo
//TAAccountList 资金账户列表 TAAccountAll
//GoodsRuleAndFeeList 商品交易规则和费用规则列表 GoodsRuleAndFee
//ServerLastNoticeId 最大通知id int32
//ParamValues 时间戳集合Key-Value ParamValue
#endregion
///
/// 账号信息
///
public TradeAccount TradeAccount { get; set; }
///
/// 资金账户列表
///
public List TAAccountList { get; set; }
///
/// 商品个性化设置列表
///
public List GoodsRuleAndFeeList { get; set; }
///
/// 最大通知id
///
public uint ServerLastNoticeId { get; set; }
///
/// 时间戳集合Key-Value ParamValue 、最后更新时间列表
///
public List LastUpdateTimeList { get; set; }
}
}