35 lines
776 B
C#
35 lines
776 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace WebService.SDK.Model
|
|
{
|
|
public class DeviceInfoModel
|
|
{
|
|
/// <summary>
|
|
/// 服务区编号
|
|
/// </summary>
|
|
public string ServerPartCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 门店编号
|
|
/// </summary>
|
|
public string ShopCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 设备编号
|
|
/// </summary>
|
|
public string MachineCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 设备名称
|
|
/// </summary>
|
|
public string DeviceName { get; set; }
|
|
/// <summary>
|
|
/// 设备网卡地址
|
|
/// </summary>
|
|
public string DeviceMacaddress { get; set; }
|
|
}
|
|
}
|