using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using WMS.Info;
namespace WMS.Info
{
public class LoginRequest
{
///
/// 设备编号
///
public string AppDeviceNo { get; set; }
///
/// 系统类型
///
public EAppType AppType { get; set; }
///
/// 设备IP地址
///
public string IPAddress { get; set; }
///
/// 用户名
///
public string TextU { get; set; }
///
/// 密码
///
public string TextP { get; set; }
}
}