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.

23 lines
655 B

using System;
using SqlSugar;
using System.ComponentModel;
using GDZZ.Core.Entity;
namespace GDZZ.Application.Entity
{
/// <summary>
/// 邀请码表
/// </summary>
[SugarTable("InvitationCode")]
[Description("邀请码表")]
public class InvitationCode : DEntityBase
{
/// <summary>
/// 企业ID
/// </summary>
public long EnterpriseID { get; set; }
/// <summary>
/// 邀请码
/// </summary>
public long InviteCode { get; set; }
}
}