namespace learun.util { /// /// 版 本 EasyCode EC管理后台 /// Copyright (c) 2019-present EC管理有限公司 /// 创建人:tobin /// 日 期:2019.09.11 /// 描 述:接口响应数据 /// public class ResParameter { /// /// 接口响应码 /// public ResponseCode code { get; set; } /// /// 接口响应消息 /// public string info { get; set; } /// /// 接口响应数据 /// public object data { get; set; } } }