using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Model { public class ResponeData { public bool success { get; set; } = true; /// /// 代码 200-正常;1010-异常; /// public int code { get; set; } = 200; /// /// 消息 /// public string message { get; set; } public string timestamp { get; set; } /// /// 数据 /// public object data { get; set; } } }