123456789101112131415161718192021 |
- namespace iBemsDataService.Model
- {
- using System;
- using System.Collections.Generic;
-
- public partial class BemsAlarmGroupUser
- {
- public int SiteId { get; set; }
- public int AlarmGroupId { get; set; }
- public string UserId { get; set; }
- }
- }
|