using System;
namespace GDZZ.Application
{
///
/// 公司属性输出参数
///
public class CompanyOutput
{
///
/// 主键Id
///
public long Id { get; set; }
///
/// 租户Id
///
public long TenantId { get; set; }
///
/// 公司Logo
///
public string logo { get; set; }
///
/// 公司简介
///
public string Info { get; set; }
}
}