39 lines
1.1 KiB
C#
39 lines
1.1 KiB
C#
using System;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace WX.CRM.Model.Entity
|
|
{
|
|
public class QC_USERTVCHECK_EXTEND
|
|
{
|
|
[NotMapped]
|
|
public decimal EID { get; set; }
|
|
[NotMapped]
|
|
public string NAME { get; set; }
|
|
[NotMapped]
|
|
public string GROUPNAME { get; set; }
|
|
[NotMapped]
|
|
public Nullable<DateTime> ENTRYDATE { get; set; }
|
|
[NotMapped]
|
|
public Nullable<DateTime> POSITIVETIME { get; set; }
|
|
[NotMapped]
|
|
public Nullable<DateTime> DISMISSTIME { get; set; }
|
|
[NotMapped]
|
|
public decimal TVID { get; set; }
|
|
[NotMapped]
|
|
public Nullable<DateTime> TVTIME { get; set; }
|
|
[NotMapped]
|
|
public string USERNAME { get; set; }
|
|
[NotMapped]
|
|
public string FILENAME { get; set; }
|
|
[NotMapped]
|
|
public Nullable<DateTime> QUALITYTIME { get; set; }
|
|
[NotMapped]
|
|
public Nullable<decimal> QUALITYSTATUS { get; set; }
|
|
[NotMapped]
|
|
public string QUALITYMEMO { get; set; }
|
|
[NotMapped]
|
|
public string QUALITYADVISE { get; set; }
|
|
|
|
}
|
|
}
|