12345678910111213141516171819202122232425 |
- namespace Central.Control.Domain
- {
- using System;
- using System.Collections.Generic;
-
- public partial class COM_DOWNLOAD
- {
- public string ID { get; set; }
- public Nullable<int> FK_USERID { get; set; }
- public string DLOPERATOR { get; set; }
- public string DLIP { get; set; }
- public Nullable<int> DLNUM { get; set; }
- public string FK_UPID { get; set; }
- public Nullable<System.DateTime> DLDATE { get; set; }
- }
- }
|