28 lines
574 B
C#
28 lines
574 B
C#
|
using Api.Framework.Tools;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace 监听违规.Entitys
|
|||
|
{
|
|||
|
public class UserLists_db : base_model
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 昵称
|
|||
|
/// </summary>
|
|||
|
public string nick_name { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 微信id
|
|||
|
/// </summary>
|
|||
|
public string wxid { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 用户状态
|
|||
|
/// </summary>
|
|||
|
public UserType user_type { get; set; }
|
|||
|
}
|
|||
|
}
|