ComplianceServer/oldcode/Model/Entity/QC_USERCHECKMASTER.cs

34 lines
786 B
C#

namespace WX.CRM.Model.Entity
{
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
[Table("UPDEV.QC_USERCHECKMASTER")]
public partial class QC_USERCHECKMASTER
{
[Key]
public decimal MASTERID { get; set; }
[Required]
[StringLength(6)]
public string DEPTCODE { get; set; }
public decimal USERID { get; set; }
public decimal EID { get; set; }
public decimal QUALITYTYPE { get; set; }
public decimal QUALITYSTATUS { get; set; }
public decimal CHECKEID { get; set; }
public DateTime QUALITYTIME { get; set; }
public DateTime CTIME { get; set; }
public DateTime CHECKDATE { get; set; }
}
}