using System;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
namespace ShopMobile.Model
{
[Serializable]
public class PT_Order_Header
{
///
/// ID
///
[DisplayName("ID")]
public int ID { get; set; }
///
/// OrderID
///
[DisplayName("OrderID")]
public string OrderID { get; set; }
///
/// Receiver
///
[DisplayName("Receiver")]
public string Receiver { get; set; }
///
/// Province
///
[DisplayName("Province")]
public string Province { get; set; }
///
/// City
///
[DisplayName("City")]
public string City { get; set; }
///
/// County
///
[DisplayName("County")]
public string County { get; set; }
///
/// Address
///
[DisplayName("Address")]
public string Address { get; set; }
///
/// PostCode
///
[DisplayName("PostCode")]
public string PostCode { get; set; }
///
/// Telephone
///
[DisplayName("Telephone")]
public string Telephone { get; set; }
///
/// FixTel
///
[DisplayName("FixTel")]
public string FixTel { get; set; }
///
/// Email
///
[DisplayName("Email")]
public string Email { get; set; }
///
/// SumPrice
///
[DisplayName("SumPrice")]
public decimal? SumPrice { get; set; }
///
/// PayPrice
///
[DisplayName("PayPrice")]
public decimal? PayPrice { get; set; }
///
/// ExpressWay
///
[DisplayName("ExpressWay")]
public string ExpressWay { get; set; }
///
/// Express
///
[DisplayName("Express")]
public string Express { get; set; }
///
/// ExpressNo
///
[DisplayName("ExpressNo")]
public string ExpressNo { get; set; }
///
/// ExpressFee
///
[DisplayName("ExpressFee")]
public decimal? ExpressFee { get; set; }
///
/// ExpressTime
///
[DisplayName("ExpressTime")]
public DateTime? ExpressTime { get; set; }
///
/// QHPeople
///
[DisplayName("QHPeople")]
public string QHPeople { get; set; }
///
/// QHRemark
///
[DisplayName("QHRemark")]
public string QHRemark { get; set; }
///
/// DiscountNo
///
[DisplayName("DiscountNo")]
public string DiscountNo { get; set; }
///
/// DiscountPrice
///
[DisplayName("DiscountPrice")]
public decimal? DiscountPrice { get; set; }
///
/// Points
///
[DisplayName("Points")]
public decimal? Points { get; set; }
///
/// PointsMoney
///
[DisplayName("PointsMoney")]
public decimal? PointsMoney { get; set; }
///
/// PayMethod
///
[DisplayName("PayMethod")]
public string PayMethod { get; set; }
///
/// State
///
[DisplayName("State")]
public int? State { get; set; }
///
/// Invoice
///
[DisplayName("Invoice")]
public string Invoice { get; set; }
///
/// InvoiceTitle
///
[DisplayName("InvoiceTitle")]
public string InvoiceTitle { get; set; }
///
/// InvoiceContent
///
[DisplayName("InvoiceContent")]
public string InvoiceContent { get; set; }
///
/// OrderMemo
///
[DisplayName("OrderMemo")]
public string OrderMemo { get; set; }
///
/// CreateUser
///
[DisplayName("CreateUser")]
public string CreateUser { get; set; }
///
/// CreateTime
///
[DisplayName("CreateTime")]
public DateTime? CreateTime { get; set; }
///
/// PayTime
///
[DisplayName("PayTime")]
public DateTime? PayTime { get; set; }
///
/// ConfirmTime
///
[DisplayName("ConfirmTime")]
public DateTime? ConfirmTime { get; set; }
///
/// CancelTime
///
[DisplayName("CancelTime")]
public DateTime? CancelTime { get; set; }
}
}