using System.Collections.Generic;
using System.Runtime.Serialization;
namespace GSYWApi.Model
{
///
/// 门店派送相关类
///
[DataContract]
public class DELIVERSERVERPARTModel
{
#region DELIVERSERVERPART_ID 派送内码
System.Int32? _DELIVERSERVERPART_ID = null;
///
/// 派送内码
///
[DataMember]
public System.Int32? DELIVERSERVERPART_ID
{
get { return _DELIVERSERVERPART_ID; }
set
{
if (_DELIVERSERVERPART_ID != value)
{
_DELIVERSERVERPART_ID = value;
}
}
}
#endregion
#region PURCHASE_ID 采购内码
System.Int32? _PURCHASE_ID = null;
///
/// 采购内码
///
[DataMember]
public System.Int32? PURCHASE_ID
{
get { return _PURCHASE_ID; }
set
{
if (_PURCHASE_ID != value)
{
_PURCHASE_ID = value;
}
}
}
#endregion
#region DELIVERCENTER_TYPE 派送单据类型
System.Int16? _DELIVERCENTER_TYPE = null;
///
/// 派送单据类型
///
[DataMember]
public System.Int16? DELIVERCENTER_TYPE
{
get { return _DELIVERCENTER_TYPE; }
set
{
if (_DELIVERCENTER_TYPE != value)
{
_DELIVERCENTER_TYPE = value;
}
}
}
#endregion
#region DELIVERCENTER_CODE 派送编号
System.String _DELIVERCENTER_CODE = null;
///
/// 派送编号
///
[DataMember]
public System.String DELIVERCENTER_CODE
{
get { return _DELIVERCENTER_CODE; }
set
{
if (_DELIVERCENTER_CODE != value)
{
_DELIVERCENTER_CODE = value;
}
}
}
#endregion
#region DELIVER_PERSON 派送人
System.String _DELIVER_PERSON = null;
///
/// 派送人
///
[DataMember]
public System.String DELIVER_PERSON
{
get { return _DELIVER_PERSON; }
set
{
if (_DELIVER_PERSON != value)
{
_DELIVER_PERSON = value;
}
}
}
#endregion
#region DELIVER_DATE 派送时间
System.DateTime? _DELIVER_DATE = null;
///
/// 派送时间
///
[DataMember]
public System.DateTime? DELIVER_DATE
{
get { return _DELIVER_DATE; }
set
{
if (_DELIVER_DATE != value)
{
_DELIVER_DATE = value;
}
}
}
#endregion
#region DELIVER_TEL 派送电话
System.String _DELIVER_TEL = null;
///
/// 派送电话
///
[DataMember]
public System.String DELIVER_TEL
{
get { return _DELIVER_TEL; }
set
{
if (_DELIVER_TEL != value)
{
_DELIVER_TEL = value;
}
}
}
#endregion
#region DELIVER_STATE 单据状态
System.Int16? _DELIVER_STATE = null;
///
/// 单据状态
///
[DataMember]
public System.Int16? DELIVER_STATE
{
get { return _DELIVER_STATE; }
set
{
if (_DELIVER_STATE != value)
{
_DELIVER_STATE = value;
}
}
}
#endregion
#region DELIVER_DESC 备注
System.String _DELIVER_DESC = null;
///
/// 备注
///
[DataMember]
public System.String DELIVER_DESC
{
get { return _DELIVER_DESC; }
set
{
if (_DELIVER_DESC != value)
{
_DELIVER_DESC = value;
}
}
}
#endregion
}
}