using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace iWareModel.Entity.MES
{
public class Respone
{
///
/// 返回码
///
public int iState { get; set; }
///
/// 返回消息
///
public string message { get; set; }
///
/// 自定义返回
///
public string data { get; set; }
}
}