using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BPASmartClient.IoT
{
///
/// 设备信息表
///
public class DeviceTable : BaseEntity
{
///
/// 阿里云设备key
///
public string productkey { get; set; }
///
/// 阿里云设备secret
///
public string devicesecret { get; set; }
///
/// 客户端类型
///
public string devtype { get; set; }
///
/// 经度
///
public string jd { get; set; }
///
/// 维度
///
public string wd { get; set; }
///
/// 备注
///
public string remark { get; set; }
}
}