/**
 * * notice this file create by enum-maker
 * * https://github.com/diveDylan/enum-maker
 * * @description 系统权限枚举
 */
export enum Permission {
  {{#each permissions}}
  /**
  * @description {{label}}
  */
  {{value}} = '{{code}}',
  {{/each}}
}
