Newer
Older
SensorHub / SensorHub.Servers / JsonFormat / ConfigJson.cs
root on 17 Sep 2021 387 bytes first commit
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace SensorHub.Servers.JsonFormat
{
    public class ConfigJson : JsonBody
    {
        public string concentratorCode { get; set; }   //集中器编号
        public int netType { get; set; }   //通信类型,1-433,2-移动/联通NB,3-电信NB,4-3/4G
    }
}