126 lines
2.8 KiB
C#
126 lines
2.8 KiB
C#
|
using SqlSugar;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace BackupAndImport.Entitys.lieke
|
|||
|
{
|
|||
|
///<summary>
|
|||
|
///
|
|||
|
///</summary>
|
|||
|
[SugarTable("GroupInvite")]
|
|||
|
public partial class GroupInvite
|
|||
|
{
|
|||
|
public GroupInvite()
|
|||
|
{
|
|||
|
|
|||
|
|
|||
|
}
|
|||
|
/// <summary>
|
|||
|
/// Desc:
|
|||
|
/// Default:
|
|||
|
/// Nullable:False
|
|||
|
/// </summary>
|
|||
|
[SugarColumn(IsPrimaryKey = true)]
|
|||
|
public int id { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Desc:
|
|||
|
/// Default:
|
|||
|
/// Nullable:False
|
|||
|
/// </summary>
|
|||
|
public string gid { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Desc:
|
|||
|
/// Default:
|
|||
|
/// Nullable:False
|
|||
|
/// </summary>
|
|||
|
public string inviterLkid { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Desc:
|
|||
|
/// Default:
|
|||
|
/// Nullable:False
|
|||
|
/// </summary>
|
|||
|
public string inviteeLkid { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Desc:
|
|||
|
/// Default:
|
|||
|
/// Nullable:False
|
|||
|
/// </summary>
|
|||
|
public string inviterNick { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Desc:
|
|||
|
/// Default:
|
|||
|
/// Nullable:False
|
|||
|
/// </summary>
|
|||
|
public string inviteeNick { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Desc:
|
|||
|
/// Default:
|
|||
|
/// Nullable:True
|
|||
|
/// </summary>
|
|||
|
public int? status { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Desc:
|
|||
|
/// Default:
|
|||
|
/// Nullable:True
|
|||
|
/// </summary>
|
|||
|
public int? createTime { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Desc:
|
|||
|
/// Default:
|
|||
|
/// Nullable:True
|
|||
|
/// </summary>
|
|||
|
public int? updateTime { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Desc:
|
|||
|
/// Default:
|
|||
|
/// Nullable:False
|
|||
|
/// </summary>
|
|||
|
public string log { get; set; }
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
//public class GroupInvite
|
|||
|
//{
|
|||
|
// public int id { get; set; }
|
|||
|
|
|||
|
// public string gid { get; set; }
|
|||
|
// /// <summary>
|
|||
|
// /// 上级微信id
|
|||
|
// /// </summary>
|
|||
|
// public string inviterLkid { get; set; }
|
|||
|
// /// <summary>
|
|||
|
// /// 上级微信昵称
|
|||
|
// /// </summary>
|
|||
|
// public string inviterNick { get; set; }
|
|||
|
// /// <summary>
|
|||
|
// /// 下级微信id
|
|||
|
// /// </summary>
|
|||
|
// public string inviteeLkid { get; set; }
|
|||
|
// /// <summary>
|
|||
|
// /// 下级微信昵称
|
|||
|
// /// </summary>
|
|||
|
// public string inviteeNick { get; set; }
|
|||
|
|
|||
|
// public int status { get; set; }
|
|||
|
|
|||
|
// public int createTime { get; set; }
|
|||
|
|
|||
|
// public int updateTime { get; set; }
|
|||
|
|
|||
|
// public string log { get; set; }
|
|||
|
|
|||
|
//}
|
|||
|
}
|