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 WrPairReqModel
{
private long _TradeGoodsId;
public long TradeGoodsId
{
get { return _TradeGoodsId; }
set { _TradeGoodsId = value; }
}
private long _OperatorId;
public long OperatorId
{
get { return _OperatorId; }
set { _OperatorId = 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
}
}