using System;
using SqlSugar;
using System.ComponentModel;
using GDZZ.Core.Entity;
namespace GDZZ.Application.Entity
{
///
/// 招聘公司
///
[SugarTable("company")]
[Description("招聘公司")]
public class Company : DEntityBase
{
///
/// 租户Id
///
public long TenantId { get; set; }
///
/// 地址
///
public string Address { get; set; }
///
/// 联系电话
///
public string Phone { get; set; }
///
/// 公司详情
///
public string Profile { get; set; }
}
}