32 lines
714 B
C#
32 lines
714 B
C#
|
using Api.Framework.Tools;
|
|||
|
using Microsoft.JScript;
|
|||
|
using SqlSugar;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace EncourageUser.Entitys
|
|||
|
{
|
|||
|
public class fl_plugin_encourage_user_messs : base_model
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 说明
|
|||
|
/// </summary>
|
|||
|
public string note { get; set; }
|
|||
|
|
|||
|
private string _mess;
|
|||
|
/// <summary>
|
|||
|
/// 发送的正文
|
|||
|
/// </summary>
|
|||
|
[SugarColumn(ColumnDataType = "text")]
|
|||
|
public string mess
|
|||
|
{
|
|||
|
get { return GlobalObject.unescape(_mess); }
|
|||
|
set { _mess = GlobalObject.escape(value); }
|
|||
|
}
|
|||
|
|
|||
|
}
|
|||
|
}
|