22 lines
503 B
C#
22 lines
503 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DataService.api
|
|
{
|
|
public class get_lighting_load
|
|
{
|
|
public int code { get; set; }
|
|
public string msg { get; set; }
|
|
public List<lighting_loadData> data { get; set; }
|
|
}
|
|
public class lighting_loadData
|
|
{
|
|
public string time { get; set; }
|
|
public decimal? TP { get; set; }
|
|
public decimal? YP { get; set; }
|
|
}
|
|
}
|