using IRaCIS.Core.Domain.Share; using System.ComponentModel.DataAnnotations; namespace IRaCIS.Core.Application.ViewModel; public class DateDto { public string Code { get; set; } public string DateType { get; set; } public string Identification { get; set; } } public class SetInspectionEnumValueDto { [NotDefault] public Guid TrialId { get; set; } [NotDefault] public List AuditDataIds { get; set; } } public class AccessToDialogueInDto { public Guid Id { get; set; } public AccessToDialogueEnum Type { get; set; } public DateTime Createtime { get; set; } } public class AccessToDialogueOutDto { public string CreateUserName { get; set; } public string TalkContent { get; set; } public DateTime CreateTime { get; set; } public bool IsTitle { get; set; } } public enum AccessToDialogueEnum { /// /// 质疑 /// Question = 0, /// /// 一致性核查 /// Consistency = 1, } /// /// 复制 /// public class CopyFrontAuditConfigItemDto { public Guid ParentId { get; set; } public Guid ChildId { get; set; } }