CNCEC_SUBQHSE_WUHUAN/SGGL/Model/DataShare/ClassMeetingData.cs

94 lines
3.0 KiB
C#

using System;
using System.Collections.Generic;
namespace Model
{
/// <summary>
/// 班前会接收数据
/// </summary>
public class ClassMeetingData
{
/// <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<ClassMeetingItem> Items { get; set; }
}
/// <summary>
/// 班前会数据
/// </summary>
public class ClassMeetingItem
{
public string ProjectId { get; set; }
public string UnitId { get; set; }
public string ClassMeetingId { get; set; }
public string ClassMeetingCode { get; set; }
public string ClassMeetingName { get; set; }
public DateTime? ClassMeetingDate { get; set; }
public string ClassMeetingContents { get; set; }
public string CompileMan { get; set; }
public string CompileManName { get; set; }
public string TeamGroupId { get; set; }
public string TeamGroupName { get; set; }
public DateTime? CompileDate { get; set; }
public string States { get; set; }
public string MeetingPlace { get; set; }
public decimal? MeetingHours { get; set; }
public string MeetingHostMan { get; set; }
public string AttentPerson { get; set; }
public int? AttentPersonNum { get; set; }
public string MeetingHostManOther { get; set; }
public string Remark { 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; }
/// <summary>
/// 会议过程
/// </summary>
public string AttachFileId2 { get; set; }
public string ToKeyId2 { get; set; }
public string AttachSource2 { get; set; }
public string AttachUrl2 { get; set; }
}
}