using System; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using Znyc.Cloudcar.Admin.Commons.Entitys; namespace Znyc.Cloudcar.Admin.Security.Entitys { /// /// 订单明细表 /// [Table("order_detail")] [Serializable] public class OrderDetailEntity : BaseEntity { /// /// 订单表ID /// public long OrderId { get; set; } /// /// 订单商品ID /// public long ProductId { get; set; } /// /// 商品名称 /// [MaxLength(25)] public string ProductName { get; set; } /// /// 购买商品数量 /// public int ProductCnt { get; set; } /// /// 购买商品单价 /// public decimal ProductPrice { get; set; } } }