- 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!;
- }
- }
|