import { Http,Util } from '@/utils';
import PreActionLogicBase from './pre-action-logic-base';

/**
 * 执行上一步
 * 基于 APP/src/service/%DE_PKGPATH%/%APP_DELOGIC%-logic.ts.ftl 生成
 * @export
 * @class PreActionLogic
 */
export default class PreActionLogic extends PreActionLogicBase{

    /**
     * Creates an instance of  PreActionLogic
     * 
     * @param {*} [opts={}]
     * @memberof  PreActionLogic
     */
    constructor(opts: any = {}) {
        super(opts);
    }

}