30 lines
672 B
C#
30 lines
672 B
C#
using Api.Framework.Tools;
|
|
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Api.Framework.Model
|
|
{
|
|
/// <summary>
|
|
/// 抖音ck
|
|
/// </summary>
|
|
public class fl_dy_ck : base_model
|
|
{
|
|
//[SugarColumn(Length = 1000)]
|
|
public string cpsname { get; set; }
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
//[SugarColumn(Length = 1000)]
|
|
public string chname { get; set; }
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(ColumnDataType = "text")]
|
|
public string ckdic { get; set; }
|
|
}
|
|
}
|