using System; using System.Collections.Generic; namespace Model { /// /// 班前会接收数据 /// public class ClassMeetingData { /// /// 分包单位社会统一信用码 /// public string CollCropCode { get; set; } /// /// 分包单位Id /// public string UnitId { get; set; } /// /// 分包单位名称 /// public string UnitName { get; set; } /// /// 分包单位简称 /// public string ShortUnitName { get; set; } /// /// 分包单位域名 /// public string UnitDomain { get; set; } /// /// 总包单位Id /// public string SubjectUnit { get; set; } /// /// 总包单位项目Id /// public string SubjectProject { get; set; } /// /// 班前会数据集合 /// public List Items { get; set; } } /// /// 班前会数据 /// 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; } /// /// 内容附件 /// public string AttachFileId { get; set; } public string ToKeyId { get; set; } public string AttachSource { get; set; } public string AttachUrl { get; set; } /// /// 签到表 /// public string AttachFileId1 { get; set; } public string ToKeyId1 { get; set; } public string AttachSource1 { get; set; } public string AttachUrl1 { get; set; } /// /// 会议过程 /// public string AttachFileId2 { get; set; } public string ToKeyId2 { get; set; } public string AttachSource2 { get; set; } public string AttachUrl2 { get; set; } } }