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


/**
 * DataViewExpView_layoutdataviewexpbar 部件服务对象
 *
 * @export
 * @class DataViewExpView_layoutdataviewexpbarService
 */
export default class DataViewExpView_layoutdataviewexpbarService extends ControlService {

    /**
     * 订单服务对象
     *
     * @type {IBIZOrderService}
     * @memberof DataViewExpView_layoutdataviewexpbarService
     */
    public appEntityService: IBIZOrderService = new IBIZOrderService();

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

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

}