import { IPSSysSFPlugin } from './ipssys-sfplugin'; import { IPSSystemModule } from '../system/ipssystem-module'; import { IPSModelObject } from '../ipsmodel-object'; /** * * @export * @interface IPSSysLogic */ export interface IPSSysLogic extends IPSModelObject { /** * 代码标识 * @type {string} */ codeName: string; /** * 自定义处理对象 * @type {string} */ customObject: string; /** * 后端模板插件对象 * * @type {IPSSysSFPlugin} */ getPSSysSFPlugin(): IPSSysSFPlugin | null; /** * 后端模板插件对象 * * @type {IPSSysSFPlugin} */ get psSysSFPlugin(): IPSSysSFPlugin | null; /** * 后端模板插件对象(必须存在) * * @type {IPSSysSFPlugin} */ getPSSysSFPluginMust(): IPSSysSFPlugin; /** * 系统模块 * * @type {IPSSystemModule} */ getPSSystemModule(): IPSSystemModule | null; /** * 系统模块 * * @type {IPSSystemModule} */ get psSystemModule(): IPSSystemModule | null; /** * 系统模块(必须存在) * * @type {IPSSystemModule} */ getPSSystemModuleMust(): IPSSystemModule; /** * 脚本代码 * @type {string} */ scriptCode: string; /** * 自定义脚本代码 * @type {boolean} * @default false */ customCode: boolean; }