using System; using SqlSugar; using System.ComponentModel; using GDZZ.Core.Entity; namespace GDZZ.Application.Entity { /// /// 公司属性 /// [SugarTable("mini_company")] [Description("公司属性")] public class Company : DEntityBase { /// /// 公司Logo /// public string logo { get; set; } /// /// 公司简介 /// public string Info { get; set; } /// /// 公司名称 /// public string Name { get; set; } /// /// 公司详情图片 /// public string CompanyInfoUrl { get; set; } /// /// 审核状态 /// public CompanyEnum ApprovalStatus { get; set; } /// /// 审核人 /// public string? Approver { get; set; } /// /// 审核时间 /// public DateTime? ApprovalTime { get; set; } /// /// 公司地址 /// public string Address { get; set; } /// /// 执照图片地址 /// public string? LicenseUrl { get; set; } /// /// 机构代码 /// public string Code { get; set; } /// /// 企业电话 /// public string Phone { get; set; } /// /// 备注 /// public string Remark { get; set; } } }