UNPKG

414 BJavaScriptView Raw
1/**
2 * Project/Mileston/Ticket state
3 * @enum {string} "OPEN|CLOSED"
4 */
5export const TAG = {
6 CAT: "CAT",
7 DOG: "DOG",
8};
9
10/**
11 * 角色
12 * 内置角色 ADMIN 会自动解析成以下所有角色
13 * 内置角色 USER 为白板
14 *
15 * @enum {string} "OPEN|CLOSED"
16 */
17export const Role = {
18 /**
19 * 固定角色
20 */
21 PET_STORE_BREEDER: "BREEDER",
22 /**
23 * 数据角色
24 */
25 PET_STORE_OWNER: "OWNER",
26};