2026-03-09 19:10:40 +08:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Model
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 质量会议同步数据容器
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public class CqmsMeetingSyncData
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <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; }
|
2026-03-09 19:10:40 +08:00
|
|
|
|
/// <summary>
|
2026-03-20 17:05:24 +08:00
|
|
|
|
/// 分包单位名称
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string UnitName { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 分包单位简称
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string ShortUnitName { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 分包单位域名
|
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<CqmsMeetingSyncItem> Items { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 质量会议数据项
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public class CqmsMeetingSyncItem
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 主键
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string MeetingId { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 会议编码
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string MeetingCode { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 会议名称
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string MeetingName { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 项目ID
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string ProjectId { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 单位ID
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string UnitId { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 单位名称
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string UnitName { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 会议日期
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public DateTime? MeetingDate { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 会议时长
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public decimal? MeetingHours { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 会议地点
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string MeetingPlace { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 主持人ID
|
|
|
|
|
|
/// </summary>
|
2026-03-20 17:05:24 +08:00
|
|
|
|
public string MeetingHostManId { get; set; }
|
2026-03-09 19:10:40 +08:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 主持人姓名
|
|
|
|
|
|
/// </summary>
|
2026-03-20 17:05:24 +08:00
|
|
|
|
public string MeetingHostMan { get; set; }
|
2026-03-09 19:10:40 +08:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 其他主持人
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string MeetingHostManOther { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 参会人数
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public int? AttentPersonNum { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 参会人员(姓名列表,逗号分隔)
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string AttentPerson { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 参会人员ID(ID列表,逗号分隔)
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string AttentPersonIds { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 会议内容(HTML编码)
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string MeetingContents { 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>
|
|
|
|
|
|
/// 状态(整数,2表示完成)
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string States { get; set; }
|
|
|
|
|
|
|
2026-03-20 17:05:24 +08:00
|
|
|
|
///// <summary>
|
|
|
|
|
|
///// 数据来源(1-同步数据)
|
|
|
|
|
|
///// </summary>
|
|
|
|
|
|
//public string DataSource { 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; }
|
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>
|
2026-03-20 17:05:24 +08:00
|
|
|
|
public string AttachFileId2 { get; set; }
|
|
|
|
|
|
public string ToKeyId2 { get; set; }
|
|
|
|
|
|
public string AttachSource2 { get; set; }
|
|
|
|
|
|
public string AttachUrl2 { get; set; }
|
2026-03-09 19:10:40 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|