<#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 {

    /**
     * ${item.name} 逻辑实例对象
     *
     * @private
     * @static
     * @type {${srfclassname('${item.getCodeName()}')}UILogic}
     * @memberof ${srfclassname('${item.getCodeName()}')}UILogic
     */
    private static instance: ${srfclassname('${item.getCodeName()}')}UILogic;

    /**
     * 获取 ${item.name} 逻辑实例对象
     *
     * @static
     * @return {*}  {${srfclassname('${item.getCodeName()}')}UILogic}
     * @memberof ${srfclassname('${item.getCodeName()}')}UILogic
     */
    static getInstance(): ${srfclassname('${item.getCodeName()}')}UILogic {
        if (!this.instance) {
            this.instance = new ${srfclassname('${item.getCodeName()}')}UILogic();
        }
        return this.instance;
    }

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

}