ImNotifyTaskTemplate.cs 506 B

123456789101112131415
  1. using System;
  2. using System.Collections.Generic;
  3. namespace CodeFirstExistingDatabaseSample.ISMS_BASE.Models
  4. {
  5. public partial class ImNotifyTaskTemplate
  6. {
  7. public string AlertType { get; set; } = null!;
  8. public string Sql4notify { get; set; } = null!;
  9. public string BusiTabName { get; set; } = null!;
  10. public string PkfldName { get; set; } = null!;
  11. public string Sql4phoneNo { get; set; } = null!;
  12. public string Sql4msg { get; set; } = null!;
  13. }
  14. }