23 lines
762 B
C#
Raw Normal View History

2024-08-21 16:50:14 +08:00
using System;
using System.Collections.Generic;
namespace CodeFirstExistingDatabaseSample.ISMS_BASE.Models
{
public partial class ImNotifyTask
{
public ImNotifyTask()
{
ImNotifyTaskAlertObjs = new HashSet<ImNotifyTaskAlertObj>();
ImNotifyTaskPhones = new HashSet<ImNotifyTaskPhone>();
}
public string TaskId { get; set; } = null!;
public string AlertType { get; set; } = null!;
public string TaskDesc { get; set; } = null!;
public virtual TbNotifyTask Task { get; set; } = null!;
public virtual ICollection<ImNotifyTaskAlertObj> ImNotifyTaskAlertObjs { get; set; }
public virtual ICollection<ImNotifyTaskPhone> ImNotifyTaskPhones { get; set; }
}
}