using Muchinfo.MTPClient.Data.Enums; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Muchinfo.MTPClient.Data.Model.Delivery { /// /// 交割提货个人信息查询请求-实体 /// public class DepositPersonalInfoReqModel { private long _accountId; public long accountId { get { return _accountId; } set { _accountId = value; } } #region 公共字段 /// /// 账号 /// //public uint AccountId { get; set; } /// /// 商品Id /// //public uint GoodsId { get; set; } /// /// 操作者 /// //public uint OperaterId { get; set; } /// /// 账号类型 /// public eAccountType AccountType { get; set; } /// /// 校验类型 /// public ExpirationType ValidType { get; set; } /// /// 委托时间 /// public DateTime EntrurstTime { get; set; } #endregion } }