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.
25 lines
684 B
C#
25 lines
684 B
C#
using DS.Module.Core;
|
|
using DS.Module.Core.Data;
|
|
using SqlSugar;
|
|
|
|
namespace DS.WMS.Core.TaskPlat.Entity
|
|
{
|
|
/// <summary>
|
|
/// 任务邮件表
|
|
///</summary>
|
|
[SugarTable("task_email", "任务邮件表")]
|
|
public class TaskEmail : BaseModelV2<long>
|
|
{
|
|
/// <summary>
|
|
/// 任务主键ID
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "任务主键ID", IsNullable = false)]
|
|
public long TASK_PKID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 邮件路径
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "邮件路径", IsNullable = true, Length = 255)]
|
|
public string? MAIL_PATH { get; set; }
|
|
}
|
|
} |