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.
 
 
 
 
 

39 lines
1.2 KiB

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace CK.SCP.Models.ScpEntity
{
public partial class V_ARRIVE_PO_REPORT
{
[Key ]
[Column(Order = 1)]
[StringLength(50)]
public string PoBillNum { get; set; }
[Key]
[Column(Order = 2)]
public int PoLine { get; set; }
[Key]
[Column(Order = 3)]
[StringLength(50)]
public string PartCode { get; set; }
[StringLength(50)]
public string PartDesc1 { get; set; }
[StringLength(50)]
public string VendName { get; set; }
public decimal PlanQty { get; set; }
public DateTime BeginTime { get; set; }
public decimal CanQty { get; set; }
public decimal AskQty { get; set; }
public decimal AsnQty { get; set; }
public decimal OnRoadQty { get; set; }
public decimal ArriveQty { get; set; }
[Key]
[Column(Order = 4)]
public DateTime ShipTime { get; set; }
[NotMapped]
public DateTime? BeginTimeEnd { get; set; }
[NotMapped]
public DateTime? ShipTimeEnd { get; set; }
}
}