43 lines
882 B
C#
43 lines
882 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DataService.Model
|
|
{
|
|
|
|
/// <summary>
|
|
/// 云端配置页面网关配置 -这里是列表
|
|
/// </summary>
|
|
public class import_ydpz_wgpz
|
|
{
|
|
|
|
//示例
|
|
//"wglx": "box",
|
|
//"wgid": "lan-box1",
|
|
//"wgbh": "2000808010",
|
|
//"wgmc": "有线区网关1"
|
|
|
|
/// <summary>
|
|
/// 网关类型
|
|
/// </summary>
|
|
public string wglx { get; set; }
|
|
|
|
/// <summary>
|
|
/// 网关ID
|
|
/// </summary>
|
|
public string wgid { get; set; }
|
|
|
|
/// <summary>
|
|
/// 网关编号
|
|
/// </summary>
|
|
public string wgbh { get; set; }
|
|
|
|
/// <summary>
|
|
/// 网关名称
|
|
/// </summary>
|
|
public string wgmc { get; set; }
|
|
}
|
|
}
|