附件邮件测试

This commit is contained in:
2022-10-21 13:51:38 +08:00
parent f916f0801b
commit 2569ef3828
5 changed files with 74 additions and 45 deletions
@@ -7,6 +7,7 @@ using System;
using IRaCIS.Core.Domain.Share;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using Newtonsoft.Json;
namespace IRaCIS.Core.Application.ViewModel
{
@@ -42,23 +43,25 @@ namespace IRaCIS.Core.Application.ViewModel
public CommonDocumentBusinessScenario BusinessScenarioEnum { get; set; }
public string Code { get; set; }
public string Code { get; set; } = string.Empty;
public Guid TrialId { get; set; }
public string AuthorizationCode { get; set; }
public string AuthorizationCode { get; set; } = string.Empty;
public List<string> ReceiveEmailList { get; set; }
public List<string> CopyEmailList { get; set; }
[JsonIgnore]
public string ReceiveEmailsStr { get; set; } = string.Empty;
public string ReceiveEmailsStr { get; set; }
public string CopyEmailsStr { get; set; }
[JsonIgnore]
public string CopyEmailsStr { get; set; } = string.Empty;
public string FromEmail { get; set; }
public string FromEmail { get; set; } = string.Empty;
public bool IsUrgent { get; set; }
@@ -68,8 +71,8 @@ namespace IRaCIS.Core.Application.ViewModel
public bool IsReturnRequired { get; set; }
public string FilePath { get; set; }
public string FileName { get; set; }
public string FilePath { get; set; } = string.Empty;
public string FileName { get; set; } = string.Empty;
}