18 lines
418 B
C#
18 lines
418 B
C#
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; }
|
|
}
|
|
}
|