35 lines
828 B
C#
35 lines
828 B
C#
namespace WX.CRM.Model.Entity
|
|
{
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
[Table("UPDEV.QC_BASEUSERSCORE")]
|
|
public partial class QC_BASEUSERSCORE
|
|
{
|
|
[Key]
|
|
public decimal PKID { 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 SCORELEVEL { get; set; }
|
|
|
|
public decimal GROUPERSCORE { get; set; }
|
|
|
|
public decimal GROUPERSCOREAMT { get; set; }
|
|
|
|
public decimal ISSHOW { get; set; }
|
|
|
|
[StringLength(200)]
|
|
public string COMMENTS { get; set; }
|
|
}
|
|
}
|