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