export class SysMsgTarget { pkTargetMsg: string; pkMsg: string; targetId: string; targetType: string; userType: string; targetName: string; constructor( options: { pkTargetMsg?: string; pkMsg?: string; targetId?: string; targetType?: string; userType?: string; targetName?: string; } = {} ) { this.pkTargetMsg = options.pkTargetMsg || ""; this.pkMsg = options.pkMsg || ""; this.targetId = options.targetId || ""; this.targetType = options.targetType || ""; this.userType = options.userType || ""; this.targetName = options.targetName || ""; } }