using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace IWareDataAccess.Entity.Base
|
{
|
public class DeviceWebEntity
|
{
|
public int? id { get; set; }
|
|
public string deviceName { get; set; }
|
|
public string deviceType { get; set; }
|
|
public int? deviceId { get; set; }
|
|
public int? isLock { get; set; }
|
}
|
}
|