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