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.
 
 
 
 
 

52 lines
1.5 KiB

using System;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace CK.SCP.Models.ScpEntity
{
[Serializable]
public partial class V_TB_INCOMOLETE_DETAIL
{
[Key]
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public long UID { get; set; }
public string PoBillNum { get; set; }
[StringLength(50)]
public string AskBillNum { get; set; }
[StringLength(50)]
public string PartCode { get; set; }
public string PartDesc1 { get; set; }
public int PoLine { get; set; }
public decimal AskQty { get; set; }
public decimal rec { get; set; }
public decimal arr { get; set; }
public decimal askdelete { get; set; }
public decimal num { get; set; } //未发货数量
[NotMapped]
public DateTime? BeginTime { get; set; }
public DateTime? EndTime { get; set; }
public DateTime? CreateTime { get; set; }
public int ValidityDays { get; set; }
public string Buyer { get; set; }
public string VendName { get; set; }
public string VendId { get; set; }
[NotMapped]
public DateTime? BeginTimeEnd { get; set; }
[NotMapped]
public DateTime? BeginTimeStart { get; set; }
[NotMapped]
public DateTime? EndTimeEnd { get; set; }
[NotMapped]
public DateTime? EndTimeStart { get; set; }
public decimal Price { get; set; }
}
}