12345678910111213141516171819202122 |
- namespace iBemsDataService.Model
- {
- using System;
- using System.Collections.Generic;
-
- public partial class BemsReportFormat
- {
- public int ReportFormatId { get; set; }
- public string FormatName { get; set; }
- public string Content { get; set; }
- public int parts { get; set; }
- }
- }
|