using System;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
namespace ShopMobile.Model
{
[Serializable]
public class PT_Order_Item
{
///
/// ID
///
[DisplayName("ID")]
public int ID { get; set; }
///
/// OrderID
///
[DisplayName("OrderID")]
public string OrderID { get; set; }
///
/// PID
///
[DisplayName("PID")]
public int? PID { get; set; }
///
/// Title
///
[DisplayName("Title")]
public string Title { get; set; }
///
/// ImgUrl
///
[DisplayName("ImgUrl")]
public string ImgUrl { get; set; }
///
/// SumPrice
///
[DisplayName("SumPrice")]
public decimal? SumPrice { get; set; }
///
/// PayPrice
///
[DisplayName("PayPrice")]
public decimal? PayPrice { get; set; }
///
/// Price3
///
[DisplayName("Point")]
public decimal? Point { get; set; }
///
/// Qty
///
[DisplayName("Qty")]
public int? Qty { get; set; }
///
/// CreateUser
///
[DisplayName("CreateUser")]
public string CreateUser { get; set; }
///
/// CreateTime
///
[DisplayName("CreateTime")]
public DateTime? CreateTime { get; set; }
///
/// Attrs
///
[DisplayName("Attrs")]
public string Attrs { get; set; }
///
/// SpNo
///
[DisplayName("SpNo")]
public int? SpNo { get; set; }
}
}