import { IPSSystemModule } from '../system/ipssystem-module'; import { IPSModelObject } from '../ipsmodel-object'; /** * * 子接口类型识别属性[] * @export * @interface IPSSysSampleValue */ export interface IPSSysSampleValue extends IPSModelObject { /** * 代码标识 * @type {string} */ codeName: string; /** * 系统模块 * * @type {IPSSystemModule} */ getPSSystemModule(): IPSSystemModule | null; /** * 系统模块 * * @type {IPSSystemModule} */ get psSystemModule(): IPSSystemModule | null; /** * 系统模块(必须存在) * * @type {IPSSystemModule} */ getPSSystemModuleMust(): IPSSystemModule; /** * 随机示例值 * @type {string} */ randomValue: string; /** * 示例值 * @type {string} */ value: string; /** * 空值 * @type {boolean} */ nullValue: boolean; }