namespace wcftest.orm
|
{
|
using System;
|
using System.Collections.Generic;
|
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations.Schema;
|
using System.Data.Entity.Spatial;
|
|
[Table("__Base_DriveInfo_WillDel")]
|
public partial class C__Base_DriveInfo_WillDel
|
{
|
[Key]
|
public int Drive_Id { get; set; }
|
|
[StringLength(50)]
|
public string DriveName { get; set; }
|
|
[StringLength(50)]
|
public string IDCard { get; set; }
|
|
[StringLength(50)]
|
public string Sex { get; set; }
|
|
[StringLength(50)]
|
public string Nationality { get; set; }
|
|
[StringLength(50)]
|
public string Address { get; set; }
|
|
public DateTime? BirthDate { get; set; }
|
|
public DateTime? LicenseDate { get; set; }
|
|
[StringLength(50)]
|
public string LicenseType { get; set; }
|
|
[StringLength(150)]
|
public string SignOrganization { get; set; }
|
|
public DateTime? ValidDate { get; set; }
|
|
[StringLength(50)]
|
public string FileNo { get; set; }
|
|
public DateTime? NewDriverDate { get; set; }
|
|
[StringLength(150)]
|
public string DriverType { get; set; }
|
|
public string Remark { get; set; }
|
|
public int? CreateID { get; set; }
|
|
[StringLength(50)]
|
public string Creator { get; set; }
|
|
public DateTime? CreateDate { get; set; }
|
|
public int? ModifyID { get; set; }
|
|
[StringLength(50)]
|
public string Modifier { get; set; }
|
|
[StringLength(50)]
|
public string ModifyDate { get; set; }
|
|
[StringLength(50)]
|
public string Auditor { get; set; }
|
|
public byte? Auditing { get; set; }
|
|
public DateTime? AuditDate { get; set; }
|
|
public string AuditRemark { get; set; }
|
|
public int? DriveStatusID { get; set; }
|
|
[StringLength(50)]
|
public string DriveStatusText { get; set; }
|
|
[StringLength(50)]
|
public string DriverPhone { get; set; }
|
|
public int? Consignor_Id { get; set; }
|
|
[StringLength(50)]
|
public string ConsignorCode { get; set; }
|
|
[StringLength(150)]
|
public string ConsignorName { get; set; }
|
|
public int? PlatUser_Id { get; set; }
|
|
[StringLength(50)]
|
public string PlatUserCode { get; set; }
|
|
[StringLength(50)]
|
public string PlatUserName { get; set; }
|
|
[StringLength(50)]
|
public string PlatCorpName { get; set; }
|
|
public int? UserProduct_Id { get; set; }
|
|
[StringLength(50)]
|
public string UserProductCode { get; set; }
|
|
[StringLength(100)]
|
public string UserProductAlias { get; set; }
|
|
public string ExpandFields { get; set; }
|
}
|
}
|