|
12345678910111213141516 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace BPASmartClient.CustomResource.Pages.Enums
- {
- public enum Permission : int
- {
- 管理员 = 1,
- 操作员 = 2,
- 观察员 = 3,
- 技术员 = 4
- }
- }
|