using System; using System.Collections.Generic; namespace Model { /// /// 作业票定稿接收数据 /// public class LicenseManagerData { /// /// 分包单位社会统一信用码 /// public string CollCropCode { get; set; } /// /// 分包单位Id /// public string UnitId { get; set; } /// /// 分包单位名称 /// public string UnitName { get; set; } /// /// 分包单位简称 /// public string ShortUnitName { get; set; } /// /// 分包单位域名 /// public string UnitDomain { get; set; } /// /// 总包单位Id /// public string SubjectUnit { get; set; } /// /// 总包单位项目Id /// public string SubjectProject { get; set; } /// /// 作业票定稿数据集合 /// public List Items { get; set; } } /// /// 作业票定稿数据 /// public class LicenseManagerItem { public string ProjectId { get; set; } public string UnitId { get; set; } public string LicenseManagerId { get; set; } public string LicenseManagerCode { get; set; } public string LicenseManageName { get; set; } public string LicenseTypeId { get; set; } public string LicenseTypeCode { get; set; } public string LicenseTypeName { get; set; } public string LicenseManageContents { get; set; } public string CompileMan { get; set; } public string CompileManName { get; set; } public DateTime? CompileDate { get; set; } public string States { get; set; } public string WorkAreaId { get; set; } public string UnitWorkCode { get; set; } public string UnitWorkName { get; set; } public DateTime? StartDate { get; set; } public DateTime? EndDate { get; set; } public string ApplicantMan { get; set; } public string WorkStates { get; set; } public bool? IsHighRisk { get; set; } public string LicenseCodes { get; set; } /// /// 来源说明 /// public string SourceDes { get; set; } /// /// 附件 /// public string AttachFileId { get; set; } public string ToKeyId { get; set; } public string AttachSource { get; set; } public string AttachUrl { get; set; } /// /// 关闭附件 /// public string AttachFileId1 { get; set; } public string ToKeyId1 { get; set; } public string AttachSource1 { get; set; } public string AttachUrl1 { get; set; } } }