stab-exp-view-layouttabexppanel-tabexppanel-service.ts 1.3 KB
// 基于 @CONTROL/分页导航面板/SERVICE.ts.ftl 生成
import { Http,Util,Errorlog } from '@/utils';
import ControlService from '@/widgets/control-service';
import IBIZSample0003Service from '@/service/ibizsample0003/ibizsample0003-service';
import STabExpView_layouttabexppanelModel from './stab-exp-view-layouttabexppanel-tabexppanel-model';


/**
 * STabExpView_layouttabexppanel 部件服务对象
 *
 * @export
 * @class STabExpView_layouttabexppanelService
 */
export default class STabExpView_layouttabexppanelService extends ControlService {

    /**
     * 示例实体03服务对象
     *
     * @type {IBIZSample0003Service}
     * @memberof STabExpView_layouttabexppanelService
     */
    public appEntityService: IBIZSample0003Service = new IBIZSample0003Service();

    /**
     * 设置从数据模式
     *
     * @type {boolean}
     * @memberof STabExpView_layouttabexppanelService
     */
    public setTempMode(){
        this.isTempMode = false;
    }

    /**
     * Creates an instance of STabExpView_layouttabexppanelService.
     * 
     * @param {*} [opts={}]
     * @memberof STabExpView_layouttabexppanelService
     */
    constructor(opts: any = {}) {
        super(opts);
        this.model = new STabExpView_layouttabexppanelModel();
    }
   
}