You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
816 B
C#

using Estsh.Core.Base;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations.Schema;
namespace Estsh.Core.Models
{
/// <summary>
/// ,数据实体对象
/// </summary>
[Table("sys_report_mail")]
[Serializable]
public class SysReportMail : BaseEntity
{
[Column("report_name")]
[DisplayName(" ")]
public string ReportName { get; set; }
[Column("mail_to")]
[DisplayName(" ")]
public string MailTo { get; set; }
[Column("mail_cc")]
[DisplayName(" ")]
public string MailCc { get; set; }
[Column("mail_subject")]
[DisplayName(" ")]
public string MailSubject { get; set; }
[Column("ruid")]
[DisplayName(" ")]
public int Ruid { get; set; }
}
}