25 lines
580 B
C#
25 lines
580 B
C#
using New_College.Common;
|
|
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace New_College.Model.Models
|
|
{
|
|
public class N_AgentCourse : RootEntity
|
|
{
|
|
public string Title { get; set; }
|
|
|
|
public CardTypeEnum cardType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 产品教程,赚钱攻略,操作指南
|
|
/// </summary>
|
|
public int Type { get; set; }
|
|
|
|
[SugarColumn(ColumnDataType = "longtext", Length = int.MaxValue, IsNullable = true)]
|
|
public string Content { get; set; }
|
|
|
|
}
|
|
}
|