NewGaoKaoApi/New_College.Model/Models/D_Universityimg.cs

22 lines
558 B
C#

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