using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WMS.Info;
namespace WMS.Info
{
public class ReqInfo
{
///
/// 请求票据
///
public string EncryptTokenNo { get; set; }
///
/// 设备编号
///
public string AppDeviceNo { get; set; }
///
/// IPAddress
///
public string IPAddress { get; set; }
///
/// AppType
///
public EAppType AppType { get; set; }
///
/// 请求业务编号
///
public string BLLNo { get; set; }
///
/// 请求Json数据
///
public string JsonData { get; set; }
}
}