calendar-exp-view-layoutcalendarexpbar-calendarexpbar-service.ts 1.2 KB
Newer Older
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 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
import { Http,Util,Errorlog } from '@/utils';
import ControlService from '@/widgets/control-service';
import IBIZOrderService from '@/service/ibizorder/ibizorder-service';
import CalendarExpView_layoutcalendarexpbarModel from './calendar-exp-view-layoutcalendarexpbar-calendarexpbar-model';


/**
 * CalendarExpView_layoutcalendarexpbar 部件服务对象
 *
 * @export
 * @class CalendarExpView_layoutcalendarexpbarService
 */
export default class CalendarExpView_layoutcalendarexpbarService extends ControlService {

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

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

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

}