using System; using System.Collections.Generic; namespace Model { /// /// 质量计量器具同步数据容器 /// public class InspectionMachineSyncData { /// /// 公司社会统一信用代码 /// public string CollCropCode { get; set; } /// /// 项目id /// public string ProjectId { get; set; } /// /// 分包单位程序访问地址 /// public string UnitDomain { get; set; } /// /// 质量计量器具数据列表 /// public List Items { get; set; } } /// /// 质量计量器具数据项 /// public class InspectionMachineSyncItem { /// /// 主键 /// public string InspectionMachineId { get; set; } /// /// 计量器具编码 /// public string InspectionMachineCode { get; set; } /// /// 计量器具名称 /// public string InspectionMachineName { get; set; } /// /// 规格型号 /// public string SpecificationModel { get; set; } /// /// 数量 /// public int? UnitsCount { get; set; } /// /// 类别 /// public string SType { get; set; } /// /// 检验类型 /// public string InspectionType { get; set; } /// /// 检验日期 /// public DateTime? InspectionDate { get; set; } /// /// 下次检验日期 /// public DateTime? NextTestDate { get; set; } /// /// 检验周期 /// public string TestCycle { get; set; } /// /// 是否校验合格 /// public bool? IsCheckOK { get; set; } /// /// 是否在校验期内 /// public bool? IsVerification { get; set; } /// /// 审批状态 /// public string Status { get; set; } /// /// 是否在场 /// public bool? IsOnSite { get; set; } /// /// 离场日期 /// public DateTime? LeaveDate { get; set; } /// /// 单位ID /// public string UnitId { get; set; } /// /// 单位名称 /// public string UnitName { get; set; } /// /// 专业ID /// public string CNProfessionalId { get; set; } /// /// 专业名称 /// public string CNProfessionalName { get; set; } /// /// 编制人ID /// public string CompileMan { get; set; } /// /// 编制人姓名 /// public string CompileManName { get; set; } /// /// 编制日期 /// public DateTime? CompileDate { get; set; } /// /// 附件URL /// public string AttachUrl { get; set; } /// /// 项目ID /// public string ProjectId { get; set; } /// /// 数据来源(1-同步数据) /// public string DataSource { get; set; } } }