You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.1 KiB
36 lines
1.1 KiB
using System;
|
|
using SqlSugar;
|
|
using System.ComponentModel;
|
|
using GDZZ.Core.Entity;
|
|
namespace GDZZ.Application.Entity
|
|
{
|
|
/// <summary>
|
|
/// 邀请用户表
|
|
/// </summary>
|
|
[SugarTable("mini_Invite_user_pos")]
|
|
[Description("邀请用户表")]
|
|
public class InviteUserPos
|
|
{
|
|
|
|
/// <summary>
|
|
/// 主键
|
|
/// </summary>
|
|
public long Id { get; set; }
|
|
/// <summary>
|
|
/// 邀请码ID
|
|
/// </summary>
|
|
public long InviteID { get; set; }
|
|
/// <summary>
|
|
/// 被邀请用户ID
|
|
/// </summary>
|
|
public long UserID { get; set; }
|
|
/// <summary>
|
|
/// 邀请人ID
|
|
/// </summary>
|
|
public long InviteUserID { get; set; }
|
|
/// <summary>
|
|
/// 创建时间
|
|
/// </summary>
|
|
public DateTime CreatedTime { get; set; }
|
|
}
|
|
} |