代码生成新增加权限判断

This commit is contained in:
izory
2021-09-28 18:17:31 +08:00
parent c24c243dc3
commit 8cf4273bd3
6 changed files with 199 additions and 37 deletions

View File

@@ -0,0 +1,18 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Infrastructure.Model
{
public class SendEmailDto
{
public string FileUrl { get; set; } = "";
public string Subject { get; set; }
public string ToUser { get; set; }
public string Content { get; set; } = "";
public string HtmlContent { get; set; }
public DateTime AddTime { get; set; }
}
}