55 lines
965 B
TypeScript
55 lines
965 B
TypeScript
|
|
//激活模块
|
||
|
|
export namespace Activate {
|
||
|
|
|
||
|
|
export interface ApplicationModule {
|
||
|
|
/**
|
||
|
|
* 是否申请 1是 0否
|
||
|
|
*/
|
||
|
|
apply: number;
|
||
|
|
}
|
||
|
|
|
||
|
|
export interface ActivateModule extends ApplicationModule {
|
||
|
|
/**
|
||
|
|
* 是否永久 1是 0否
|
||
|
|
*/
|
||
|
|
permanently: number;
|
||
|
|
}
|
||
|
|
|
||
|
|
export interface ApplicationCodePlaintext {
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 模拟式模块
|
||
|
|
*/
|
||
|
|
simulate: ApplicationModule;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 数字式模块
|
||
|
|
*/
|
||
|
|
digital: ApplicationModule;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 比对式模块
|
||
|
|
*/
|
||
|
|
contrast: ApplicationModule;
|
||
|
|
}
|
||
|
|
export interface ActivationCodePlaintext {
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 模拟式模块
|
||
|
|
*/
|
||
|
|
simulate: ActivateModule;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 数字式模块
|
||
|
|
*/
|
||
|
|
digital: ActivateModule;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 比对式模块
|
||
|
|
*/
|
||
|
|
contrast: ActivateModule;
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
}
|