using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Model { /// /// 推送项目实体类 /// public class BaseProjectItem { /// /// 主键 /// public string ProjectId { get; set; } /// /// 主数据项目数据id /// public string MasterSysId { get; set; } /// /// 分公司单位 /// public string UnitId { get; set; } /// /// 项目编码 /// public string ProjectCode { get; set; } /// /// 项目名称 /// public string ProjectName { get; set; } /// /// /// public DateTime? StartDate { get; set; } /// /// /// public DateTime? EndDate { get; set; } /// /// /// public string ProjectAddress { get; set; } /// /// /// public string ShortName { get; set; } /// /// /// public string ProjectType { get; set; } /// /// /// public string PostCode { get; set; } /// /// /// public string Remark { get; set; } /// /// /// public string ProjectState { get; set; } /// /// /// public string ContractNo { get; set; } /// /// /// public string WorkRange { get; set; } /// /// /// public decimal? Duration { get; set; } /// /// /// public bool? IsUpTotalMonth { get; set; } /// /// /// public string ProjectMainPerson { get; set; } /// /// /// public string ProjectLiaisonPerson { get; set; } /// /// /// public bool? IsForeign { get; set; } /// /// /// public string FromProjectId { get; set; } /// /// /// public string MapCoordinates { get; set; } /// /// /// public decimal? ProjectMoney { get; set; } /// /// /// public decimal? ConstructionMoney { get; set; } /// /// /// public string Country { get; set; } /// /// /// public string Province { get; set; } /// /// /// public string City { get; set; } /// /// /// public string Telephone { get; set; } /// /// /// public string EnglishRemark { get; set; } /// /// /// public bool? IsFace { get; set; } /// /// /// public string ProjectState2 { get; set; } /// /// /// public decimal? Progress { get; set; } /// /// /// public string MonitorPW { get; set; } /// /// /// public string MonitorId { get; set; } /// /// /// public string ProjectAttribute { get; set; } /// /// 集团公司Base_Unit表中的UnitId /// public string SourceUnitId { get; set; } /// /// 社会统一信用码 /// public string CollCropCode { get; set; } } }