using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace CMS.Models.Source { [SugarTable("exscore")] public class SourceExcore { [SugarColumn(IsNullable = false, IsPrimaryKey = true)] public int ExNO { get; set; } public int MemberID { get; set; } public float Score { get; set; } public string Judgment { get; set; } public short AnsNum { get; set; } public short TrueNum { get; set; } public float TrueRate { get; set; } public short SpendTime { get; set; } public int GroupNO { get; set; } } }