using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ZhongLianModel
{
///
/// 工程实体
///
[SugarTable("TPRZ_Project")]
public class ProjectDO
{
///
/// 编号
///
[SugarColumn(IsPrimaryKey = true, Length = 64)]
public string? Id { get; set; }
///
/// 编码
///
[SugarColumn(Length = 200, IsNullable = true)]
public string? Code { get; set; }
///
/// 公司编号
///
[SugarColumn(Length = 64, IsNullable = true)]
public string? CompanyId { get; set; }
///
/// 工程名称
///
[SugarColumn(Length = 200, IsNullable = true)]
public string? Name { get; set; }
///
/// 区域
///
[SugarColumn(Length = 60, IsNullable = true)]
public string? Area { get; set; }
///
/// 工地名称
///
[SugarColumn(Length = 200, IsNullable = true)]
public string? AddressName { get; set; }
///
/// 地址
///
[SugarColumn(Length = 500, IsNullable = true)]
public string? Address { get; set; }
///
/// 定位
///
[SugarColumn(Length = 20, IsNullable = true)]
public string? Location { get; set; }
///
/// 施工单位
///
[SugarColumn(Length = 200, IsNullable = true)]
public string? CU { get; set; }
///
/// 施工许可证
///
[SugarColumn(Length = 100, IsNullable = true)]
public string? CC { get; set; }
///
/// 监理单位
///
[SugarColumn(Length = 200, IsNullable = true)]
public string? SU { get; set; }
///
/// 项目经理
///
[SugarColumn(Length = 200, IsNullable = true)]
public string? PM { get; set; }
///
/// 项目经理联系方式
///
[SugarColumn(Length = 50, IsNullable = true)]
public string? PT { get; set; }
///
/// 现场负责人
///
[SugarColumn(Length = 200, IsNullable = true)]
public string? SM { get; set; }
///
/// 现场负责人联系方式
///
[SugarColumn(Length = 50, IsNullable = true)]
public string? ST { get; set; }
///
/// 资料员
///
[SugarColumn(Length = 200, IsNullable = true)]
public string? DR { get; set; }
///
/// 资料员联系方式
///
[SugarColumn(Length = 50, IsNullable = true)]
public string? DT { get; set; }
///
/// 工地财务
///
[SugarColumn(Length = 200, IsNullable = true)]
public string? FA { get; set; }
///
/// 工地财务联系方式
///
[SugarColumn(Length = 50, IsNullable = true)]
public string? FT { get; set; }
///
/// 监理
///
[SugarColumn(Length = 200, IsNullable = true)]
public string? SP { get; set; }
///
/// 监理联系方式
///
[SugarColumn(Length = 50, IsNullable = true)]
public string? SPT { get; set; }
///
/// 备注
///
[SugarColumn(Length = 500, IsNullable = true)]
public string? Remark { get; set; }
///
/// 创建日期
///
[SugarColumn(Length = 24, IsNullable = true)]
public string? CreateDate { get; set; }
///
/// 删除标识
///
[SugarColumn(Length = 1, IsNullable = true)]
public int? Deleted { get; set; }
///
/// 省份码
///
[SugarColumn(Length = 10,IsNullable = true)]
public string? ProvinceCode { get; set; }
///
/// 省份名
///
[SugarColumn(Length = 20, IsNullable = true)]
public string? ProvinceName { get; set; }
///
/// 市级码
///
[SugarColumn(Length = 10, IsNullable = true)]
public string? CityCode { get; set; }
///
/// 市级名
///
[SugarColumn(Length = 20, IsNullable = true)]
public string? CityName { get; set; }
///
/// 区域码
///
[SugarColumn(Length = 10, IsNullable = true)]
public string? AreaCode { get; set; }
///
/// 区域名
///
[SugarColumn(Length = 20, IsNullable = true)]
public string? AreaName { get; set; }
#region 业务字段
[SugarColumn(IsIgnore = true, IsNullable = true)]
public string? CompanyName { get; set; }
#endregion
}
}