%APP_DEUILOGIC%-ui-logic.ts.ftl 699 字节
Newer Older
ibizdev's avatar
ibizdev committed
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=PSAPPDEUILOGIC
</#ibiztemplate>
import { Http,Util } from '@/utils';
import ${srfclassname('${item.getCodeName()}')}UILogicBase from './${srffilepath2(item.getCodeName())}-ui-logic-base';

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

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

}