using System;
namespace GDZZ.Application
{
///
/// 租户系统配置输出参数
///
public class SysTConfigOutput
{
///
/// 主键Id
///
public long Id { get; set; }
///
/// 租户Id
///
public long TenantId { get; set; }
///
/// 招聘费用
///
public int PushFee { get; set; }
///
/// 求职联系费用
///
public int JobFee { get; set; }
}
}