using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Admin.NET.Core { [SugarTable("bus_customemap_filereport", "用户报告")] public class BusCustomeMapReports: DEntitySortBase { /// /// /// [SugarColumn(ColumnDescription = "学生Id")] public Guid StudentId { get; set; } /// /// /// [SugarColumn(ColumnDescription = "量表类型")] public int ScType { get; set; } /// /// 文件地址 /// [SugarColumn(ColumnDescription = "量表地址", Length = 600)] public string FileUrl { get; set; } } }