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
812 B
27 lines
812 B
using System;
|
|
using SqlSugar;
|
|
using System.ComponentModel;
|
|
using GDZZ.Core.Entity;
|
|
namespace GDZZ.Application.Entity
|
|
{
|
|
/// <summary>
|
|
/// 系统配置
|
|
/// </summary>
|
|
[SugarTable("sys_T_config")]
|
|
[Description("系统配置")]
|
|
public class SysTConfig : DEntityBase
|
|
{
|
|
/// <summary>
|
|
/// 租户Id
|
|
/// </summary>
|
|
public long TenantId { get; set; }
|
|
/// <summary>
|
|
/// 招聘费用
|
|
/// </summary>
|
|
public int PushFee { get; set; }
|
|
/// <summary>
|
|
/// 求职联系费用
|
|
/// </summary>
|
|
public int JobFee { get; set; }
|
|
}
|
|
} |