using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using ChangKeTec.Wms.Models; namespace CK.SCP.Models.ScpEntity { public partial class TB_PRICE //RecordEntity { [Key] public int UID { get; set; } public string VendId { get; set; } public string Site { get; set; } public string SubSite { get; set; } public string PartCode { get; set; } public Nullable StartTime { get; set; } public Nullable EndTime { get; set; } public string Curr { get; set; } public string Unit { get; set; } [DecimalPrecision(18, 5)] public decimal Amt { get; set; } public string Remarks { get; set; } /// /// 状态(已用) /// public string Extend1 { get; set; } public string Extend2 { get; set; } public string Extend3 { get; set; } public int TemporaryPrice { get; set; } /// /// 状态 /// public int State { get; set; } public string Creator { get; set; } [NotMapped] public List UserInAddress { set; get; } [NotMapped] public List UserInVendIds { set; get; } /// /// 是否传接口 1是 /// public int IsPost { set; get; } } }