CNCEC_SUBQHSE_WUHUAN/SGGL/Model/DataShare/LicenseManagerData.cs

95 lines
3.0 KiB
C#

using System;
using System.Collections.Generic;
namespace Model
{
/// <summary>
/// 作业票定稿接收数据
/// </summary>
public class LicenseManagerData
{
/// <summary>
/// 分包单位社会统一信用码
/// </summary>
public string CollCropCode { get; set; }
/// <summary>
/// 分包单位Id
/// </summary>
public string UnitId { get; set; }
/// <summary>
/// 分包单位名称
/// </summary>
public string UnitName { get; set; }
/// <summary>
/// 分包单位简称
/// </summary>
public string ShortUnitName { get; set; }
/// <summary>
/// 分包单位域名
/// </summary>
public string UnitDomain { get; set; }
/// <summary>
/// 总包单位Id
/// </summary>
public string SubjectUnit { get; set; }
/// <summary>
/// 总包单位项目Id
/// </summary>
public string SubjectProject { get; set; }
/// <summary>
/// 作业票定稿数据集合
/// </summary>
public List<LicenseManagerItem> Items { get; set; }
}
/// <summary>
/// 作业票定稿数据
/// </summary>
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; }
/// <summary>
/// 来源说明
/// </summary>
public string SourceDes { get; set; }
/// <summary>
/// 附件
/// </summary>
public string AttachFileId { get; set; }
public string ToKeyId { get; set; }
public string AttachSource { get; set; }
public string AttachUrl { get; set; }
/// <summary>
/// 关闭附件
/// </summary>
public string AttachFileId1 { get; set; }
public string ToKeyId1 { get; set; }
public string AttachSource1 { get; set; }
public string AttachUrl1 { get; set; }
}
}