CmAlarmAdmin.cs 1.0 KB

12345678910111213141516171819202122232425262728
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations;
  4. using System.ComponentModel.DataAnnotations.Schema;
  5. namespace FMSAdmin.Entities {
  6. public partial class CmAlarmAdmin {
  7. //알람 관리자 설정
  8. [Display(Name = "현장 고유번호"), Key]
  9. public int SiteId { get; set; }
  10. [Display(Name = "SMS API 사용을 위한 UserCode")]
  11. [StringLength(50)]
  12. public string UserCode { get; set; }
  13. [Display(Name = "SMS API 사용을 위한 DeptCode")]
  14. [StringLength(50)]
  15. public string DeptCode { get; set; }
  16. [Display(Name = "관리자 핸드폰 번호")]
  17. [StringLength(50)]
  18. public string PhoneNo { get; set; }
  19. [Display(Name = "관리자 구글 e-mail 주소")]
  20. [StringLength(50)]
  21. public string EmailAddress { get; set; }
  22. [Display(Name = "관리자 구글 e-mail 비밀번호")]
  23. [StringLength(50)]
  24. public string EmailPassword { get; set; }
  25. }
  26. }