2024-08-21 16:50:14 +08:00

16 lines
506 B
C#

using System;
using System.Collections.Generic;
namespace CodeFirstExistingDatabaseSample.ISMS_BASE.Models
{
public partial class ImNotifyTaskTemplate
{
public string AlertType { 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!;
}
}