forked from ddrilling/AsbCloudServer
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; }
|
|||
|
}
|
|||
|
|
|||
|
}
|