using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WIDESEA_External.Model
{
///
/// MES返回
///
public class MESResponse
{
///
/// 成功结果
///
public bool Result { get; set; }
///
/// 返回信息
///
public string Msg { get; set; }
///
/// 返回对象
///
public object Obj { get; set; }
}
}