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.
33 lines
1.2 KiB
33 lines
1.2 KiB
namespace CK.SCP.Models.ScpEntity
|
|
{
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
[Serializable]
|
|
public partial class V_TB_REEEE
|
|
{
|
|
[Key]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
|
public long UID { get; set; }
|
|
public string PoBillNum { get; set; }
|
|
[StringLength(50)]
|
|
public string PartCode { get; set; }
|
|
public string DockCode { get; set; }
|
|
public decimal Qty { get; set; }
|
|
|
|
public string VendId { get; set; }
|
|
public DateTime? CreateTime { get; set; }
|
|
public string VendName { get; set; }
|
|
public string PartDesc2 { get; set; }
|
|
public string CreateUser { get; set; }
|
|
public string PartGroup { get; set; }
|
|
public string Describe { get; set; }
|
|
public string Buyer { get; set; }
|
|
//public string Extend2 { get; set; }
|
|
[NotMapped]
|
|
public Nullable<System.DateTime> ReceiveTimeBegin { get; set; }
|
|
[NotMapped]
|
|
public Nullable<System.DateTime> ReceiveTimeEnd { get; set; }
|
|
}
|
|
}
|