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 ReceiveConfirmReqModel
{
private long _DeliveryId;
public long DeliveryId
{
get { return _DeliveryId; }
set { _DeliveryId = value; }
}
private ulong _OperatorID;
public ulong OperatorID
{
get { return _OperatorID; }
set { _OperatorID = value; }
}
private int _confirmType;
public int ConfirmType
{
get { return _confirmType; }
set { _confirmType = value; }
}
///
/// 计划明细ID
///
public long PlanDetailID { get; set; }
#region 公共字段
///
/// 账号
///
public ulong AccountId { get; set; }
///
/// 商品Id
///
public uint GoodsId { get; set; }
///
/// 操作者
///
//public uint OperaterId { get; set; }
///
/// 账号类型
///
public eUserType AccountType { get; set; }
///
/// 校验类型
///
public ExpirationType ValidType { get; set; }
///
/// 委托时间
///
public DateTime EntrurstTime { get; set; }
#endregion
}
}