65 lines
1.5 KiB
C#
65 lines
1.5 KiB
C#
namespace WX.CRM.Model.Entity
|
|
{
|
|
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
[Table("UPDEV.QC_USERTVCHECK")]
|
|
public partial class QC_USERTVCHECK
|
|
{
|
|
[Key]
|
|
public decimal MASTERID { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(20)]
|
|
public string DEPTCODE { get; set; }
|
|
|
|
public decimal GROUPID { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(20)]
|
|
public string GROUPNAME { get; set; }
|
|
|
|
public decimal? USERID { get; set; }
|
|
|
|
public decimal? EID { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(50)]
|
|
public string SALENAME { get; set; }
|
|
|
|
public decimal? QUALITYTYPE { get; set; }
|
|
|
|
public decimal TVID { get; set; }
|
|
|
|
public DateTime? TVTIME { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string USERNAME { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(60)]
|
|
public string FILENAME { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string 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; }
|
|
}
|
|
}
|