附件邮件测试
This commit is contained in:
@@ -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;
|
||||
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user