// 基于 @CONTROL/卡片视图导航/SERVICE.ts.ftl 生成
import { Http,Util,Errorlog } from '@/utils';
import ControlService from '@/widgets/control-service';
import IBIZBOOKService from '@/service/ibizbook/ibizbook-service';
import DataViewExpViewdataviewexpbarModel from './data-view-exp-viewdataviewexpbar-dataviewexpbar-model';


/**
 * DataViewExpViewdataviewexpbar 部件服务对象
 *
 * @export
 * @class DataViewExpViewdataviewexpbarService
 */
export default class DataViewExpViewdataviewexpbarService extends ControlService {

    /**
     * 图书服务对象
     *
     * @type {IBIZBOOKService}
     * @memberof DataViewExpViewdataviewexpbarService
     */
    public appEntityService: IBIZBOOKService = new IBIZBOOKService();

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

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

}