import { IPSSystemModule } from '../system/ipssystem-module'; import { IPSModelObject } from '../ipsmodel-object'; /** * * 子接口类型识别属性[] * @export * @interface IPSWFWorkTime */ export interface IPSWFWorkTime extends IPSModelObject { /** * 代码标识 * @type {string} */ codeName: string; /** * 系统模块 * * @type {IPSSystemModule} */ getPSSystemModule(): IPSSystemModule | null; /** * 系统模块 * * @type {IPSSystemModule} */ get psSystemModule(): IPSSystemModule | null; /** * 系统模块(必须存在) * * @type {IPSSystemModule} */ getPSSystemModuleMust(): IPSSystemModule; /** * 工作时间数据 * @type {string} */ userData: string; /** * 工作时间数据2 * @type {string} */ userData2: string; /** * 工作时间编号 * @type {string} */ wFWorkTimeSN: string; }