using System.Collections; using System.Collections.Generic; namespace WIDESEA_Common { public class WMSResponseContent { /// /// false:失败,true:成功 /// public bool success { get; set; } /// /// 200成功否则失败 /// public int code { get; set; } /// /// 返回消息 /// public string msg { get; set; } /// /// 数据 /// public object data { get; set; } } }