1
zrg
2 天以前 c56f2e4192649d55ffc22e174ab0f2ce7b5dd03f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
 
namespace WebAPI.Models
{
    public class JsonResult
    {
        public string code { get; set; }
        public int count { get; set; }
        public string Message { get; set; }
        public object data { get; set; }
    }
}