forked from ddrilling/AsbCloudServer
IvanovEugeniy
e16df1f705
внесение корректировок в сервис DailyReport Убраны лишние комментарии и лишний код : -из классов создающих блоки отчета -из метода MakerExcel Добавлен блок Dimensionless
19 lines
538 B
C#
19 lines
538 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using AsbCloudDb.Model.DailyReportDB;
|
|
|
|
namespace AsbCloudDb.Model
|
|
{
|
|
#nullable disable
|
|
public class DailyReportInfo
|
|
{
|
|
public DailyReportHead HeadInfo { get; set; }
|
|
public DailyReportBha BhaDto { get; set; }
|
|
public DailyReportDimensionless DimensionlessInfo { get; set; }
|
|
public DailyReportTimeBalance TimeBalanceInfo { get; set; }
|
|
public DailyReportSaub SaubInfo { get; set; }
|
|
public DailyReportSign SignInfo { get; set; }
|
|
}
|
|
|
|
}
|