123456789101112131415161718192021222324252627 |
- namespace Central.Control.Domain
- {
- using System;
- using System.Collections.Generic;
-
- public partial class SYS_ONLINE
- {
- public string ID { get; set; }
- public Nullable<System.DateTime> LOGINTIME { get; set; }
- public Nullable<decimal> TIMEOUTTIME { get; set; }
- public string COOKIEID { get; set; }
- public string ACCOUNT { get; set; }
- public Nullable<System.DateTime> LASTACCESSTIME { get; set; }
- public Nullable<decimal> STATE { get; set; }
- public string USERID { get; set; }
- public string NAME { get; set; }
- }
- }
|