| 1234567891011121314151617181920 |
- export const systemLimit = 100;
- export enum SystemLimitType {
- PROJECT = 'project',
- RATION = 'RATION',
- }
- export interface ISystemLimit {
- project: number; // 单位工程可创建数量
- ration: number; // 定额可创建数量
- }
- export interface ISystemSetting {
- ID: string;
- normal: ISystemLimit;
- professional: ISystemLimit;
- version: string;
- product: string;
- company: string;
- }
|