12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- namespace EMISOnline.Entities
- {
- #pragma warning disable 1573
- using System;
- using System.Collections.Generic;
-
-
-
-
- public partial class EM_FTPVideo
- {
-
-
-
- public System.Guid FTPVideoID { get; set; }
-
-
-
- public string Name { get; set; }
-
-
-
- public string FTPPath { get; set; }
-
-
-
- public string FTPUrl { get; set; }
-
-
-
- public string M3u8Url { get; set; }
-
-
-
- public string M3u8Path { get; set; }
-
-
-
- public Nullable<System.DateTime> ModifyTime { get; set; }
-
-
-
- public Nullable<System.DateTime> CreateTime { get; set; }
-
-
-
- public Nullable<int> Status { get; set; }
- }
- }
|