You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

175 lines
5.5 KiB

4 years ago
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CK.SCP.Models.ScpEntity
{
public class V_TIMELY_DELIVERY
{
public decimal AskQty { get; set; }
public decimal ReduceQty { get; set; }
public Nullable<decimal> Qty { get; set; }
public string AskBillNum { get; set; }
public string PoBillNum { get; set; }
public int PoLine { get; set; }
public string PartCode { get; set; }
public Nullable<decimal> Number { get; set; }
public string PartDesc1 { get; set; }
public System.Guid GUID { get; set; }
public bool IsDeleted { get; set; }
public Nullable<System.DateTime> BeginTime { get; set; }
public Nullable<System.DateTime> EndTime { get; set; }
public long UID { get; set; }
public Nullable<int> ValidityDays { get; set; }
public string Site { get; set; }
public string VendId { get; set; }
public Nullable<int> ReviceDelayDay { get; set; }
public Nullable<System.DateTime> RecvTime { get; set; }
public Nullable<decimal> ReviceQty { get; set; }
public Nullable<System.DateTime> shiptime { get; set; }
public string CreateUser { get; set; }
public string Buyer { get; set; }
[NotMapped]
public DateTime? RecvBeginTime { get; set; }
[NotMapped]
public DateTime? RecvEndTime { get; set; }
}
public class V_TB_ASK_RECEIVE
{
public decimal AskQty { get; set; }
public Nullable<decimal> Qty { get; set; }
public string AskBillNum { get; set; }
public string PoBillNum { get; set; }
public int PoLine { get; set; }
public string PartCode { get; set; }
public Nullable<decimal> Number { get; set; }
public string PartDesc1 { get; set; }//
public bool IsDeleted { get; set; }
public Nullable<System.DateTime> BeginTime { get; set; }
public Nullable<System.DateTime> EndTime { get; set; }
[Key]
public long UID { get; set; }
public string Site { get; set; }
public string VendId { get; set; }
public Nullable<System.DateTime> RecvTime { get; set; }
public Nullable<decimal> ReviceQty { get; set; }
public int? State { get; set; }
public string ProjectId { get; set; }
[NotMapped]
public Nullable<System.DateTime> ShipTime { get; set; }
[NotMapped]
public string CreateUser { get; set; }
public string Buyer { get; set; }
[NotMapped]
public DateTime? RecvBeginTime { get; set; }
[NotMapped]
public DateTime? RecvEndTime { get; set; }
[NotMapped]
public string State_Desc { get; set; }
}
public class TB_ASK_RECEIVE
{
public decimal AskQty { get; set; }
public Nullable<decimal> Qty { get; set; }
public string AskBillNum { get; set; }
public string PoBillNum { get; set; }
public int PoLine { get; set; }
public string PartCode { get; set; }
public Nullable<decimal> Number { get; set; }
public string PartDesc1 { get; set; }//
public bool IsDeleted { get; set; }
public Nullable<System.DateTime> BeginTime { get; set; }
public Nullable<System.DateTime> EndTime { get; set; }
[Key]
public long UID { get; set; }
public string Site { get; set; }
public string VendId { get; set; }
public Nullable<System.DateTime> RecvTime { get; set; }
public Nullable<decimal> ReviceQty { get; set; }
public int? State { get; set; }
public string ProjectId { get; set; }
[NotMapped]
public Nullable<System.DateTime> ShipTime { get; set; }
[NotMapped]
public string CreateUser { get; set; }
public string Buyer { get; set; }
[NotMapped]
public DateTime? RecvBeginTime { get; set; }
[NotMapped]
public DateTime? RecvEndTime { get; set; }
[NotMapped]
public string State_Desc { get; set; }
}
public class TB_UNCOMPLETE_TEMPASK
{
public decimal AskQty { get; set; }
public Nullable<decimal> Qty { get; set; }
public string AskBillNum { get; set; }
public string PoBillNum { get; set; }
public int PoLine { get; set; }
public string PartCode { get; set; }
public Nullable<decimal> Number { get; set; }
public string PartDesc1 { get; set; }//
public bool IsDeleted { get; set; }
public Nullable<System.DateTime> BeginTime { get; set; }
public Nullable<System.DateTime> EndTime { get; set; }
[Key]
public long UID { get; set; }
public string Site { get; set; }
public string VendId { get; set; }
public Nullable<System.DateTime> RecvTime { get; set; }
public Nullable<decimal> ReviceQty { get; set; }
public int? State { get; set; }
public string ProjectId { get; set; }
[NotMapped]
public Nullable<System.DateTime> ShipTime { get; set; }
[NotMapped]
public string CreateUser { get; set; }
public string Buyer { get; set; }
[NotMapped]
public DateTime? RecvBeginTime { get; set; }
[NotMapped]
public DateTime? RecvEndTime { get; set; }
[NotMapped]
public string State_Desc { get; set; }
}
}