1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| using System.ComponentModel;
|
| namespace JiepeiWMS.Model
| {
| public enum ResponseEnum
| {
| /// <summary>
| /// 无权限
| /// </summary>
| [Description("无权限")]
| NoPermissions = 401,
| /// <summary>
| /// 找不到指定资源
| /// </summary>
| [Description("找不到指定资源")]
| NoFound = 404,
| /// <summary>
| /// 找不到指定资源
| /// </summary>
| [Description("服务器错误")]
| ServerError = 500
| }
| }
|
|