//------------------------------------------------------------------------------ // // 此代码已从模板生成。 // // 手动更改此文件可能导致应用程序出现意外的行为。 // 如果重新生成代码,将覆盖对此文件的手动更改。 // //------------------------------------------------------------------------------ namespace CK.SCP.Models.ScpEntity { using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; public class UNCOMPLETE_TASK { public string VendId { set; get; } public string VendName { set; get; } public int? Number { set; get; } public int? Year { set; get; } } [Serializable] public partial class V_TB_ASK_DETAIL:RecordEntity { [Key] [DatabaseGenerated(DatabaseGeneratedOption.Identity)] public long UID { get; set; } [StringLength(50)] public string PoBillNum { get; set; } public int PoLine { get; set; } [StringLength(50)] public string PartCode { get; set; } [NotMapped] public decimal? ShippedQty { get; set; } public decimal ReceivedQty { get; set; } [NotMapped] public decimal RejectQty { get; set; } [NotMapped] public decimal ArriveQty { get; set; } [NotMapped] public decimal InvoiceQty { get; set; } [NotMapped] public decimal OnRoadQty { get; set; } public DateTime? BeginTime { get; set; } public DateTime? EndTime { get; set; } [StringLength(50)] public string PoUnit { get; set; } [StringLength(50)] public string LocUnit { get; set; } public decimal Price { get; set; } [StringLength(50)] public string Currency { get; set; } public decimal PackQty { get; set; } public decimal UnConv { get; set; } [StringLength(50)] public string DockCode { get; set; } public int State { get; set; } [StringLength(50)] public string Remark { get; set; } [StringLength(50)] public string PartDesc1 { get; set; } [StringLength(50)] public string CurrencyDesc { get; set; } [StringLength(50)] public string Site { get; set; } [StringLength(50)] public string VendName { get; set; } [StringLength(50)] public string PartDesc2 { get; set; } [StringLength(50)] public string AskBillNum { get; set; } public decimal AskQty { get; set; } [StringLength(50)] public string VendId { get; set; } public string ReceivedPort { get; set; } public string ReceivedPort_Desc { get; set; } public decimal? ReduceQty { get; set; } public int ValidityDays { get; set; } public string Extend1 { get; set; } public string Extend2 { get; set; } public string Extend3 { get; set; } public string SubSite { get; set; } [NotMapped] [Column(TypeName = "money")] public decimal? TempQty { get; set; } [NotMapped] [Column(TypeName = "money")] public decimal CanQty { get; set; } [NotMapped] public decimal? ContractPrice { get; set; } [NotMapped] public decimal? BlancePrice { get; set; } public string VendPartCode { get; set; } #region 条件 [NotMapped] public string VendBatch { get; set; } [NotMapped] public string Batch { get; set; } [NotMapped] public DateTime? ShipTime { get; set; } [NotMapped] public string ShipUser { get; set; } [NotMapped] public DateTime? ReceiveTime { get; set; } [NotMapped] public string ReceiveUser { get; set; } [NotMapped] public DateTime ProduceDate { get; set; } [NotMapped] public string Time { get; set; } [NotMapped] public string MaxTime { get; set; } #endregion } }