23 lines
535 B
C#
23 lines
535 B
C#
using Api.Framework.Tools;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MessageSupervises.Entitys
|
|
{
|
|
public class fl_plugin_messagesupervises_messinfo : base_model
|
|
{
|
|
/// <summary>
|
|
/// 用户对象id
|
|
/// </summary>
|
|
public long member_id { get; set; }
|
|
/// <summary>
|
|
/// 消息接受时间
|
|
/// </summary>
|
|
public DateTime send_time { get; set; }
|
|
}
|
|
}
|