using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using YBDevice.Entity;
namespace YBDevice.NApi.Application.BusinessClient.DeviceInfo
{
///
/// 设备激活
///
public class DeviceActiveDto
{
///
/// 设备机器码
///
public string sn { get; set; }
///
/// 设备序列号
///
public string code { get; set; }
}
///
/// 设备列表
///
public class DeviceListDto
{
///
/// 设备名称
///
public string Name { get; set; }
///
/// 设备序列号
///
public string FacEcode { get; set; }
///
/// 设备类型
///
public int Type { get; set; }
///
/// 设备类型名称
///
public string TypeName { get; set; }
///
/// 设备ID
///
public int Id { get; set; }
///
/// 最近测量时间
///
public string LastHeartTime { get; set; }
///
/// 设备状态
///
public DeviceStatus Status { get; set; }
///
/// 今日称重数量
///
public string DayCnt { get; set; }
///
/// 累计称重次数
///
public string TotalCnt { get; set; }
///
/// 商户ID
///
public int BusinessId { get; set; }
///
/// 商户名称
///
public string BusinessName { get; set; }
}
}