using SqlSugar;
using System;
using System.Collections.Generic;
using System.Text;
namespace New_College.Model.Models
{
public class D_Universityimg : EntityModel
{
///
/// 院校Id
///
[SugarColumn(IsNullable = true)]
public int UniversityId { get; set; }
///
/// 院校图片列表地址
///
[SugarColumn(ColumnDataType = "longtext", Length = int.MaxValue, IsNullable = true)]
public string ImgList { get; set; }
}
}