You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
835 B
39 lines
835 B
using System; |
|
using System.Collections.Generic; |
|
|
|
namespace ParkingLotEntity.DB; |
|
|
|
public partial class DiReport |
|
{ |
|
public long Id { get; set; } |
|
|
|
/// <summary> |
|
/// 项目ID |
|
/// </summary> |
|
public long ProjectId { get; set; } |
|
|
|
/// <summary> |
|
/// 配置ID |
|
/// </summary> |
|
public long? ConfigId { get; set; } |
|
|
|
/// <summary> |
|
/// 报告类型1 日报 2周报 3月报 4 季报 5 制冷季 6供暖季 7过渡季 |
|
/// </summary> |
|
public short ReportCycle { get; set; } |
|
|
|
/// <summary> |
|
/// 报告名称 |
|
/// </summary> |
|
public string ReportName { get; set; } = null!; |
|
|
|
/// <summary> |
|
/// 诊断日期 |
|
/// </summary> |
|
public DateOnly DiagnosisDate { get; set; } |
|
|
|
/// <summary> |
|
/// 诊断时间 |
|
/// </summary> |
|
public DateTime DiagnosisTime { get; set; } |
|
}
|
|
|