23 lines
708 B
C#
23 lines
708 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Backend.Models
|
|||
|
{
|
|||
|
public class ArchiveElectricMeter
|
|||
|
{
|
|||
|
public string Device_number { get; set; }
|
|||
|
public string Point { get; set; }
|
|||
|
public string Start_timestamp { get; set; }
|
|||
|
public string End_timestamp { get; set; }
|
|||
|
public int Count_rawdata { get; set; }
|
|||
|
public double Min_rawdata { get; set; }
|
|||
|
public double Max_rawdata { get; set; }
|
|||
|
public double Avg_rawdata { get; set; }
|
|||
|
public double Sum_rawdata { get; set; }
|
|||
|
public byte Is_complete { get; set; }
|
|||
|
public double Repeat_times { get; set; }
|
|||
|
}
|
|||
|
}
|