// 基于 @CONTROL/日历导航/SERVICE.ts.ftl 生成 import { Http,Util,Errorlog } from '@/utils'; import ControlService from '@/widgets/control-service'; import IBIZOrderService from '@/service/ibizorder/ibizorder-service'; import Usr2CalendarExpViewcalendarexpbarModel from './usr2-calendar-exp-viewcalendarexpbar-calendarexpbar-model'; /** * Usr2CalendarExpViewcalendarexpbar 部件服务对象 * * @export * @class Usr2CalendarExpViewcalendarexpbarService */ export default class Usr2CalendarExpViewcalendarexpbarService extends ControlService { /** * 订单服务对象 * * @type {IBIZOrderService} * @memberof Usr2CalendarExpViewcalendarexpbarService */ public appEntityService: IBIZOrderService = new IBIZOrderService(); /** * 设置从数据模式 * * @type {boolean} * @memberof Usr2CalendarExpViewcalendarexpbarService */ public setTempMode(){ this.isTempMode = false; } /** * Creates an instance of Usr2CalendarExpViewcalendarexpbarService. * * @param {*} [opts={}] * @memberof Usr2CalendarExpViewcalendarexpbarService */ constructor(opts: any = {}) { super(opts); this.model = new Usr2CalendarExpViewcalendarexpbarModel(); } }