| 12345678910111213141516171819202122 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace LoginModel
- {
- [Serializable]
- public class BaseResponse
- {
- /// <summary>
- /// 返回状态:成功200, 失败201;
- /// </summary>
- public int status { get; set; } = 201;
- /// <summary>
- /// 返回状态的描述;
- /// </summary>
- public string msg { get; set; } = "错误";
- }
- }
|