75 lines
1.7 KiB
C#
75 lines
1.7 KiB
C#
|
|
//--------------------------------------------------------------------
|
|
// 此代码由T4模板自动生成 byzhouhang 20210918
|
|
// 生成时间 2022-02-15 11:55:43
|
|
// 对此文件的更改可能会导致不正确的行为,并且如果重新生成代码,这些更改将会丢失。
|
|
using IRaCIS.Core.Domain.Share;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Linq;
|
|
|
|
namespace IRaCIS.Core.Domain.Models
|
|
{
|
|
///<summary>
|
|
///EmailNoticeConfig
|
|
///</summary>
|
|
[Table("EmailNoticeConfig")]
|
|
public class EmailNoticeConfig : Entity, IAuditUpdate, IAuditAdd,ISoftDelete
|
|
{
|
|
public string Code { get; set; } = String.Empty;
|
|
|
|
public CommonDocumentBusinessScenario BusinessScenarioEnum { get; set; }
|
|
|
|
/// <summary>
|
|
/// 是否区分标准
|
|
/// </summary>
|
|
public bool IsDistinguishCriteria { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 是否需要回执
|
|
/// </summary>
|
|
[Required]
|
|
public bool IsReturnRequired { get; set; }
|
|
|
|
|
|
[Required]
|
|
public bool IsUrgent { get; set; }
|
|
|
|
public bool IsAutoSend { get; set; }
|
|
|
|
public bool IsEnable { get; set; }
|
|
|
|
[Required]
|
|
public DateTime CreateTime { get; set; }
|
|
|
|
|
|
[Required]
|
|
public Guid CreateUserId { get; set; }
|
|
|
|
|
|
[Required]
|
|
public Guid UpdateUserId { get; set; }
|
|
[Required]
|
|
public DateTime UpdateTime { get; set; }
|
|
|
|
public bool IsDeleted { get; set; }
|
|
|
|
public DateTime? DeletedTime { get; set; }
|
|
|
|
public Guid? DeleteUserId { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|