jy-plc/Command/Model/EntityModel/DeviceUsed.cs

18 lines
418 B
C#
Raw Normal View History

2024-07-24 13:30:21 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace LangGuan.Command.Model.EntityModel
{
public class DeviceUsed : BaseModel
{
public string DeviceId { get; set; }
public DateTime Start { get; set; }
public DateTime End { get; set; }
public double Power { get; set; }
public double Water { get; set; }
}
}