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.

27 lines
837 B

using System;
using SqlSugar;
using System.ComponentModel;
using GDZZ.Core.Entity;
namespace GDZZ.Application.Entity
{
/// <summary>
/// 邀请用户表
/// </summary>
[SugarTable("Invite_user_pos")]
[Description("邀请用户表")]
public class InviteUserPos : PrimaryKeyEntity
{
/// <summary>
/// 邀请码ID
/// </summary>
public long InviteID { get; set; }
/// <summary>
/// 被邀请用户ID
/// </summary>
public long UserID { get; set; }
/// <summary>
/// 邀请人ID
/// </summary>
public long InviteUserID { get; set; }
}
}