using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace New_College.Model.Models { /// /// /// public class QuestionNaire : EntityModel { /// /// /// [SugarColumn(IsNullable = false, IsPrimaryKey = true, IsIdentity = true)] public int Id { get; set; } /// /// 学校名称 /// [SugarColumn(Length = int.MaxValue)] public string infoList { get; set; } } }