73 lines
1.7 KiB
C#
73 lines
1.7 KiB
C#
namespace WX.CRM.Model.Entity
|
|
{
|
|
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
[Table("UPDEV.QC_GROUPERSCOREDETAIL")]
|
|
public partial class QC_GROUPERSCOREDETAIL
|
|
{
|
|
[Key]
|
|
public decimal PKID { get; set; }
|
|
|
|
public decimal USERSCOREID { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(6)]
|
|
public string DEPTCODE { get; set; }
|
|
|
|
public decimal GROUPERID { get; set; }
|
|
|
|
public decimal GROUPEREID { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(50)]
|
|
public string GROUPERNAME { get; set; }
|
|
|
|
public decimal INNERUSERGROUPID { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(50)]
|
|
public string INNERUSERGROUPNAME { get; set; }
|
|
|
|
public decimal INNERUSERID { get; set; }
|
|
|
|
public decimal INNERUSEREID { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(50)]
|
|
public string INNERUSERNAME { 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 GROUPERSCORE { get; set; }
|
|
|
|
public decimal GROUPERSCOREAMT { 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; }
|
|
}
|
|
}
|