32 lines
811 B
C#
32 lines
811 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 Weixin.AccurateCircle.Entitys
|
|||
|
{
|
|||
|
public class fl_plugin_accuratecircle_dataInfos : base_model
|
|||
|
{
|
|||
|
public DateTime Sendtime { get; set; }
|
|||
|
public string Content { get; set; }
|
|||
|
public string Comment { get; set; }
|
|||
|
public string AdditionalPic { get; set; }
|
|||
|
|
|||
|
[SugarColumn(ColumnDataType = "Text")]
|
|||
|
public string Data { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 发送状态,是否发送过
|
|||
|
/// </summary>
|
|||
|
public StateType state { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 采集的日期
|
|||
|
/// </summary>
|
|||
|
public DateTime cur_time { get; set; }
|
|||
|
}
|
|||
|
}
|