59 lines
1.4 KiB
C#
59 lines
1.4 KiB
C#
namespace WX.CRM.Model.Entity
|
|
{
|
|
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
[Table("UPDEV.QC_USERSCOREDETAIL")]
|
|
public partial class QC_USERSCOREDETAIL
|
|
{
|
|
[Key]
|
|
public decimal PKID { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(6)]
|
|
public string DEPTCODE { get; set; }
|
|
|
|
public decimal INNERUSERID { get; set; }
|
|
|
|
public decimal INNERUSEREID { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(50)]
|
|
public string INNERUSERNAME { get; set; }
|
|
|
|
public decimal INNERUSERGROUPID { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(50)]
|
|
public string INNERUSERGROUPNAME { get; set; }
|
|
|
|
public decimal STATUS { get; set; }
|
|
|
|
public decimal SCORENO { get; set; }
|
|
|
|
public decimal SCOREDIR { get; set; }
|
|
|
|
[StringLength(200)]
|
|
public string SCOREDESC { get; set; }
|
|
|
|
public decimal USERSCORE { get; set; }
|
|
|
|
public decimal USERSCOREAMT { get; set; }
|
|
|
|
public decimal CREATEUSER { get; set; }
|
|
|
|
public DateTime CTIME { get; set; }
|
|
|
|
public DateTime? UTIME { get; set; }
|
|
|
|
[StringLength(200)]
|
|
public string COMMENTS { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string TRADECODE { get; set; }
|
|
|
|
public DateTime? SCORETIME { get; set; }
|
|
}
|
|
}
|