TG.WXCRM.V4/Model/Entity/QC_USERCHECKDETAIL.cs

53 lines
1.2 KiB
C#

namespace WX.CRM.Model.Entity
{
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
[Table("UPDEV.QC_USERCHECKDETAIL")]
public partial class QC_USERCHECKDETAIL
{
[Key]
public decimal DETAILID { get; set; }
public decimal MASTERID { get; set; }
[Required]
[StringLength(6)]
public string DEPTCODE { get; set; }
public decimal GROUPID { get; set; }
[StringLength(50)]
public string GROUPNAME { get; set; }
public decimal USERID { get; set; }
public decimal EID { get; set; }
[StringLength(50)]
public string USERNAME { get; set; }
public decimal QUALITYTYPE { get; set; }
public decimal CHECKEID { get; set; }
public decimal QUALITYSTATUS { get; set; }
[StringLength(200)]
public string QUALITYMEMO { get; set; }
[StringLength(200)]
public string QUALITYRUMOR { get; set; }
[StringLength(200)]
public string QUALITYADVISE { get; set; }
public DateTime QUALITYTIME { get; set; }
public DateTime? CTIME { get; set; }
public DateTime? CHECKDATE { get; set; }
}
}