123456789101112131415161718192021222324252627282930 |
- namespace iBemsDataService.Model
- {
- using System;
- using System.Collections.Generic;
-
- public partial class BemsReportHistory
- {
- public int SiteId { get; set; }
- public int Seq { get; set; }
- public System.DateTime DateTime { get; set; }
- public string ReportName { get; set; }
- public int ReportFormatId { get; set; }
- public string FormatName { get; set; }
- public string Content { get; set; }
- public string Writer { get; set; }
- public string Confirm1 { get; set; }
- public string Confirm2 { get; set; }
- public int parts { get; set; }
- public string FileName { get; set; }
- }
- }
|