ui-logic-last-return-param.ts 738 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
import { UILogicParamType } from "@/logic/const/ui-logic-param-type";
import { UILogicParamBase } from "./ui-logic-param-base";

/**
 * 逻辑上一次调用返回参数
 *
 * @export
 * @class AppDeUILogicLastReturnParam
 */
export class AppDeUILogicLastReturnParam extends UILogicParamBase {

    /**
     * Creates an instance of AppDeUILogicLastReturnParam.
     * @param {*} opts
     * @memberof AppDeUILogicLastReturnParam
     */
    public constructor(opts: any) {
        super(opts);
    }

    /**
     * 初始化
     *
     * @protected
     * @memberof AppDeUILogicLastReturnParam
     */
    protected init(params: any) {
        super.init(params);
        this.logicParamType = UILogicParamType.lastReturnParam;
    }
}