using JNPF.Common.Const; using JNPF.Common.Contracts; using SqlSugar; namespace JNPF.WorkFlow.Entitys { /// /// 订单明细 /// 版 本:V3.2 /// 版 权:拓通智联科技有限公司(http://www.tuotong-tech.com) /// 日 期:2018-07-23 . /// [SugarTable("WFORM_SALESORDERENTRY")] [Tenant(ClaimConst.TENANTID)] public class SalesOrderEntryEntity : EntityBase { /// /// 订单主键. /// [SugarColumn(ColumnName = "F_SALESORDERID")] public string SalesOrderId { get; set; } /// /// 商品名称. /// [SugarColumn(ColumnName = "F_GOODSNAME")] public string GoodsName { get; set; } /// /// 规格型号. /// [SugarColumn(ColumnName = "F_SPECIFICATIONS")] public string Specifications { get; set; } /// /// 单位. /// [SugarColumn(ColumnName = "F_UNIT")] public string Unit { get; set; } /// /// 数量. /// [SugarColumn(ColumnName = "F_QTY")] public string Qty { get; set; } /// /// 单价. /// [SugarColumn(ColumnName = "F_PRICE")] public decimal? Price { get; set; } /// /// 金额. /// [SugarColumn(ColumnName = "F_AMOUNT")] public decimal? Amount { get; set; } /// /// 描述. /// [SugarColumn(ColumnName = "F_DESCRIPTION")] public string Description { get; set; } /// /// SortCode. /// [SugarColumn(ColumnName = "F_SORTCODE")] public long? SortCode { get; set; } } }