create-chuntianxiaozhu
Version:
春天小猪模板工具
38 lines (30 loc) • 664 B
text/typescript
export const IS_PUBLIC_KEY = 'isPublic';
export const ROLES_KEY = 'roles';
export enum RoleEnum {
// 超级管理员
SuperAdmin = 'superAdmin',
// 管理员
Admin = 'admin',
// 设计者
Designer = 'designer',
// 开发者
Developer = 'developer',
// 运营者
Operator = 'operator',
}
// 设计者比例15%
export const DesignerRatio = 0.15;
// 开发者比例15%
export const DeveloperRatio = 0.15;
// 运营比例15%
export const PromotionRatio = 0.15;
// 不可以修改
export const BusinessType = {
Page: 0,
Soft: 1,
Music: 2,
Movie: 3,
Book: 4,
};
// 入驻验证码前缀
export const SettleInCodePrefix = 'SETTLEIN_';