using System; using SqlSugar; using System.ComponentModel; using GDZZ.Core.Entity; namespace GDZZ.Application.Entity { /// /// 系统配置 /// [SugarTable("sys_T_config")] [Description("系统配置")] public class SysTConfig : DEntityBase { /// /// 租户Id /// public long TenantId { get; set; } /// /// 招聘费用 /// public int PushFee { get; set; } /// /// 求职联系费用 /// public int JobFee { get; set; } } }