30 lines
883 B
C#
30 lines
883 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace WX.CRM.Model.Entity
|
|
{
|
|
public class QC_USERCHECK_EXTEND
|
|
{
|
|
[NotMapped]
|
|
public decimal EID { get; set; }
|
|
[NotMapped]
|
|
public string USERNAME { 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 Nullable<DateTime> QUALITYTIME { get; set; }
|
|
[NotMapped]
|
|
public Nullable<decimal> QUALITYSTATUS { get; set; }
|
|
[NotMapped]
|
|
public string QUALITYMEMO { get; set; }
|
|
[NotMapped]
|
|
public string QUALITYADVISE { get; set; }
|
|
}
|
|
}
|