using System; namespace GDZZ.Application { /// /// 招聘公司输出参数 /// public class CompanyOutput { /// /// 主键Id /// public long Id { get; set; } /// /// 租户Id /// public long TenantId { get; set; } /// /// 地址 /// public string Address { get; set; } /// /// 联系电话 /// public string Phone { get; set; } /// /// 公司详情 /// public string Profile { get; set; } } }