21 lines
432 B
C#
21 lines
432 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace HxBusiness
|
|
{
|
|
public class ResponseModel
|
|
{
|
|
public ResponseModel()
|
|
{
|
|
code = -1;
|
|
msg = "初始化错误!";
|
|
data = "服务器错误!";
|
|
}
|
|
public int code { get; set; }
|
|
public string msg { get; set; }
|
|
public object data { get; set; }
|
|
}
|
|
}
|