using SqlSugar;
namespace ZhongLianModel
{
///
/// 公司实体类
///
[SugarTable("CRM_Company_zl")]
public class CompanyDO
{
///
/// 唯一键
///
[SugarColumn(IsPrimaryKey = true, Length = 64)]
public string? Id { get; set; }
///
/// 编号
///
[SugarColumn(Length = 50, IsNullable = true)]
public string? Code { get; set; }
[SugarColumn(IsIgnore = true, IsNullable = true)]
public string? System { get; set; }
///
/// 名称
///
[SugarColumn(Length = 250, IsNullable = true)]
public string? Name { get; set; }
///
/// 法人代表
///
[SugarColumn(Length = 50, IsNullable = true)]
public string? LegalPerson { get; set; }
///
/// 社会信用代码
///
[SugarColumn(Length = 50, IsNullable = true)]
public string? SCCode { get; set; }
///
/// 人员规模
///
[SugarColumn(Length = 60, IsNullable = true)]
public string? Scale { get; set; }
///
/// 公司性质
///
[SugarColumn(Length = 200, IsNullable = true)]
public string? Character { get; set; }
///
/// 地址
///
[SugarColumn(Length = 500, IsNullable = true)]
public string? Address { get; set; }
///
/// 定位
///
[SugarColumn(Length = 20, IsNullable = true)]
public string? Location { get; set; }
///
/// 联系电话
///
[SugarColumn(Length = 60, IsNullable = true)]
public string? Tel { get; set; }
///
/// 简介
///
[SugarColumn(Length = 500,IsNullable = true)]
public string? BriefIntroduction { get; set; }
///
/// 创建日期
///
[SugarColumn(Length = 24, IsNullable = true)]
public string? CreateDate { get; set; }
///
/// 删除标识
///
[SugarColumn(Length = 1, IsNullable = true)]
public int? Deleted { get; set; }
}
}