%APP_DELOGIC%-logic.ts.ftl 682 字节
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
<#ibiztemplate>
TARGET=PSAPPDELOGIC
</#ibiztemplate>
import { Http,Util } from '@/utils';
import ${srfclassname('${item.getCodeName()}')}LogicBase from './${srffilepath2(item.getCodeName())}-logic-base';

/**
 * ${item.name}
 *
 * @export
 * @class ${srfclassname('${item.getCodeName()}')}Logic
 */
export default class ${srfclassname('${item.getCodeName()}')}Logic extends ${srfclassname('${item.getCodeName()}')}LogicBase{

    /**
     * Creates an instance of  ${srfclassname('${item.getCodeName()}')}Logic
     * 
     * @param {*} [opts={}]
     * @memberof  ${srfclassname('${item.getCodeName()}')}Logic
     */
    constructor(opts: any = {}) {
        super(opts);
    }

}