23 lines
822 B
C#
Raw Permalink 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 TbNotifyTask
{
public string TaskId { get; set; } = null!;
public string TaskName { get; set; } = null!;
public string StartTime { get; set; } = null!;
public string EndTime { get; set; } = null!;
public string Sql4notify { get; set; } = null!;
public string BusiTabName { get; set; } = null!;
public string PkfldName { get; set; } = null!;
public string Sql4phoneNo { get; set; } = null!;
public string Sql4msg { get; set; } = null!;
public string State { get; set; } = null!;
public DateTime CreateTime { get; set; }
public virtual ImNotifyTask? ImNotifyTask { get; set; }
}
}