using SqlSugar;
using System;
using System.Collections.Generic;
using System.Text;
namespace New_College.Model.Models
{
///
/// 素材库
///
public class N_MaterialLibrary : RootEntity
{
public string Title { get; set; }
///
/// 素材封面
///
public string Src { get; set; }
///
/// 素材内容
///
[SugarColumn(ColumnDataType = "longtext", Length = int.MaxValue, IsNullable = true)]
public string Content { get; set; }
}
}