1234567891011121314151617181920212223242526272829 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.Enums
- {
-
-
-
- public enum BusStatusCode:int
- {
- [Description("操作成功")]
- Success = 200,
- [Description("操作失败")]
- Failed = 201,
- [Description("添加失败")]
- AddFailed = 202,
- [Description("修改失败")]
- UpdateFailed = 203,
- [Description("删除失败")]
- DeleteFailed = 204,
- [Description("请检查端口值是否正确!“portType”:1:WEB;2:ANDROID;3:IOS;")]
- PortTypeError = 205,
- }
- }
|