123456789101112131415161718192021222324 |
- namespace iBemsDataService.Model
- {
- using System;
- using System.Collections.Generic;
-
- public partial class CmAlarmAdmin
- {
- public int SiteId { get; set; }
- public string UserCode { get; set; }
- public string DeptCode { get; set; }
- public string PhoneNo { get; set; }
- public string EmailAddress { get; set; }
- public string EmailPassword { get; set; }
- }
- }
|