2026-03-09 19:10:40 +08:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Model
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 质量计量器具同步数据容器
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public class InspectionMachineSyncData
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
2026-03-20 17:05:24 +08:00
|
|
|
|
/// 分包单位社会统一信用码
|
2026-03-09 19:10:40 +08:00
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string CollCropCode { get; set; }
|
|
|
|
|
|
/// <summary>
|
2026-03-20 17:05:24 +08:00
|
|
|
|
/// 分包单位Id
|
2026-03-09 19:10:40 +08:00
|
|
|
|
/// </summary>
|
2026-03-20 17:05:24 +08:00
|
|
|
|
public string UnitId { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 分包单位名称
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string UnitName { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 分包单位简称
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string ShortUnitName { get; set; }
|
2026-03-09 19:10:40 +08:00
|
|
|
|
/// <summary>
|
2026-03-20 17:05:24 +08:00
|
|
|
|
/// 分包单位域名
|
2026-03-09 19:10:40 +08:00
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string UnitDomain { get; set; }
|
2026-03-20 17:05:24 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 总包单位Id
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string SubjectUnit { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 总包单位项目Id
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string SubjectProject { get; set; }
|
2026-03-09 19:10:40 +08:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 质量计量器具数据列表
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public List<InspectionMachineSyncItem> Items { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 质量计量器具数据项
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public class InspectionMachineSyncItem
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 主键
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string InspectionMachineId { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 计量器具编码
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string InspectionMachineCode { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 计量器具名称
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string InspectionMachineName { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 规格型号
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string SpecificationModel { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 数量
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public int? UnitsCount { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 类别
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string SType { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 检验类型
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string InspectionType { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 检验日期
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public DateTime? InspectionDate { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 下次检验日期
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public DateTime? NextTestDate { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 检验周期
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string TestCycle { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 是否校验合格
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public bool? IsCheckOK { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 是否在校验期内
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public bool? IsVerification { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 审批状态
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string Status { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 是否在场
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public bool? IsOnSite { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 离场日期
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public DateTime? LeaveDate { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 单位ID
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string UnitId { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 单位名称
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string UnitName { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 专业ID
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string CNProfessionalId { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 专业名称
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string CNProfessionalName { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 编制人ID
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string CompileMan { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 编制人姓名
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string CompileManName { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 编制日期
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public DateTime? CompileDate { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 附件URL
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string AttachUrl { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 项目ID
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string ProjectId { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 数据来源(1-同步数据)
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string DataSource { get; set; }
|
2026-03-20 17:05:24 +08:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 附件
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string AttachFileId { get; set; }
|
|
|
|
|
|
public string ToKeyId { get; set; }
|
|
|
|
|
|
public string AttachSource { get; set; }
|
|
|
|
|
|
//public string AttachUrl { get; set; }
|
2026-03-09 19:10:40 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|