提交 db3b4d02 编写于 作者: ibizdev's avatar ibizdev

tony001 发布系统代码 [后台服务,演示应用]

上级 526f5eac
......@@ -3,6 +3,8 @@ import EntityService from '../entity-service';
/**
* 动态数据看板服务对象基类
* 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成
......@@ -48,7 +50,7 @@ export default class DYNADASHBOARDServiceBase extends EntityService {
* @memberof DYNADASHBOARDServiceBase
*/
public async CheckKey(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().post(`/dynadashboards/${context.dynadashboard}/checkkey`,data,isloading);
let res:any = Http.getInstance().post(`/demoapi/dynadashboards/${context.dynadashboard}/checkkey`,data,isloading);
return res;
}
......@@ -71,7 +73,7 @@ export default class DYNADASHBOARDServiceBase extends EntityService {
delete data.srffrontuf;
}
let tempContext:any = JSON.parse(JSON.stringify(context));
let res:any = await Http.getInstance().post(`/dynadashboards`,data,isloading);
let res:any = await Http.getInstance().post(`/demoapi/dynadashboards`,data,isloading);
return res;
}
......@@ -86,7 +88,7 @@ export default class DYNADASHBOARDServiceBase extends EntityService {
* @memberof DYNADASHBOARDServiceBase
*/
public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/dynadashboards/${context.dynadashboard}`,isloading);
let res:any = await Http.getInstance().get(`/demoapi/dynadashboards/${context.dynadashboard}`,isloading);
return res;
}
......@@ -101,7 +103,7 @@ export default class DYNADASHBOARDServiceBase extends EntityService {
* @memberof DYNADASHBOARDServiceBase
*/
public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/dynadashboards/getdraft`,isloading);
let res:any = await Http.getInstance().get(`/demoapi/dynadashboards/getdraft`,isloading);
res.data.dynadashboard = data.dynadashboard;
return res;
......@@ -117,7 +119,7 @@ export default class DYNADASHBOARDServiceBase extends EntityService {
* @memberof DYNADASHBOARDServiceBase
*/
public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().delete(`/dynadashboards/${context.dynadashboard}`,isloading);
let res:any = Http.getInstance().delete(`/demoapi/dynadashboards/${context.dynadashboard}`,isloading);
return res;
}
......@@ -133,7 +135,7 @@ export default class DYNADASHBOARDServiceBase extends EntityService {
public async Save(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let masterData:any = {};
Object.assign(data,masterData);
let res:any = await Http.getInstance().post(`/dynadashboards/${context.dynadashboard}/save`,data,isloading);
let res:any = await Http.getInstance().post(`/demoapi/dynadashboards/${context.dynadashboard}/save`,data,isloading);
return res;
}
......@@ -150,7 +152,7 @@ export default class DYNADASHBOARDServiceBase extends EntityService {
public async Update(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let masterData:any = {};
Object.assign(data,masterData);
let res:any = await Http.getInstance().put(`/dynadashboards/${context.dynadashboard}`,data,isloading);
let res:any = await Http.getInstance().put(`/demoapi/dynadashboards/${context.dynadashboard}`,data,isloading);
return res;
}
......@@ -166,7 +168,7 @@ export default class DYNADASHBOARDServiceBase extends EntityService {
*/
public async FetchDefault(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
let res:any = Http.getInstance().get(`/dynadashboards/fetchdefault`,tempData,isloading);
let res:any = Http.getInstance().get(`/demoapi/dynadashboards/fetchdefault`,tempData,isloading);
return res;
}
......@@ -181,7 +183,7 @@ export default class DYNADASHBOARDServiceBase extends EntityService {
*/
public async searchDefault(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
return await Http.getInstance().post(`/dynadashboards/searchdefault`,tempData,isloading);
return await Http.getInstance().post(`/demoapi/dynadashboards/searchdefault`,tempData,isloading);
}
/**
......@@ -194,7 +196,7 @@ export default class DYNADASHBOARDServiceBase extends EntityService {
* @memberof DYNADASHBOARDServiceBase
*/
public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().get(`/dynadashboards/${context.dynadashboard}/select`,isloading);
let res:any = Http.getInstance().get(`/demoapi/dynadashboards/${context.dynadashboard}/select`,isloading);
return res;
}
......
......@@ -3,6 +3,8 @@ import EntityService from '../entity-service';
/**
* 账户服务对象基类
* 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成
......@@ -48,7 +50,7 @@ export default class IBIZAccountServiceBase extends EntityService {
* @memberof IBIZAccountServiceBase
*/
public async CheckKey(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().post(`/ibizaccounts/${context.ibizaccount}/checkkey`,data,isloading);
let res:any = Http.getInstance().post(`/demoapi/ibizaccounts/${context.ibizaccount}/checkkey`,data,isloading);
return res;
}
......@@ -71,7 +73,7 @@ export default class IBIZAccountServiceBase extends EntityService {
delete data.srffrontuf;
}
let tempContext:any = JSON.parse(JSON.stringify(context));
let res:any = await Http.getInstance().post(`/ibizaccounts`,data,isloading);
let res:any = await Http.getInstance().post(`/demoapi/ibizaccounts`,data,isloading);
return res;
}
......@@ -86,7 +88,7 @@ export default class IBIZAccountServiceBase extends EntityService {
* @memberof IBIZAccountServiceBase
*/
public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/ibizaccounts/${context.ibizaccount}`,isloading);
let res:any = await Http.getInstance().get(`/demoapi/ibizaccounts/${context.ibizaccount}`,isloading);
return res;
}
......@@ -101,7 +103,7 @@ export default class IBIZAccountServiceBase extends EntityService {
* @memberof IBIZAccountServiceBase
*/
public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/ibizaccounts/getdraft`,isloading);
let res:any = await Http.getInstance().get(`/demoapi/ibizaccounts/getdraft`,isloading);
res.data.ibizaccount = data.ibizaccount;
return res;
......@@ -117,7 +119,7 @@ export default class IBIZAccountServiceBase extends EntityService {
* @memberof IBIZAccountServiceBase
*/
public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().delete(`/ibizaccounts/${context.ibizaccount}`,isloading);
let res:any = Http.getInstance().delete(`/demoapi/ibizaccounts/${context.ibizaccount}`,isloading);
return res;
}
......@@ -133,7 +135,7 @@ export default class IBIZAccountServiceBase extends EntityService {
public async Save(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let masterData:any = {};
Object.assign(data,masterData);
let res:any = await Http.getInstance().post(`/ibizaccounts/${context.ibizaccount}/save`,data,isloading);
let res:any = await Http.getInstance().post(`/demoapi/ibizaccounts/${context.ibizaccount}/save`,data,isloading);
return res;
}
......@@ -150,7 +152,7 @@ export default class IBIZAccountServiceBase extends EntityService {
public async Update(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let masterData:any = {};
Object.assign(data,masterData);
let res:any = await Http.getInstance().put(`/ibizaccounts/${context.ibizaccount}`,data,isloading);
let res:any = await Http.getInstance().put(`/demoapi/ibizaccounts/${context.ibizaccount}`,data,isloading);
return res;
}
......@@ -166,7 +168,7 @@ export default class IBIZAccountServiceBase extends EntityService {
*/
public async FetchDefault(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
let res:any = Http.getInstance().get(`/ibizaccounts/fetchdefault`,tempData,isloading);
let res:any = Http.getInstance().get(`/demoapi/ibizaccounts/fetchdefault`,tempData,isloading);
return res;
}
......@@ -181,7 +183,7 @@ export default class IBIZAccountServiceBase extends EntityService {
*/
public async searchDefault(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
return await Http.getInstance().post(`/ibizaccounts/searchdefault`,tempData,isloading);
return await Http.getInstance().post(`/demoapi/ibizaccounts/searchdefault`,tempData,isloading);
}
/**
......@@ -194,7 +196,7 @@ export default class IBIZAccountServiceBase extends EntityService {
* @memberof IBIZAccountServiceBase
*/
public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().get(`/ibizaccounts/${context.ibizaccount}/select`,isloading);
let res:any = Http.getInstance().get(`/demoapi/ibizaccounts/${context.ibizaccount}/select`,isloading);
return res;
}
......
......@@ -3,6 +3,8 @@ import EntityService from '../entity-service';
/**
* 应用部件服务对象基类
* 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成
......@@ -48,7 +50,7 @@ export default class IBIZAPPCTRLServiceBase extends EntityService {
* @memberof IBIZAPPCTRLServiceBase
*/
public async CheckKey(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().post(`/ibizappctrls/${context.ibizappctrl}/checkkey`,data,isloading);
let res:any = Http.getInstance().post(`/demoapi/ibizappctrls/${context.ibizappctrl}/checkkey`,data,isloading);
return res;
}
......@@ -71,7 +73,7 @@ export default class IBIZAPPCTRLServiceBase extends EntityService {
delete data.srffrontuf;
}
let tempContext:any = JSON.parse(JSON.stringify(context));
let res:any = await Http.getInstance().post(`/ibizappctrls`,data,isloading);
let res:any = await Http.getInstance().post(`/demoapi/ibizappctrls`,data,isloading);
return res;
}
......@@ -86,7 +88,7 @@ export default class IBIZAPPCTRLServiceBase extends EntityService {
* @memberof IBIZAPPCTRLServiceBase
*/
public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/ibizappctrls/${context.ibizappctrl}`,isloading);
let res:any = await Http.getInstance().get(`/demoapi/ibizappctrls/${context.ibizappctrl}`,isloading);
return res;
}
......@@ -101,7 +103,7 @@ export default class IBIZAPPCTRLServiceBase extends EntityService {
* @memberof IBIZAPPCTRLServiceBase
*/
public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/ibizappctrls/getdraft`,isloading);
let res:any = await Http.getInstance().get(`/demoapi/ibizappctrls/getdraft`,isloading);
res.data.ibizappctrl = data.ibizappctrl;
return res;
......@@ -117,7 +119,7 @@ export default class IBIZAPPCTRLServiceBase extends EntityService {
* @memberof IBIZAPPCTRLServiceBase
*/
public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().delete(`/ibizappctrls/${context.ibizappctrl}`,isloading);
let res:any = Http.getInstance().delete(`/demoapi/ibizappctrls/${context.ibizappctrl}`,isloading);
return res;
}
......@@ -133,7 +135,7 @@ export default class IBIZAPPCTRLServiceBase extends EntityService {
public async Save(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let masterData:any = {};
Object.assign(data,masterData);
let res:any = await Http.getInstance().post(`/ibizappctrls/${context.ibizappctrl}/save`,data,isloading);
let res:any = await Http.getInstance().post(`/demoapi/ibizappctrls/${context.ibizappctrl}/save`,data,isloading);
return res;
}
......@@ -150,7 +152,7 @@ export default class IBIZAPPCTRLServiceBase extends EntityService {
public async Update(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let masterData:any = {};
Object.assign(data,masterData);
let res:any = await Http.getInstance().put(`/ibizappctrls/${context.ibizappctrl}`,data,isloading);
let res:any = await Http.getInstance().put(`/demoapi/ibizappctrls/${context.ibizappctrl}`,data,isloading);
return res;
}
......@@ -166,7 +168,7 @@ export default class IBIZAPPCTRLServiceBase extends EntityService {
*/
public async FetchDefault(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
let res:any = Http.getInstance().get(`/ibizappctrls/fetchdefault`,tempData,isloading);
let res:any = Http.getInstance().get(`/demoapi/ibizappctrls/fetchdefault`,tempData,isloading);
return res;
}
......@@ -181,7 +183,7 @@ export default class IBIZAPPCTRLServiceBase extends EntityService {
*/
public async searchDefault(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
return await Http.getInstance().post(`/ibizappctrls/searchdefault`,tempData,isloading);
return await Http.getInstance().post(`/demoapi/ibizappctrls/searchdefault`,tempData,isloading);
}
/**
......@@ -194,7 +196,7 @@ export default class IBIZAPPCTRLServiceBase extends EntityService {
* @memberof IBIZAPPCTRLServiceBase
*/
public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().get(`/ibizappctrls/${context.ibizappctrl}/select`,isloading);
let res:any = Http.getInstance().get(`/demoapi/ibizappctrls/${context.ibizappctrl}/select`,isloading);
return res;
}
......
......@@ -3,6 +3,8 @@ import EntityService from '../entity-service';
/**
* 编辑器服务对象基类
* 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成
......@@ -48,7 +50,7 @@ export default class IBIZAPPEDITORServiceBase extends EntityService {
* @memberof IBIZAPPEDITORServiceBase
*/
public async CheckKey(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().post(`/ibizappeditors/${context.ibizappeditor}/checkkey`,data,isloading);
let res:any = Http.getInstance().post(`/demoapi/ibizappeditors/${context.ibizappeditor}/checkkey`,data,isloading);
return res;
}
......@@ -71,7 +73,7 @@ export default class IBIZAPPEDITORServiceBase extends EntityService {
delete data.srffrontuf;
}
let tempContext:any = JSON.parse(JSON.stringify(context));
let res:any = await Http.getInstance().post(`/ibizappeditors`,data,isloading);
let res:any = await Http.getInstance().post(`/demoapi/ibizappeditors`,data,isloading);
return res;
}
......@@ -86,7 +88,7 @@ export default class IBIZAPPEDITORServiceBase extends EntityService {
* @memberof IBIZAPPEDITORServiceBase
*/
public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/ibizappeditors/${context.ibizappeditor}`,isloading);
let res:any = await Http.getInstance().get(`/demoapi/ibizappeditors/${context.ibizappeditor}`,isloading);
return res;
}
......@@ -101,7 +103,7 @@ export default class IBIZAPPEDITORServiceBase extends EntityService {
* @memberof IBIZAPPEDITORServiceBase
*/
public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/ibizappeditors/getdraft`,isloading);
let res:any = await Http.getInstance().get(`/demoapi/ibizappeditors/getdraft`,isloading);
res.data.ibizappeditor = data.ibizappeditor;
return res;
......@@ -117,7 +119,7 @@ export default class IBIZAPPEDITORServiceBase extends EntityService {
* @memberof IBIZAPPEDITORServiceBase
*/
public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().delete(`/ibizappeditors/${context.ibizappeditor}`,isloading);
let res:any = Http.getInstance().delete(`/demoapi/ibizappeditors/${context.ibizappeditor}`,isloading);
return res;
}
......@@ -133,7 +135,7 @@ export default class IBIZAPPEDITORServiceBase extends EntityService {
public async Save(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let masterData:any = {};
Object.assign(data,masterData);
let res:any = await Http.getInstance().post(`/ibizappeditors/${context.ibizappeditor}/save`,data,isloading);
let res:any = await Http.getInstance().post(`/demoapi/ibizappeditors/${context.ibizappeditor}/save`,data,isloading);
return res;
}
......@@ -150,7 +152,7 @@ export default class IBIZAPPEDITORServiceBase extends EntityService {
public async Update(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let masterData:any = {};
Object.assign(data,masterData);
let res:any = await Http.getInstance().put(`/ibizappeditors/${context.ibizappeditor}`,data,isloading);
let res:any = await Http.getInstance().put(`/demoapi/ibizappeditors/${context.ibizappeditor}`,data,isloading);
return res;
}
......@@ -166,7 +168,7 @@ export default class IBIZAPPEDITORServiceBase extends EntityService {
*/
public async FetchDefault(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
let res:any = Http.getInstance().get(`/ibizappeditors/fetchdefault`,tempData,isloading);
let res:any = Http.getInstance().get(`/demoapi/ibizappeditors/fetchdefault`,tempData,isloading);
return res;
}
......@@ -181,7 +183,7 @@ export default class IBIZAPPEDITORServiceBase extends EntityService {
*/
public async searchDefault(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
return await Http.getInstance().post(`/ibizappeditors/searchdefault`,tempData,isloading);
return await Http.getInstance().post(`/demoapi/ibizappeditors/searchdefault`,tempData,isloading);
}
/**
......@@ -194,7 +196,7 @@ export default class IBIZAPPEDITORServiceBase extends EntityService {
* @memberof IBIZAPPEDITORServiceBase
*/
public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().get(`/ibizappeditors/${context.ibizappeditor}/select`,isloading);
let res:any = Http.getInstance().get(`/demoapi/ibizappeditors/${context.ibizappeditor}/select`,isloading);
return res;
}
......
......@@ -3,6 +3,8 @@ import EntityService from '../entity-service';
/**
* 扩展编辑器服务对象基类
* 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成
......@@ -48,7 +50,7 @@ export default class IBIZAPPEXTENDEDITORServiceBase extends EntityService {
* @memberof IBIZAPPEXTENDEDITORServiceBase
*/
public async CheckKey(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().post(`/ibizappextendeditors/${context.ibizappextendeditor}/checkkey`,data,isloading);
let res:any = Http.getInstance().post(`/demoapi/ibizappextendeditors/${context.ibizappextendeditor}/checkkey`,data,isloading);
return res;
}
......@@ -71,7 +73,7 @@ export default class IBIZAPPEXTENDEDITORServiceBase extends EntityService {
delete data.srffrontuf;
}
let tempContext:any = JSON.parse(JSON.stringify(context));
let res:any = await Http.getInstance().post(`/ibizappextendeditors`,data,isloading);
let res:any = await Http.getInstance().post(`/demoapi/ibizappextendeditors`,data,isloading);
return res;
}
......@@ -86,7 +88,7 @@ export default class IBIZAPPEXTENDEDITORServiceBase extends EntityService {
* @memberof IBIZAPPEXTENDEDITORServiceBase
*/
public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/ibizappextendeditors/${context.ibizappextendeditor}`,isloading);
let res:any = await Http.getInstance().get(`/demoapi/ibizappextendeditors/${context.ibizappextendeditor}`,isloading);
return res;
}
......@@ -101,7 +103,7 @@ export default class IBIZAPPEXTENDEDITORServiceBase extends EntityService {
* @memberof IBIZAPPEXTENDEDITORServiceBase
*/
public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/ibizappextendeditors/getdraft`,isloading);
let res:any = await Http.getInstance().get(`/demoapi/ibizappextendeditors/getdraft`,isloading);
res.data.ibizappextendeditor = data.ibizappextendeditor;
return res;
......@@ -117,7 +119,7 @@ export default class IBIZAPPEXTENDEDITORServiceBase extends EntityService {
* @memberof IBIZAPPEXTENDEDITORServiceBase
*/
public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().delete(`/ibizappextendeditors/${context.ibizappextendeditor}`,isloading);
let res:any = Http.getInstance().delete(`/demoapi/ibizappextendeditors/${context.ibizappextendeditor}`,isloading);
return res;
}
......@@ -133,7 +135,7 @@ export default class IBIZAPPEXTENDEDITORServiceBase extends EntityService {
public async Save(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let masterData:any = {};
Object.assign(data,masterData);
let res:any = await Http.getInstance().post(`/ibizappextendeditors/${context.ibizappextendeditor}/save`,data,isloading);
let res:any = await Http.getInstance().post(`/demoapi/ibizappextendeditors/${context.ibizappextendeditor}/save`,data,isloading);
return res;
}
......@@ -150,7 +152,7 @@ export default class IBIZAPPEXTENDEDITORServiceBase extends EntityService {
public async Update(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let masterData:any = {};
Object.assign(data,masterData);
let res:any = await Http.getInstance().put(`/ibizappextendeditors/${context.ibizappextendeditor}`,data,isloading);
let res:any = await Http.getInstance().put(`/demoapi/ibizappextendeditors/${context.ibizappextendeditor}`,data,isloading);
return res;
}
......@@ -166,7 +168,7 @@ export default class IBIZAPPEXTENDEDITORServiceBase extends EntityService {
*/
public async FetchDefault(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
let res:any = Http.getInstance().get(`/ibizappextendeditors/fetchdefault`,tempData,isloading);
let res:any = Http.getInstance().get(`/demoapi/ibizappextendeditors/fetchdefault`,tempData,isloading);
return res;
}
......@@ -181,7 +183,7 @@ export default class IBIZAPPEXTENDEDITORServiceBase extends EntityService {
*/
public async searchDefault(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
return await Http.getInstance().post(`/ibizappextendeditors/searchdefault`,tempData,isloading);
return await Http.getInstance().post(`/demoapi/ibizappextendeditors/searchdefault`,tempData,isloading);
}
/**
......@@ -194,7 +196,7 @@ export default class IBIZAPPEXTENDEDITORServiceBase extends EntityService {
* @memberof IBIZAPPEXTENDEDITORServiceBase
*/
public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().get(`/ibizappextendeditors/${context.ibizappextendeditor}/select`,isloading);
let res:any = Http.getInstance().get(`/demoapi/ibizappextendeditors/${context.ibizappextendeditor}/select`,isloading);
return res;
}
......
......@@ -3,6 +3,8 @@ import EntityService from '../entity-service';
/**
* 应用视图服务对象基类
* 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成
......@@ -48,7 +50,7 @@ export default class IBIZAPPVIEWServiceBase extends EntityService {
* @memberof IBIZAPPVIEWServiceBase
*/
public async CheckKey(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().post(`/ibizappviews/${context.ibizappview}/checkkey`,data,isloading);
let res:any = Http.getInstance().post(`/demoapi/ibizappviews/${context.ibizappview}/checkkey`,data,isloading);
return res;
}
......@@ -71,7 +73,7 @@ export default class IBIZAPPVIEWServiceBase extends EntityService {
delete data.srffrontuf;
}
let tempContext:any = JSON.parse(JSON.stringify(context));
let res:any = await Http.getInstance().post(`/ibizappviews`,data,isloading);
let res:any = await Http.getInstance().post(`/demoapi/ibizappviews`,data,isloading);
return res;
}
......@@ -86,7 +88,7 @@ export default class IBIZAPPVIEWServiceBase extends EntityService {
* @memberof IBIZAPPVIEWServiceBase
*/
public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/ibizappviews/${context.ibizappview}`,isloading);
let res:any = await Http.getInstance().get(`/demoapi/ibizappviews/${context.ibizappview}`,isloading);
return res;
}
......@@ -101,7 +103,7 @@ export default class IBIZAPPVIEWServiceBase extends EntityService {
* @memberof IBIZAPPVIEWServiceBase
*/
public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/ibizappviews/getdraft`,isloading);
let res:any = await Http.getInstance().get(`/demoapi/ibizappviews/getdraft`,isloading);
res.data.ibizappview = data.ibizappview;
return res;
......@@ -117,7 +119,7 @@ export default class IBIZAPPVIEWServiceBase extends EntityService {
* @memberof IBIZAPPVIEWServiceBase
*/
public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().delete(`/ibizappviews/${context.ibizappview}`,isloading);
let res:any = Http.getInstance().delete(`/demoapi/ibizappviews/${context.ibizappview}`,isloading);
return res;
}
......@@ -133,7 +135,7 @@ export default class IBIZAPPVIEWServiceBase extends EntityService {
public async Save(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let masterData:any = {};
Object.assign(data,masterData);
let res:any = await Http.getInstance().post(`/ibizappviews/${context.ibizappview}/save`,data,isloading);
let res:any = await Http.getInstance().post(`/demoapi/ibizappviews/${context.ibizappview}/save`,data,isloading);
return res;
}
......@@ -150,7 +152,7 @@ export default class IBIZAPPVIEWServiceBase extends EntityService {
public async Update(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let masterData:any = {};
Object.assign(data,masterData);
let res:any = await Http.getInstance().put(`/ibizappviews/${context.ibizappview}`,data,isloading);
let res:any = await Http.getInstance().put(`/demoapi/ibizappviews/${context.ibizappview}`,data,isloading);
return res;
}
......@@ -166,7 +168,7 @@ export default class IBIZAPPVIEWServiceBase extends EntityService {
*/
public async FetchDefault(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
let res:any = Http.getInstance().get(`/ibizappviews/fetchdefault`,tempData,isloading);
let res:any = Http.getInstance().get(`/demoapi/ibizappviews/fetchdefault`,tempData,isloading);
return res;
}
......@@ -181,7 +183,7 @@ export default class IBIZAPPVIEWServiceBase extends EntityService {
*/
public async searchDefault(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
return await Http.getInstance().post(`/ibizappviews/searchdefault`,tempData,isloading);
return await Http.getInstance().post(`/demoapi/ibizappviews/searchdefault`,tempData,isloading);
}
/**
......@@ -194,7 +196,7 @@ export default class IBIZAPPVIEWServiceBase extends EntityService {
* @memberof IBIZAPPVIEWServiceBase
*/
public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().get(`/ibizappviews/${context.ibizappview}/select`,isloading);
let res:any = Http.getInstance().get(`/demoapi/ibizappviews/${context.ibizappview}/select`,isloading);
return res;
}
......
......@@ -8,6 +8,8 @@ import PrintLogic from '@/service/ibizbook/print-logic';
/**
* 图书服务对象基类
* 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成
......@@ -53,7 +55,7 @@ export default class IBIZBOOKServiceBase extends EntityService {
* @memberof IBIZBOOKServiceBase
*/
public async CheckKey(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().post(`/ibizbooks/${context.ibizbook}/checkkey`,data,isloading);
let res:any = Http.getInstance().post(`/demoapi/ibizbooks/${context.ibizbook}/checkkey`,data,isloading);
return res;
}
......@@ -76,7 +78,7 @@ export default class IBIZBOOKServiceBase extends EntityService {
delete data.srffrontuf;
}
let tempContext:any = JSON.parse(JSON.stringify(context));
let res:any = await Http.getInstance().post(`/ibizbooks`,data,isloading);
let res:any = await Http.getInstance().post(`/demoapi/ibizbooks`,data,isloading);
return res;
}
......@@ -107,7 +109,7 @@ export default class IBIZBOOKServiceBase extends EntityService {
* @memberof IBIZBOOKServiceBase
*/
public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/ibizbooks/${context.ibizbook}`,isloading);
let res:any = await Http.getInstance().get(`/demoapi/ibizbooks/${context.ibizbook}`,isloading);
return res;
}
......@@ -122,7 +124,7 @@ export default class IBIZBOOKServiceBase extends EntityService {
* @memberof IBIZBOOKServiceBase
*/
public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/ibizbooks/getdraft`,isloading);
let res:any = await Http.getInstance().get(`/demoapi/ibizbooks/getdraft`,isloading);
res.data.ibizbook = data.ibizbook;
return res;
......@@ -186,7 +188,7 @@ export default class IBIZBOOKServiceBase extends EntityService {
* @memberof IBIZBOOKServiceBase
*/
public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().delete(`/ibizbooks/${context.ibizbook}`,isloading);
let res:any = Http.getInstance().delete(`/demoapi/ibizbooks/${context.ibizbook}`,isloading);
return res;
}
......@@ -202,7 +204,7 @@ export default class IBIZBOOKServiceBase extends EntityService {
public async Save(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let masterData:any = {};
Object.assign(data,masterData);
let res:any = await Http.getInstance().post(`/ibizbooks/${context.ibizbook}/save`,data,isloading);
let res:any = await Http.getInstance().post(`/demoapi/ibizbooks/${context.ibizbook}/save`,data,isloading);
return res;
}
......@@ -219,7 +221,7 @@ export default class IBIZBOOKServiceBase extends EntityService {
public async Update(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let masterData:any = {};
Object.assign(data,masterData);
let res:any = await Http.getInstance().put(`/ibizbooks/${context.ibizbook}`,data,isloading);
let res:any = await Http.getInstance().put(`/demoapi/ibizbooks/${context.ibizbook}`,data,isloading);
return res;
}
......@@ -245,7 +247,7 @@ export default class IBIZBOOKServiceBase extends EntityService {
*/
public async FetchDefault(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
let res:any = Http.getInstance().get(`/ibizbooks/fetchdefault`,tempData,isloading);
let res:any = Http.getInstance().get(`/demoapi/ibizbooks/fetchdefault`,tempData,isloading);
return res;
}
......@@ -260,7 +262,7 @@ export default class IBIZBOOKServiceBase extends EntityService {
*/
public async searchDefault(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
return await Http.getInstance().post(`/ibizbooks/searchdefault`,tempData,isloading);
return await Http.getInstance().post(`/demoapi/ibizbooks/searchdefault`,tempData,isloading);
}
/**
......@@ -273,7 +275,7 @@ export default class IBIZBOOKServiceBase extends EntityService {
* @memberof IBIZBOOKServiceBase
*/
public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().get(`/ibizbooks/${context.ibizbook}/select`,isloading);
let res:any = Http.getInstance().get(`/demoapi/ibizbooks/${context.ibizbook}/select`,isloading);
return res;
}
......
......@@ -3,6 +3,8 @@ import EntityService from '../entity-service';
/**
* 处理器服务对象基类
* 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成
......@@ -48,7 +50,7 @@ export default class IBIZCPUServiceBase extends EntityService {
* @memberof IBIZCPUServiceBase
*/
public async CheckKey(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().post(`/ibizcpus/${context.ibizcpu}/checkkey`,data,isloading);
let res:any = Http.getInstance().post(`/demoapi/ibizcpus/${context.ibizcpu}/checkkey`,data,isloading);
return res;
}
......@@ -71,7 +73,7 @@ export default class IBIZCPUServiceBase extends EntityService {
delete data.srffrontuf;
}
let tempContext:any = JSON.parse(JSON.stringify(context));
let res:any = await Http.getInstance().post(`/ibizcpus`,data,isloading);
let res:any = await Http.getInstance().post(`/demoapi/ibizcpus`,data,isloading);
return res;
}
......@@ -86,7 +88,7 @@ export default class IBIZCPUServiceBase extends EntityService {
* @memberof IBIZCPUServiceBase
*/
public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/ibizcpus/${context.ibizcpu}`,isloading);
let res:any = await Http.getInstance().get(`/demoapi/ibizcpus/${context.ibizcpu}`,isloading);
return res;
}
......@@ -101,7 +103,7 @@ export default class IBIZCPUServiceBase extends EntityService {
* @memberof IBIZCPUServiceBase
*/
public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/ibizcpus/getdraft`,isloading);
let res:any = await Http.getInstance().get(`/demoapi/ibizcpus/getdraft`,isloading);
res.data.ibizcpu = data.ibizcpu;
return res;
......@@ -117,7 +119,7 @@ export default class IBIZCPUServiceBase extends EntityService {
* @memberof IBIZCPUServiceBase
*/
public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().delete(`/ibizcpus/${context.ibizcpu}`,isloading);
let res:any = Http.getInstance().delete(`/demoapi/ibizcpus/${context.ibizcpu}`,isloading);
return res;
}
......@@ -133,7 +135,7 @@ export default class IBIZCPUServiceBase extends EntityService {
public async Save(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let masterData:any = {};
Object.assign(data,masterData);
let res:any = await Http.getInstance().post(`/ibizcpus/${context.ibizcpu}/save`,data,isloading);
let res:any = await Http.getInstance().post(`/demoapi/ibizcpus/${context.ibizcpu}/save`,data,isloading);
return res;
}
......@@ -150,7 +152,7 @@ export default class IBIZCPUServiceBase extends EntityService {
public async Update(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let masterData:any = {};
Object.assign(data,masterData);
let res:any = await Http.getInstance().put(`/ibizcpus/${context.ibizcpu}`,data,isloading);
let res:any = await Http.getInstance().put(`/demoapi/ibizcpus/${context.ibizcpu}`,data,isloading);
return res;
}
......@@ -166,7 +168,7 @@ export default class IBIZCPUServiceBase extends EntityService {
*/
public async FetchDefault(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
let res:any = Http.getInstance().get(`/ibizcpus/fetchdefault`,tempData,isloading);
let res:any = Http.getInstance().get(`/demoapi/ibizcpus/fetchdefault`,tempData,isloading);
return res;
}
......@@ -181,7 +183,7 @@ export default class IBIZCPUServiceBase extends EntityService {
*/
public async searchDefault(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
return await Http.getInstance().post(`/ibizcpus/searchdefault`,tempData,isloading);
return await Http.getInstance().post(`/demoapi/ibizcpus/searchdefault`,tempData,isloading);
}
/**
......@@ -194,7 +196,7 @@ export default class IBIZCPUServiceBase extends EntityService {
* @memberof IBIZCPUServiceBase
*/
public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().get(`/ibizcpus/${context.ibizcpu}/select`,isloading);
let res:any = Http.getInstance().get(`/demoapi/ibizcpus/${context.ibizcpu}/select`,isloading);
return res;
}
......
......@@ -3,6 +3,8 @@ import EntityService from '../entity-service';
/**
* 自定义服务对象基类
* 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成
......@@ -48,7 +50,7 @@ export default class IBIZCustomServiceBase extends EntityService {
* @memberof IBIZCustomServiceBase
*/
public async CheckKey(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().post(`/ibizcustoms/${context.ibizcustom}/checkkey`,data,isloading);
let res:any = Http.getInstance().post(`/demoapi/ibizcustoms/${context.ibizcustom}/checkkey`,data,isloading);
return res;
}
......@@ -71,7 +73,7 @@ export default class IBIZCustomServiceBase extends EntityService {
delete data.srffrontuf;
}
let tempContext:any = JSON.parse(JSON.stringify(context));
let res:any = await Http.getInstance().post(`/ibizcustoms`,data,isloading);
let res:any = await Http.getInstance().post(`/demoapi/ibizcustoms`,data,isloading);
return res;
}
......@@ -86,7 +88,7 @@ export default class IBIZCustomServiceBase extends EntityService {
* @memberof IBIZCustomServiceBase
*/
public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/ibizcustoms/${context.ibizcustom}`,isloading);
let res:any = await Http.getInstance().get(`/demoapi/ibizcustoms/${context.ibizcustom}`,isloading);
return res;
}
......@@ -101,7 +103,7 @@ export default class IBIZCustomServiceBase extends EntityService {
* @memberof IBIZCustomServiceBase
*/
public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/ibizcustoms/getdraft`,isloading);
let res:any = await Http.getInstance().get(`/demoapi/ibizcustoms/getdraft`,isloading);
res.data.ibizcustom = data.ibizcustom;
return res;
......@@ -117,7 +119,7 @@ export default class IBIZCustomServiceBase extends EntityService {
* @memberof IBIZCustomServiceBase
*/
public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().delete(`/ibizcustoms/${context.ibizcustom}`,isloading);
let res:any = Http.getInstance().delete(`/demoapi/ibizcustoms/${context.ibizcustom}`,isloading);
return res;
}
......@@ -133,7 +135,7 @@ export default class IBIZCustomServiceBase extends EntityService {
public async Save(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let masterData:any = {};
Object.assign(data,masterData);
let res:any = await Http.getInstance().post(`/ibizcustoms/${context.ibizcustom}/save`,data,isloading);
let res:any = await Http.getInstance().post(`/demoapi/ibizcustoms/${context.ibizcustom}/save`,data,isloading);
return res;
}
......@@ -150,7 +152,7 @@ export default class IBIZCustomServiceBase extends EntityService {
public async Update(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let masterData:any = {};
Object.assign(data,masterData);
let res:any = await Http.getInstance().put(`/ibizcustoms/${context.ibizcustom}`,data,isloading);
let res:any = await Http.getInstance().put(`/demoapi/ibizcustoms/${context.ibizcustom}`,data,isloading);
return res;
}
......@@ -166,7 +168,7 @@ export default class IBIZCustomServiceBase extends EntityService {
*/
public async FetchDefault(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
let res:any = Http.getInstance().get(`/ibizcustoms/fetchdefault`,tempData,isloading);
let res:any = Http.getInstance().get(`/demoapi/ibizcustoms/fetchdefault`,tempData,isloading);
return res;
}
......@@ -181,7 +183,7 @@ export default class IBIZCustomServiceBase extends EntityService {
*/
public async searchDefault(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
return await Http.getInstance().post(`/ibizcustoms/searchdefault`,tempData,isloading);
return await Http.getInstance().post(`/demoapi/ibizcustoms/searchdefault`,tempData,isloading);
}
/**
......@@ -194,7 +196,7 @@ export default class IBIZCustomServiceBase extends EntityService {
* @memberof IBIZCustomServiceBase
*/
public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().get(`/ibizcustoms/${context.ibizcustom}/select`,isloading);
let res:any = Http.getInstance().get(`/demoapi/ibizcustoms/${context.ibizcustom}/select`,isloading);
return res;
}
......
......@@ -3,6 +3,8 @@ import EntityService from '../entity-service';
/**
* 客户服务对象基类
* 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成
......@@ -48,7 +50,7 @@ export default class IBIZCustomer_INTFServiceBase extends EntityService {
* @memberof IBIZCustomer_INTFServiceBase
*/
public async CheckKey(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().post(`/ibizcustomer_intfs/${context.ibizcustomer_intf}/checkkey`,data,isloading);
let res:any = Http.getInstance().post(`/demoapi/ibizcustomer_intfs/${context.ibizcustomer_intf}/checkkey`,data,isloading);
return res;
}
......@@ -71,7 +73,7 @@ export default class IBIZCustomer_INTFServiceBase extends EntityService {
delete data.srffrontuf;
}
let tempContext:any = JSON.parse(JSON.stringify(context));
let res:any = await Http.getInstance().post(`/ibizcustomer_intfs`,data,isloading);
let res:any = await Http.getInstance().post(`/demoapi/ibizcustomer_intfs`,data,isloading);
return res;
}
......@@ -86,7 +88,7 @@ export default class IBIZCustomer_INTFServiceBase extends EntityService {
* @memberof IBIZCustomer_INTFServiceBase
*/
public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/ibizcustomer_intfs/${context.ibizcustomer_intf}`,isloading);
let res:any = await Http.getInstance().get(`/demoapi/ibizcustomer_intfs/${context.ibizcustomer_intf}`,isloading);
return res;
}
......@@ -101,7 +103,7 @@ export default class IBIZCustomer_INTFServiceBase extends EntityService {
* @memberof IBIZCustomer_INTFServiceBase
*/
public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/ibizcustomer_intfs/getdraft`,isloading);
let res:any = await Http.getInstance().get(`/demoapi/ibizcustomer_intfs/getdraft`,isloading);
res.data.ibizcustomer_intf = data.ibizcustomer_intf;
return res;
......@@ -117,7 +119,7 @@ export default class IBIZCustomer_INTFServiceBase extends EntityService {
* @memberof IBIZCustomer_INTFServiceBase
*/
public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().delete(`/ibizcustomer_intfs/${context.ibizcustomer_intf}`,isloading);
let res:any = Http.getInstance().delete(`/demoapi/ibizcustomer_intfs/${context.ibizcustomer_intf}`,isloading);
return res;
}
......@@ -133,7 +135,7 @@ export default class IBIZCustomer_INTFServiceBase extends EntityService {
public async Save(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let masterData:any = {};
Object.assign(data,masterData);
let res:any = await Http.getInstance().post(`/ibizcustomer_intfs/${context.ibizcustomer_intf}/save`,data,isloading);
let res:any = await Http.getInstance().post(`/demoapi/ibizcustomer_intfs/${context.ibizcustomer_intf}/save`,data,isloading);
return res;
}
......@@ -150,7 +152,7 @@ export default class IBIZCustomer_INTFServiceBase extends EntityService {
public async Update(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let masterData:any = {};
Object.assign(data,masterData);
let res:any = await Http.getInstance().put(`/ibizcustomer_intfs/${context.ibizcustomer_intf}`,data,isloading);
let res:any = await Http.getInstance().put(`/demoapi/ibizcustomer_intfs/${context.ibizcustomer_intf}`,data,isloading);
return res;
}
......@@ -165,7 +167,7 @@ export default class IBIZCustomer_INTFServiceBase extends EntityService {
* @memberof IBIZCustomer_INTFServiceBase
*/
public async XXX(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().post(`/ibizcustomer_intfs/${context.ibizcustomer_intf}/xxx`,data,isloading);
let res:any = Http.getInstance().post(`/demoapi/ibizcustomer_intfs/${context.ibizcustomer_intf}/xxx`,data,isloading);
return res;
}
......@@ -180,7 +182,7 @@ export default class IBIZCustomer_INTFServiceBase extends EntityService {
*/
public async XXXBatch(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
return await Http.getInstance().post(`/ibizcustomer_intfs/xxxbatch`,tempData,isloading);
return await Http.getInstance().post(`/demoapi/ibizcustomer_intfs/xxxbatch`,tempData,isloading);
}
/**
......@@ -194,7 +196,7 @@ export default class IBIZCustomer_INTFServiceBase extends EntityService {
*/
public async FetchCurCustomer(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
let res:any = Http.getInstance().post(`/ibizcustomer_intfs/fetchcurcustomer`,tempData,isloading);
let res:any = Http.getInstance().post(`/demoapi/ibizcustomer_intfs/fetchcurcustomer`,tempData,isloading);
return res;
}
......@@ -209,7 +211,7 @@ export default class IBIZCustomer_INTFServiceBase extends EntityService {
*/
public async searchCurCustomer(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
return await Http.getInstance().post(`/ibizcustomer_intfs/searchcurcustomer`,tempData,isloading);
return await Http.getInstance().post(`/demoapi/ibizcustomer_intfs/searchcurcustomer`,tempData,isloading);
}
/**
......@@ -223,7 +225,7 @@ export default class IBIZCustomer_INTFServiceBase extends EntityService {
*/
public async FetchDefault(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
let res:any = Http.getInstance().get(`/ibizcustomer_intfs/fetchdefault`,tempData,isloading);
let res:any = Http.getInstance().get(`/demoapi/ibizcustomer_intfs/fetchdefault`,tempData,isloading);
return res;
}
......@@ -238,7 +240,7 @@ export default class IBIZCustomer_INTFServiceBase extends EntityService {
*/
public async searchDefault(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
return await Http.getInstance().post(`/ibizcustomer_intfs/searchdefault`,tempData,isloading);
return await Http.getInstance().post(`/demoapi/ibizcustomer_intfs/searchdefault`,tempData,isloading);
}
/**
......@@ -251,7 +253,7 @@ export default class IBIZCustomer_INTFServiceBase extends EntityService {
* @memberof IBIZCustomer_INTFServiceBase
*/
public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().get(`/ibizcustomer_intfs/${context.ibizcustomer_intf}/select`,isloading);
let res:any = Http.getInstance().get(`/demoapi/ibizcustomer_intfs/${context.ibizcustomer_intf}/select`,isloading);
return res;
}
......
......@@ -3,6 +3,8 @@ import EntityService from '../entity-service';
/**
* 客户管理服务对象基类
* 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成
......@@ -48,7 +50,7 @@ export default class IBIZCustomerMGServiceBase extends EntityService {
* @memberof IBIZCustomerMGServiceBase
*/
public async CheckKey(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().post(`/ibizcustomermgs/${context.ibizcustomermg}/checkkey`,data,isloading);
let res:any = Http.getInstance().post(`/demoapi/ibizcustomermgs/${context.ibizcustomermg}/checkkey`,data,isloading);
return res;
}
......@@ -71,7 +73,7 @@ export default class IBIZCustomerMGServiceBase extends EntityService {
delete data.srffrontuf;
}
let tempContext:any = JSON.parse(JSON.stringify(context));
let res:any = await Http.getInstance().post(`/ibizcustomermgs`,data,isloading);
let res:any = await Http.getInstance().post(`/demoapi/ibizcustomermgs`,data,isloading);
return res;
}
......@@ -86,7 +88,7 @@ export default class IBIZCustomerMGServiceBase extends EntityService {
* @memberof IBIZCustomerMGServiceBase
*/
public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/ibizcustomermgs/${context.ibizcustomermg}`,isloading);
let res:any = await Http.getInstance().get(`/demoapi/ibizcustomermgs/${context.ibizcustomermg}`,isloading);
return res;
}
......@@ -101,7 +103,7 @@ export default class IBIZCustomerMGServiceBase extends EntityService {
* @memberof IBIZCustomerMGServiceBase
*/
public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/ibizcustomermgs/getdraft`,isloading);
let res:any = await Http.getInstance().get(`/demoapi/ibizcustomermgs/getdraft`,isloading);
res.data.ibizcustomermg = data.ibizcustomermg;
return res;
......@@ -117,7 +119,7 @@ export default class IBIZCustomerMGServiceBase extends EntityService {
* @memberof IBIZCustomerMGServiceBase
*/
public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().delete(`/ibizcustomermgs/${context.ibizcustomermg}`,isloading);
let res:any = Http.getInstance().delete(`/demoapi/ibizcustomermgs/${context.ibizcustomermg}`,isloading);
return res;
}
......@@ -133,7 +135,7 @@ export default class IBIZCustomerMGServiceBase extends EntityService {
public async Save(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let masterData:any = {};
Object.assign(data,masterData);
let res:any = await Http.getInstance().post(`/ibizcustomermgs/${context.ibizcustomermg}/save`,data,isloading);
let res:any = await Http.getInstance().post(`/demoapi/ibizcustomermgs/${context.ibizcustomermg}/save`,data,isloading);
return res;
}
......@@ -150,7 +152,7 @@ export default class IBIZCustomerMGServiceBase extends EntityService {
public async Update(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let masterData:any = {};
Object.assign(data,masterData);
let res:any = await Http.getInstance().put(`/ibizcustomermgs/${context.ibizcustomermg}`,data,isloading);
let res:any = await Http.getInstance().put(`/demoapi/ibizcustomermgs/${context.ibizcustomermg}`,data,isloading);
return res;
}
......@@ -166,7 +168,7 @@ export default class IBIZCustomerMGServiceBase extends EntityService {
*/
public async FetchDefault(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
let res:any = Http.getInstance().get(`/ibizcustomermgs/fetchdefault`,tempData,isloading);
let res:any = Http.getInstance().get(`/demoapi/ibizcustomermgs/fetchdefault`,tempData,isloading);
return res;
}
......@@ -181,7 +183,7 @@ export default class IBIZCustomerMGServiceBase extends EntityService {
*/
public async searchDefault(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
return await Http.getInstance().post(`/ibizcustomermgs/searchdefault`,tempData,isloading);
return await Http.getInstance().post(`/demoapi/ibizcustomermgs/searchdefault`,tempData,isloading);
}
/**
......@@ -194,7 +196,7 @@ export default class IBIZCustomerMGServiceBase extends EntityService {
* @memberof IBIZCustomerMGServiceBase
*/
public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().get(`/ibizcustomermgs/${context.ibizcustomermg}/select`,isloading);
let res:any = Http.getInstance().get(`/demoapi/ibizcustomermgs/${context.ibizcustomermg}/select`,isloading);
return res;
}
......
......@@ -3,6 +3,8 @@ import EntityService from '../entity-service';
/**
* 客户服务对象基类
* 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成
......@@ -48,7 +50,7 @@ export default class IBIZCustomerServiceBase extends EntityService {
* @memberof IBIZCustomerServiceBase
*/
public async CheckKey(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().post(`/ibizcustomers/${context.ibizcustomer}/checkkey`,data,isloading);
let res:any = Http.getInstance().post(`/demoapi/ibizcustomers/${context.ibizcustomer}/checkkey`,data,isloading);
return res;
}
......@@ -71,7 +73,7 @@ export default class IBIZCustomerServiceBase extends EntityService {
delete data.srffrontuf;
}
let tempContext:any = JSON.parse(JSON.stringify(context));
let res:any = await Http.getInstance().post(`/ibizcustomers`,data,isloading);
let res:any = await Http.getInstance().post(`/demoapi/ibizcustomers`,data,isloading);
return res;
}
......@@ -86,7 +88,7 @@ export default class IBIZCustomerServiceBase extends EntityService {
* @memberof IBIZCustomerServiceBase
*/
public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/ibizcustomers/${context.ibizcustomer}`,isloading);
let res:any = await Http.getInstance().get(`/demoapi/ibizcustomers/${context.ibizcustomer}`,isloading);
return res;
}
......@@ -101,7 +103,7 @@ export default class IBIZCustomerServiceBase extends EntityService {
* @memberof IBIZCustomerServiceBase
*/
public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/ibizcustomers/getdraft`,isloading);
let res:any = await Http.getInstance().get(`/demoapi/ibizcustomers/getdraft`,isloading);
res.data.ibizcustomer = data.ibizcustomer;
return res;
......@@ -127,7 +129,7 @@ export default class IBIZCustomerServiceBase extends EntityService {
* @memberof IBIZCustomerServiceBase
*/
public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().delete(`/ibizcustomers/${context.ibizcustomer}`,isloading);
let res:any = Http.getInstance().delete(`/demoapi/ibizcustomers/${context.ibizcustomer}`,isloading);
return res;
}
......@@ -143,7 +145,7 @@ export default class IBIZCustomerServiceBase extends EntityService {
public async Save(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let masterData:any = {};
Object.assign(data,masterData);
let res:any = await Http.getInstance().post(`/ibizcustomers/${context.ibizcustomer}/save`,data,isloading);
let res:any = await Http.getInstance().post(`/demoapi/ibizcustomers/${context.ibizcustomer}/save`,data,isloading);
return res;
}
......@@ -160,7 +162,7 @@ export default class IBIZCustomerServiceBase extends EntityService {
public async Update(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let masterData:any = {};
Object.assign(data,masterData);
let res:any = await Http.getInstance().put(`/ibizcustomers/${context.ibizcustomer}`,data,isloading);
let res:any = await Http.getInstance().put(`/demoapi/ibizcustomers/${context.ibizcustomer}`,data,isloading);
return res;
}
......@@ -176,7 +178,7 @@ export default class IBIZCustomerServiceBase extends EntityService {
*/
public async FetchDefault(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
let res:any = Http.getInstance().get(`/ibizcustomers/fetchdefault`,tempData,isloading);
let res:any = Http.getInstance().get(`/demoapi/ibizcustomers/fetchdefault`,tempData,isloading);
return res;
}
......@@ -191,7 +193,7 @@ export default class IBIZCustomerServiceBase extends EntityService {
*/
public async searchDefault(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
return await Http.getInstance().post(`/ibizcustomers/searchdefault`,tempData,isloading);
return await Http.getInstance().post(`/demoapi/ibizcustomers/searchdefault`,tempData,isloading);
}
/**
......@@ -204,7 +206,7 @@ export default class IBIZCustomerServiceBase extends EntityService {
* @memberof IBIZCustomerServiceBase
*/
public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().get(`/ibizcustomers/${context.ibizcustomer}/select`,isloading);
let res:any = Http.getInstance().get(`/demoapi/ibizcustomers/${context.ibizcustomer}/select`,isloading);
return res;
}
......
......@@ -3,6 +3,8 @@ import EntityService from '../entity-service';
/**
* 硬件服务对象基类
* 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成
......@@ -48,7 +50,7 @@ export default class IBIZHardwareServiceBase extends EntityService {
* @memberof IBIZHardwareServiceBase
*/
public async CheckKey(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().post(`/ibizhardwares/${context.ibizhardware}/checkkey`,data,isloading);
let res:any = Http.getInstance().post(`/demoapi/ibizhardwares/${context.ibizhardware}/checkkey`,data,isloading);
return res;
}
......@@ -71,7 +73,7 @@ export default class IBIZHardwareServiceBase extends EntityService {
delete data.srffrontuf;
}
let tempContext:any = JSON.parse(JSON.stringify(context));
let res:any = await Http.getInstance().post(`/ibizhardwares`,data,isloading);
let res:any = await Http.getInstance().post(`/demoapi/ibizhardwares`,data,isloading);
return res;
}
......@@ -86,7 +88,7 @@ export default class IBIZHardwareServiceBase extends EntityService {
* @memberof IBIZHardwareServiceBase
*/
public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/ibizhardwares/${context.ibizhardware}`,isloading);
let res:any = await Http.getInstance().get(`/demoapi/ibizhardwares/${context.ibizhardware}`,isloading);
return res;
}
......@@ -101,7 +103,7 @@ export default class IBIZHardwareServiceBase extends EntityService {
* @memberof IBIZHardwareServiceBase
*/
public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/ibizhardwares/getdraft`,isloading);
let res:any = await Http.getInstance().get(`/demoapi/ibizhardwares/getdraft`,isloading);
res.data.ibizhardware = data.ibizhardware;
return res;
......@@ -117,7 +119,7 @@ export default class IBIZHardwareServiceBase extends EntityService {
* @memberof IBIZHardwareServiceBase
*/
public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().delete(`/ibizhardwares/${context.ibizhardware}`,isloading);
let res:any = Http.getInstance().delete(`/demoapi/ibizhardwares/${context.ibizhardware}`,isloading);
return res;
}
......@@ -133,7 +135,7 @@ export default class IBIZHardwareServiceBase extends EntityService {
public async Save(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let masterData:any = {};
Object.assign(data,masterData);
let res:any = await Http.getInstance().post(`/ibizhardwares/${context.ibizhardware}/save`,data,isloading);
let res:any = await Http.getInstance().post(`/demoapi/ibizhardwares/${context.ibizhardware}/save`,data,isloading);
return res;
}
......@@ -150,7 +152,7 @@ export default class IBIZHardwareServiceBase extends EntityService {
public async Update(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let masterData:any = {};
Object.assign(data,masterData);
let res:any = await Http.getInstance().put(`/ibizhardwares/${context.ibizhardware}`,data,isloading);
let res:any = await Http.getInstance().put(`/demoapi/ibizhardwares/${context.ibizhardware}`,data,isloading);
return res;
}
......@@ -166,7 +168,7 @@ export default class IBIZHardwareServiceBase extends EntityService {
*/
public async FetchDefault(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
let res:any = Http.getInstance().get(`/ibizhardwares/fetchdefault`,tempData,isloading);
let res:any = Http.getInstance().get(`/demoapi/ibizhardwares/fetchdefault`,tempData,isloading);
return res;
}
......@@ -181,7 +183,7 @@ export default class IBIZHardwareServiceBase extends EntityService {
*/
public async searchDefault(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
return await Http.getInstance().post(`/ibizhardwares/searchdefault`,tempData,isloading);
return await Http.getInstance().post(`/demoapi/ibizhardwares/searchdefault`,tempData,isloading);
}
/**
......@@ -217,7 +219,7 @@ export default class IBIZHardwareServiceBase extends EntityService {
*/
public async searchIndexDER(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
return await Http.getInstance().post(`/ibizhardwares/searchindexder`,tempData,isloading);
return await Http.getInstance().post(`/demoapi/ibizhardwares/searchindexder`,tempData,isloading);
}
/**
......@@ -230,7 +232,7 @@ export default class IBIZHardwareServiceBase extends EntityService {
* @memberof IBIZHardwareServiceBase
*/
public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().get(`/ibizhardwares/${context.ibizhardware}/select`,isloading);
let res:any = Http.getInstance().get(`/demoapi/ibizhardwares/${context.ibizhardware}/select`,isloading);
return res;
}
......
......@@ -3,6 +3,8 @@ import EntityService from '../entity-service';
/**
* 订单类型服务对象基类
* 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成
......@@ -48,7 +50,7 @@ export default class IBIZOrderTypeServiceBase extends EntityService {
* @memberof IBIZOrderTypeServiceBase
*/
public async CheckKey(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().post(`/ibizordertypes/${context.ibizordertype}/checkkey`,data,isloading);
let res:any = Http.getInstance().post(`/demoapi/ibizordertypes/${context.ibizordertype}/checkkey`,data,isloading);
return res;
}
......@@ -71,7 +73,7 @@ export default class IBIZOrderTypeServiceBase extends EntityService {
delete data.srffrontuf;
}
let tempContext:any = JSON.parse(JSON.stringify(context));
let res:any = await Http.getInstance().post(`/ibizordertypes`,data,isloading);
let res:any = await Http.getInstance().post(`/demoapi/ibizordertypes`,data,isloading);
return res;
}
......@@ -86,7 +88,7 @@ export default class IBIZOrderTypeServiceBase extends EntityService {
* @memberof IBIZOrderTypeServiceBase
*/
public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/ibizordertypes/${context.ibizordertype}`,isloading);
let res:any = await Http.getInstance().get(`/demoapi/ibizordertypes/${context.ibizordertype}`,isloading);
return res;
}
......@@ -101,7 +103,7 @@ export default class IBIZOrderTypeServiceBase extends EntityService {
* @memberof IBIZOrderTypeServiceBase
*/
public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/ibizordertypes/getdraft`,isloading);
let res:any = await Http.getInstance().get(`/demoapi/ibizordertypes/getdraft`,isloading);
res.data.ibizordertype = data.ibizordertype;
return res;
......@@ -117,7 +119,7 @@ export default class IBIZOrderTypeServiceBase extends EntityService {
* @memberof IBIZOrderTypeServiceBase
*/
public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().delete(`/ibizordertypes/${context.ibizordertype}`,isloading);
let res:any = Http.getInstance().delete(`/demoapi/ibizordertypes/${context.ibizordertype}`,isloading);
return res;
}
......@@ -131,7 +133,7 @@ export default class IBIZOrderTypeServiceBase extends EntityService {
* @memberof IBIZOrderTypeServiceBase
*/
public async ResetCodeList(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().post(`/ibizordertypes/${context.ibizordertype}/resetcodelist`,data,isloading);
let res:any = Http.getInstance().post(`/demoapi/ibizordertypes/${context.ibizordertype}/resetcodelist`,data,isloading);
return res;
}
......@@ -146,7 +148,7 @@ export default class IBIZOrderTypeServiceBase extends EntityService {
*/
public async ResetCodeListBatch(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
return await Http.getInstance().post(`/ibizordertypes/resetcodelistbatch`,tempData,isloading);
return await Http.getInstance().post(`/demoapi/ibizordertypes/resetcodelistbatch`,tempData,isloading);
}
/**
......@@ -161,7 +163,7 @@ export default class IBIZOrderTypeServiceBase extends EntityService {
public async Save(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let masterData:any = {};
Object.assign(data,masterData);
let res:any = await Http.getInstance().post(`/ibizordertypes/${context.ibizordertype}/save`,data,isloading);
let res:any = await Http.getInstance().post(`/demoapi/ibizordertypes/${context.ibizordertype}/save`,data,isloading);
return res;
}
......@@ -178,7 +180,7 @@ export default class IBIZOrderTypeServiceBase extends EntityService {
public async Update(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let masterData:any = {};
Object.assign(data,masterData);
let res:any = await Http.getInstance().put(`/ibizordertypes/${context.ibizordertype}`,data,isloading);
let res:any = await Http.getInstance().put(`/demoapi/ibizordertypes/${context.ibizordertype}`,data,isloading);
return res;
}
......@@ -194,7 +196,7 @@ export default class IBIZOrderTypeServiceBase extends EntityService {
*/
public async FetchDefault(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
let res:any = Http.getInstance().get(`/ibizordertypes/fetchdefault`,tempData,isloading);
let res:any = Http.getInstance().get(`/demoapi/ibizordertypes/fetchdefault`,tempData,isloading);
return res;
}
......@@ -209,7 +211,7 @@ export default class IBIZOrderTypeServiceBase extends EntityService {
*/
public async searchDefault(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
return await Http.getInstance().post(`/ibizordertypes/searchdefault`,tempData,isloading);
return await Http.getInstance().post(`/demoapi/ibizordertypes/searchdefault`,tempData,isloading);
}
/**
......@@ -222,7 +224,7 @@ export default class IBIZOrderTypeServiceBase extends EntityService {
* @memberof IBIZOrderTypeServiceBase
*/
public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().get(`/ibizordertypes/${context.ibizordertype}/select`,isloading);
let res:any = Http.getInstance().get(`/demoapi/ibizordertypes/${context.ibizordertype}/select`,isloading);
return res;
}
......
......@@ -3,6 +3,8 @@ import EntityService from '../entity-service';
/**
* 示例数据库服务对象基类
* 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成
......@@ -48,7 +50,7 @@ export default class IBIZSampleServiceBase extends EntityService {
* @memberof IBIZSampleServiceBase
*/
public async CheckKey(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().post(`/ibizsamples/${context.ibizsample}/checkkey`,data,isloading);
let res:any = Http.getInstance().post(`/demoapi/ibizsamples/${context.ibizsample}/checkkey`,data,isloading);
return res;
}
......@@ -71,7 +73,7 @@ export default class IBIZSampleServiceBase extends EntityService {
delete data.srffrontuf;
}
let tempContext:any = JSON.parse(JSON.stringify(context));
let res:any = await Http.getInstance().post(`/ibizsamples`,data,isloading);
let res:any = await Http.getInstance().post(`/demoapi/ibizsamples`,data,isloading);
return res;
}
......@@ -86,7 +88,7 @@ export default class IBIZSampleServiceBase extends EntityService {
* @memberof IBIZSampleServiceBase
*/
public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/ibizsamples/${context.ibizsample}`,isloading);
let res:any = await Http.getInstance().get(`/demoapi/ibizsamples/${context.ibizsample}`,isloading);
return res;
}
......@@ -101,7 +103,7 @@ export default class IBIZSampleServiceBase extends EntityService {
* @memberof IBIZSampleServiceBase
*/
public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/ibizsamples/getdraft`,isloading);
let res:any = await Http.getInstance().get(`/demoapi/ibizsamples/getdraft`,isloading);
res.data.ibizsample = data.ibizsample;
return res;
......@@ -117,7 +119,7 @@ export default class IBIZSampleServiceBase extends EntityService {
* @memberof IBIZSampleServiceBase
*/
public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().delete(`/ibizsamples/${context.ibizsample}`,isloading);
let res:any = Http.getInstance().delete(`/demoapi/ibizsamples/${context.ibizsample}`,isloading);
return res;
}
......@@ -133,7 +135,7 @@ export default class IBIZSampleServiceBase extends EntityService {
public async Save(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let masterData:any = {};
Object.assign(data,masterData);
let res:any = await Http.getInstance().post(`/ibizsamples/${context.ibizsample}/save`,data,isloading);
let res:any = await Http.getInstance().post(`/demoapi/ibizsamples/${context.ibizsample}/save`,data,isloading);
return res;
}
......@@ -150,7 +152,7 @@ export default class IBIZSampleServiceBase extends EntityService {
public async Update(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let masterData:any = {};
Object.assign(data,masterData);
let res:any = await Http.getInstance().put(`/ibizsamples/${context.ibizsample}`,data,isloading);
let res:any = await Http.getInstance().put(`/demoapi/ibizsamples/${context.ibizsample}`,data,isloading);
return res;
}
......@@ -166,7 +168,7 @@ export default class IBIZSampleServiceBase extends EntityService {
*/
public async FetchDefault(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
let res:any = Http.getInstance().get(`/ibizsamples/fetchdefault`,tempData,isloading);
let res:any = Http.getInstance().get(`/demoapi/ibizsamples/fetchdefault`,tempData,isloading);
return res;
}
......@@ -181,7 +183,7 @@ export default class IBIZSampleServiceBase extends EntityService {
*/
public async searchDefault(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
return await Http.getInstance().post(`/ibizsamples/searchdefault`,tempData,isloading);
return await Http.getInstance().post(`/demoapi/ibizsamples/searchdefault`,tempData,isloading);
}
/**
......@@ -195,7 +197,7 @@ export default class IBIZSampleServiceBase extends EntityService {
*/
public async FetchFormType(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
let res:any = Http.getInstance().get(`/ibizsamples/fetchformtype`,tempData,isloading);
let res:any = Http.getInstance().get(`/demoapi/ibizsamples/fetchformtype`,tempData,isloading);
return res;
}
......@@ -210,7 +212,7 @@ export default class IBIZSampleServiceBase extends EntityService {
*/
public async searchFormType(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
return await Http.getInstance().post(`/ibizsamples/searchformtype`,tempData,isloading);
return await Http.getInstance().post(`/demoapi/ibizsamples/searchformtype`,tempData,isloading);
}
/**
......@@ -223,7 +225,7 @@ export default class IBIZSampleServiceBase extends EntityService {
* @memberof IBIZSampleServiceBase
*/
public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().get(`/ibizsamples/${context.ibizsample}/select`,isloading);
let res:any = Http.getInstance().get(`/demoapi/ibizsamples/${context.ibizsample}/select`,isloading);
return res;
}
......
......@@ -3,6 +3,8 @@ import EntityService from '../entity-service';
/**
* 示例实体01服务对象基类
* 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成
......@@ -51,11 +53,11 @@ export default class IBIZSample0001ServiceBase extends EntityService {
if(context.ibizsample0002 && context.ibizsample0001){
let masterData:any = {};
Object.assign(data,masterData);
let res:any = await Http.getInstance().post(`/ibizsample0002s/${context.ibizsample0002}/ibizsample0001s/${context.ibizsample0001}/checkkey`,data,isloading);
let res:any = await Http.getInstance().post(`/demoapi/ibizsample0002s/${context.ibizsample0002}/ibizsample0001s/${context.ibizsample0001}/checkkey`,data,isloading);
return res;
}
let res:any = Http.getInstance().post(`/ibizsample0001s/${context.ibizsample0001}/checkkey`,data,isloading);
let res:any = Http.getInstance().post(`/demoapi/ibizsample0001s/${context.ibizsample0001}/checkkey`,data,isloading);
return res;
}
......@@ -79,7 +81,7 @@ export default class IBIZSample0001ServiceBase extends EntityService {
delete data.srffrontuf;
}
let tempContext:any = JSON.parse(JSON.stringify(context));
let res:any = await Http.getInstance().post(`/ibizsample0002s/${context.ibizsample0002}/ibizsample0001s`,data,isloading);
let res:any = await Http.getInstance().post(`/demoapi/ibizsample0002s/${context.ibizsample0002}/ibizsample0001s`,data,isloading);
return res;
}
......@@ -92,7 +94,7 @@ export default class IBIZSample0001ServiceBase extends EntityService {
delete data.srffrontuf;
}
let tempContext:any = JSON.parse(JSON.stringify(context));
let res:any = await Http.getInstance().post(`/ibizsample0001s`,data,isloading);
let res:any = await Http.getInstance().post(`/demoapi/ibizsample0001s`,data,isloading);
return res;
}
......@@ -108,11 +110,11 @@ export default class IBIZSample0001ServiceBase extends EntityService {
*/
public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
if(context.ibizsample0002 && context.ibizsample0001){
let res:any = await Http.getInstance().get(`/ibizsample0002s/${context.ibizsample0002}/ibizsample0001s/${context.ibizsample0001}`,isloading);
let res:any = await Http.getInstance().get(`/demoapi/ibizsample0002s/${context.ibizsample0002}/ibizsample0001s/${context.ibizsample0001}`,isloading);
return res;
}
let res:any = await Http.getInstance().get(`/ibizsample0001s/${context.ibizsample0001}`,isloading);
let res:any = await Http.getInstance().get(`/demoapi/ibizsample0001s/${context.ibizsample0001}`,isloading);
return res;
}
......@@ -128,12 +130,12 @@ export default class IBIZSample0001ServiceBase extends EntityService {
*/
public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
if(context.ibizsample0002 && true){
let res:any = await Http.getInstance().get(`/ibizsample0002s/${context.ibizsample0002}/ibizsample0001s/getdraft`,isloading);
let res:any = await Http.getInstance().get(`/demoapi/ibizsample0002s/${context.ibizsample0002}/ibizsample0001s/getdraft`,isloading);
res.data.ibizsample0001 = data.ibizsample0001;
return res;
}
let res:any = await Http.getInstance().get(`/ibizsample0001s/getdraft`,isloading);
let res:any = await Http.getInstance().get(`/demoapi/ibizsample0001s/getdraft`,isloading);
res.data.ibizsample0001 = data.ibizsample0001;
return res;
......@@ -150,10 +152,10 @@ export default class IBIZSample0001ServiceBase extends EntityService {
*/
public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
if(context.ibizsample0002 && context.ibizsample0001){
let res:any = Http.getInstance().delete(`/ibizsample0002s/${context.ibizsample0002}/ibizsample0001s/${context.ibizsample0001}`,isloading);
let res:any = Http.getInstance().delete(`/demoapi/ibizsample0002s/${context.ibizsample0002}/ibizsample0001s/${context.ibizsample0001}`,isloading);
return res;
}
let res:any = Http.getInstance().delete(`/ibizsample0001s/${context.ibizsample0001}`,isloading);
let res:any = Http.getInstance().delete(`/demoapi/ibizsample0001s/${context.ibizsample0001}`,isloading);
return res;
}
......@@ -170,13 +172,13 @@ export default class IBIZSample0001ServiceBase extends EntityService {
if(context.ibizsample0002 && context.ibizsample0001){
let masterData:any = {};
Object.assign(data,masterData);
let res:any = await Http.getInstance().post(`/ibizsample0002s/${context.ibizsample0002}/ibizsample0001s/${context.ibizsample0001}/save`,data,isloading);
let res:any = await Http.getInstance().post(`/demoapi/ibizsample0002s/${context.ibizsample0002}/ibizsample0001s/${context.ibizsample0001}/save`,data,isloading);
return res;
}
let masterData:any = {};
Object.assign(data,masterData);
let res:any = await Http.getInstance().post(`/ibizsample0001s/${context.ibizsample0001}/save`,data,isloading);
let res:any = await Http.getInstance().post(`/demoapi/ibizsample0001s/${context.ibizsample0001}/save`,data,isloading);
return res;
}
......@@ -194,13 +196,13 @@ export default class IBIZSample0001ServiceBase extends EntityService {
if(context.ibizsample0002 && context.ibizsample0001){
let masterData:any = {};
Object.assign(data,masterData);
let res:any = await Http.getInstance().put(`/ibizsample0002s/${context.ibizsample0002}/ibizsample0001s/${context.ibizsample0001}`,data,isloading);
let res:any = await Http.getInstance().put(`/demoapi/ibizsample0002s/${context.ibizsample0002}/ibizsample0001s/${context.ibizsample0001}`,data,isloading);
return res;
}
let masterData:any = {};
Object.assign(data,masterData);
let res:any = await Http.getInstance().put(`/ibizsample0001s/${context.ibizsample0001}`,data,isloading);
let res:any = await Http.getInstance().put(`/demoapi/ibizsample0001s/${context.ibizsample0001}`,data,isloading);
return res;
}
......@@ -217,11 +219,11 @@ export default class IBIZSample0001ServiceBase extends EntityService {
public async FetchDefault(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
if(context.ibizsample0002 && true){
let tempData:any = JSON.parse(JSON.stringify(data));
let res:any = Http.getInstance().get(`/ibizsample0002s/${context.ibizsample0002}/ibizsample0001s/fetchdefault`,tempData,isloading);
let res:any = Http.getInstance().get(`/demoapi/ibizsample0002s/${context.ibizsample0002}/ibizsample0001s/fetchdefault`,tempData,isloading);
return res;
}
let tempData:any = JSON.parse(JSON.stringify(data));
let res:any = Http.getInstance().get(`/ibizsample0001s/fetchdefault`,tempData,isloading);
let res:any = Http.getInstance().get(`/demoapi/ibizsample0001s/fetchdefault`,tempData,isloading);
return res;
}
......@@ -237,10 +239,10 @@ export default class IBIZSample0001ServiceBase extends EntityService {
public async searchDefault(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
if(context.ibizsample0002 && true){
let tempData:any = JSON.parse(JSON.stringify(data));
return await Http.getInstance().post(`/ibizsample0002s/${context.ibizsample0002}/ibizsample0001s/searchdefault`,tempData,isloading);
return await Http.getInstance().post(`/demoapi/ibizsample0002s/${context.ibizsample0002}/ibizsample0001s/searchdefault`,tempData,isloading);
}
let tempData:any = JSON.parse(JSON.stringify(data));
return await Http.getInstance().post(`/ibizsample0001s/searchdefault`,tempData,isloading);
return await Http.getInstance().post(`/demoapi/ibizsample0001s/searchdefault`,tempData,isloading);
}
/**
......@@ -254,11 +256,11 @@ export default class IBIZSample0001ServiceBase extends EntityService {
*/
public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
if(context.ibizsample0002 && context.ibizsample0001){
let res:any = Http.getInstance().get(`/ibizsample0002s/${context.ibizsample0002}/ibizsample0001s/${context.ibizsample0001}/select`,isloading);
let res:any = Http.getInstance().get(`/demoapi/ibizsample0002s/${context.ibizsample0002}/ibizsample0001s/${context.ibizsample0001}/select`,isloading);
return res;
}
let res:any = Http.getInstance().get(`/ibizsample0001s/${context.ibizsample0001}/select`,isloading);
let res:any = Http.getInstance().get(`/demoapi/ibizsample0001s/${context.ibizsample0001}/select`,isloading);
return res;
}
......
......@@ -3,6 +3,8 @@ import EntityService from '../entity-service';
/**
* 示例实体02服务对象基类
* 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成
......@@ -48,7 +50,7 @@ export default class IBIZSample0002ServiceBase extends EntityService {
* @memberof IBIZSample0002ServiceBase
*/
public async CheckKey(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().post(`/ibizsample0002s/${context.ibizsample0002}/checkkey`,data,isloading);
let res:any = Http.getInstance().post(`/demoapi/ibizsample0002s/${context.ibizsample0002}/checkkey`,data,isloading);
return res;
}
......@@ -71,7 +73,7 @@ export default class IBIZSample0002ServiceBase extends EntityService {
delete data.srffrontuf;
}
let tempContext:any = JSON.parse(JSON.stringify(context));
let res:any = await Http.getInstance().post(`/ibizsample0002s`,data,isloading);
let res:any = await Http.getInstance().post(`/demoapi/ibizsample0002s`,data,isloading);
this.tempStorage.setItem(tempContext.srfsessionkey+'_ibizsample0001s',JSON.stringify(res.data.ibizsample0001s?res.data.ibizsample0001s:[]));
return res;
......@@ -87,7 +89,7 @@ export default class IBIZSample0002ServiceBase extends EntityService {
* @memberof IBIZSample0002ServiceBase
*/
public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/ibizsample0002s/${context.ibizsample0002}`,isloading);
let res:any = await Http.getInstance().get(`/demoapi/ibizsample0002s/${context.ibizsample0002}`,isloading);
return res;
}
......@@ -102,7 +104,7 @@ export default class IBIZSample0002ServiceBase extends EntityService {
* @memberof IBIZSample0002ServiceBase
*/
public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/ibizsample0002s/getdraft`,isloading);
let res:any = await Http.getInstance().get(`/demoapi/ibizsample0002s/getdraft`,isloading);
res.data.ibizsample0002 = data.ibizsample0002;
return res;
......@@ -118,7 +120,7 @@ export default class IBIZSample0002ServiceBase extends EntityService {
* @memberof IBIZSample0002ServiceBase
*/
public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().delete(`/ibizsample0002s/${context.ibizsample0002}`,isloading);
let res:any = Http.getInstance().delete(`/demoapi/ibizsample0002s/${context.ibizsample0002}`,isloading);
return res;
}
......@@ -134,7 +136,7 @@ export default class IBIZSample0002ServiceBase extends EntityService {
public async Save(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let masterData:any = {};
Object.assign(data,masterData);
let res:any = await Http.getInstance().post(`/ibizsample0002s/${context.ibizsample0002}/save`,data,isloading);
let res:any = await Http.getInstance().post(`/demoapi/ibizsample0002s/${context.ibizsample0002}/save`,data,isloading);
return res;
}
......@@ -151,7 +153,7 @@ export default class IBIZSample0002ServiceBase extends EntityService {
public async Update(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let masterData:any = {};
Object.assign(data,masterData);
let res:any = await Http.getInstance().put(`/ibizsample0002s/${context.ibizsample0002}`,data,isloading);
let res:any = await Http.getInstance().put(`/demoapi/ibizsample0002s/${context.ibizsample0002}`,data,isloading);
return res;
}
......@@ -167,7 +169,7 @@ export default class IBIZSample0002ServiceBase extends EntityService {
*/
public async FetchDefault(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
let res:any = Http.getInstance().get(`/ibizsample0002s/fetchdefault`,tempData,isloading);
let res:any = Http.getInstance().get(`/demoapi/ibizsample0002s/fetchdefault`,tempData,isloading);
return res;
}
......@@ -182,7 +184,7 @@ export default class IBIZSample0002ServiceBase extends EntityService {
*/
public async searchDefault(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
return await Http.getInstance().post(`/ibizsample0002s/searchdefault`,tempData,isloading);
return await Http.getInstance().post(`/demoapi/ibizsample0002s/searchdefault`,tempData,isloading);
}
/**
......@@ -195,7 +197,7 @@ export default class IBIZSample0002ServiceBase extends EntityService {
* @memberof IBIZSample0002ServiceBase
*/
public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().get(`/ibizsample0002s/${context.ibizsample0002}/select`,isloading);
let res:any = Http.getInstance().get(`/demoapi/ibizsample0002s/${context.ibizsample0002}/select`,isloading);
return res;
}
......
......@@ -3,6 +3,8 @@ import EntityService from '../entity-service';
/**
* 示例实体03服务对象基类
* 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成
......@@ -48,7 +50,7 @@ export default class IBIZSample0003ServiceBase extends EntityService {
* @memberof IBIZSample0003ServiceBase
*/
public async CheckKey(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().post(`/ibizsample0003s/${context.ibizsample0003}/checkkey`,data,isloading);
let res:any = Http.getInstance().post(`/demoapi/ibizsample0003s/${context.ibizsample0003}/checkkey`,data,isloading);
return res;
}
......@@ -71,7 +73,7 @@ export default class IBIZSample0003ServiceBase extends EntityService {
delete data.srffrontuf;
}
let tempContext:any = JSON.parse(JSON.stringify(context));
let res:any = await Http.getInstance().post(`/ibizsample0003s`,data,isloading);
let res:any = await Http.getInstance().post(`/demoapi/ibizsample0003s`,data,isloading);
return res;
}
......@@ -86,7 +88,7 @@ export default class IBIZSample0003ServiceBase extends EntityService {
* @memberof IBIZSample0003ServiceBase
*/
public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/ibizsample0003s/${context.ibizsample0003}`,isloading);
let res:any = await Http.getInstance().get(`/demoapi/ibizsample0003s/${context.ibizsample0003}`,isloading);
return res;
}
......@@ -101,7 +103,7 @@ export default class IBIZSample0003ServiceBase extends EntityService {
* @memberof IBIZSample0003ServiceBase
*/
public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/ibizsample0003s/getdraft`,isloading);
let res:any = await Http.getInstance().get(`/demoapi/ibizsample0003s/getdraft`,isloading);
res.data.ibizsample0003 = data.ibizsample0003;
return res;
......@@ -117,7 +119,7 @@ export default class IBIZSample0003ServiceBase extends EntityService {
* @memberof IBIZSample0003ServiceBase
*/
public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().delete(`/ibizsample0003s/${context.ibizsample0003}`,isloading);
let res:any = Http.getInstance().delete(`/demoapi/ibizsample0003s/${context.ibizsample0003}`,isloading);
return res;
}
......@@ -133,7 +135,7 @@ export default class IBIZSample0003ServiceBase extends EntityService {
public async Save(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let masterData:any = {};
Object.assign(data,masterData);
let res:any = await Http.getInstance().post(`/ibizsample0003s/${context.ibizsample0003}/save`,data,isloading);
let res:any = await Http.getInstance().post(`/demoapi/ibizsample0003s/${context.ibizsample0003}/save`,data,isloading);
return res;
}
......@@ -150,7 +152,7 @@ export default class IBIZSample0003ServiceBase extends EntityService {
public async Update(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let masterData:any = {};
Object.assign(data,masterData);
let res:any = await Http.getInstance().put(`/ibizsample0003s/${context.ibizsample0003}`,data,isloading);
let res:any = await Http.getInstance().put(`/demoapi/ibizsample0003s/${context.ibizsample0003}`,data,isloading);
return res;
}
......@@ -166,7 +168,7 @@ export default class IBIZSample0003ServiceBase extends EntityService {
*/
public async FetchCurData(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
let res:any = Http.getInstance().get(`/ibizsample0003s/fetchcurdata`,tempData,isloading);
let res:any = Http.getInstance().get(`/demoapi/ibizsample0003s/fetchcurdata`,tempData,isloading);
return res;
}
......@@ -181,7 +183,7 @@ export default class IBIZSample0003ServiceBase extends EntityService {
*/
public async searchCurData(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
return await Http.getInstance().post(`/ibizsample0003s/searchcurdata`,tempData,isloading);
return await Http.getInstance().post(`/demoapi/ibizsample0003s/searchcurdata`,tempData,isloading);
}
/**
......@@ -195,7 +197,7 @@ export default class IBIZSample0003ServiceBase extends EntityService {
*/
public async FetchDefault(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
let res:any = Http.getInstance().get(`/ibizsample0003s/fetchdefault`,tempData,isloading);
let res:any = Http.getInstance().get(`/demoapi/ibizsample0003s/fetchdefault`,tempData,isloading);
return res;
}
......@@ -210,7 +212,7 @@ export default class IBIZSample0003ServiceBase extends EntityService {
*/
public async searchDefault(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
return await Http.getInstance().post(`/ibizsample0003s/searchdefault`,tempData,isloading);
return await Http.getInstance().post(`/demoapi/ibizsample0003s/searchdefault`,tempData,isloading);
}
/**
......@@ -224,7 +226,7 @@ export default class IBIZSample0003ServiceBase extends EntityService {
*/
public async FetchTopData(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
let res:any = Http.getInstance().get(`/ibizsample0003s/fetchtopdata`,tempData,isloading);
let res:any = Http.getInstance().get(`/demoapi/ibizsample0003s/fetchtopdata`,tempData,isloading);
return res;
}
......@@ -239,7 +241,7 @@ export default class IBIZSample0003ServiceBase extends EntityService {
*/
public async searchTopData(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
return await Http.getInstance().post(`/ibizsample0003s/searchtopdata`,tempData,isloading);
return await Http.getInstance().post(`/demoapi/ibizsample0003s/searchtopdata`,tempData,isloading);
}
/**
......@@ -252,7 +254,7 @@ export default class IBIZSample0003ServiceBase extends EntityService {
* @memberof IBIZSample0003ServiceBase
*/
public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().get(`/ibizsample0003s/${context.ibizsample0003}/select`,isloading);
let res:any = Http.getInstance().get(`/demoapi/ibizsample0003s/${context.ibizsample0003}/select`,isloading);
return res;
}
......
......@@ -3,6 +3,8 @@ import EntityService from '../entity-service';
/**
* 多版本流程服务对象基类
* 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成
......@@ -48,7 +50,7 @@ export default class IBIZSample0004ServiceBase extends EntityService {
* @memberof IBIZSample0004ServiceBase
*/
public async CheckKey(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().post(`/ibizsample0004s/${context.ibizsample0004}/checkkey`,data,isloading);
let res:any = Http.getInstance().post(`/demoapi/ibizsample0004s/${context.ibizsample0004}/checkkey`,data,isloading);
return res;
}
......@@ -71,7 +73,7 @@ export default class IBIZSample0004ServiceBase extends EntityService {
delete data.srffrontuf;
}
let tempContext:any = JSON.parse(JSON.stringify(context));
let res:any = await Http.getInstance().post(`/ibizsample0004s`,data,isloading);
let res:any = await Http.getInstance().post(`/demoapi/ibizsample0004s`,data,isloading);
return res;
}
......@@ -86,7 +88,7 @@ export default class IBIZSample0004ServiceBase extends EntityService {
* @memberof IBIZSample0004ServiceBase
*/
public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/ibizsample0004s/${context.ibizsample0004}`,isloading);
let res:any = await Http.getInstance().get(`/demoapi/ibizsample0004s/${context.ibizsample0004}`,isloading);
return res;
}
......@@ -101,7 +103,7 @@ export default class IBIZSample0004ServiceBase extends EntityService {
* @memberof IBIZSample0004ServiceBase
*/
public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/ibizsample0004s/getdraft`,isloading);
let res:any = await Http.getInstance().get(`/demoapi/ibizsample0004s/getdraft`,isloading);
res.data.ibizsample0004 = data.ibizsample0004;
return res;
......@@ -117,7 +119,7 @@ export default class IBIZSample0004ServiceBase extends EntityService {
* @memberof IBIZSample0004ServiceBase
*/
public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().delete(`/ibizsample0004s/${context.ibizsample0004}`,isloading);
let res:any = Http.getInstance().delete(`/demoapi/ibizsample0004s/${context.ibizsample0004}`,isloading);
return res;
}
......@@ -133,7 +135,7 @@ export default class IBIZSample0004ServiceBase extends EntityService {
public async Save(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let masterData:any = {};
Object.assign(data,masterData);
let res:any = await Http.getInstance().post(`/ibizsample0004s/${context.ibizsample0004}/save`,data,isloading);
let res:any = await Http.getInstance().post(`/demoapi/ibizsample0004s/${context.ibizsample0004}/save`,data,isloading);
return res;
}
......@@ -150,7 +152,7 @@ export default class IBIZSample0004ServiceBase extends EntityService {
public async Update(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let masterData:any = {};
Object.assign(data,masterData);
let res:any = await Http.getInstance().put(`/ibizsample0004s/${context.ibizsample0004}`,data,isloading);
let res:any = await Http.getInstance().put(`/demoapi/ibizsample0004s/${context.ibizsample0004}`,data,isloading);
return res;
}
......@@ -166,7 +168,7 @@ export default class IBIZSample0004ServiceBase extends EntityService {
*/
public async FetchDefault(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
let res:any = Http.getInstance().get(`/ibizsample0004s/fetchdefault`,tempData,isloading);
let res:any = Http.getInstance().get(`/demoapi/ibizsample0004s/fetchdefault`,tempData,isloading);
return res;
}
......@@ -181,7 +183,7 @@ export default class IBIZSample0004ServiceBase extends EntityService {
*/
public async searchDefault(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
return await Http.getInstance().post(`/ibizsample0004s/searchdefault`,tempData,isloading);
return await Http.getInstance().post(`/demoapi/ibizsample0004s/searchdefault`,tempData,isloading);
}
/**
......@@ -194,7 +196,7 @@ export default class IBIZSample0004ServiceBase extends EntityService {
* @memberof IBIZSample0004ServiceBase
*/
public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().get(`/ibizsample0004s/${context.ibizsample0004}/select`,isloading);
let res:any = Http.getInstance().get(`/demoapi/ibizsample0004s/${context.ibizsample0004}/select`,isloading);
return res;
}
......
......@@ -3,6 +3,8 @@ import EntityService from '../entity-service';
/**
* 多模式流程服务对象基类
* 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成
......@@ -48,7 +50,7 @@ export default class IBIZSample0005ServiceBase extends EntityService {
* @memberof IBIZSample0005ServiceBase
*/
public async CheckKey(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().post(`/ibizsample0005s/${context.ibizsample0005}/checkkey`,data,isloading);
let res:any = Http.getInstance().post(`/demoapi/ibizsample0005s/${context.ibizsample0005}/checkkey`,data,isloading);
return res;
}
......@@ -71,7 +73,7 @@ export default class IBIZSample0005ServiceBase extends EntityService {
delete data.srffrontuf;
}
let tempContext:any = JSON.parse(JSON.stringify(context));
let res:any = await Http.getInstance().post(`/ibizsample0005s`,data,isloading);
let res:any = await Http.getInstance().post(`/demoapi/ibizsample0005s`,data,isloading);
return res;
}
......@@ -86,7 +88,7 @@ export default class IBIZSample0005ServiceBase extends EntityService {
* @memberof IBIZSample0005ServiceBase
*/
public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/ibizsample0005s/${context.ibizsample0005}`,isloading);
let res:any = await Http.getInstance().get(`/demoapi/ibizsample0005s/${context.ibizsample0005}`,isloading);
return res;
}
......@@ -101,7 +103,7 @@ export default class IBIZSample0005ServiceBase extends EntityService {
* @memberof IBIZSample0005ServiceBase
*/
public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/ibizsample0005s/getdraft`,isloading);
let res:any = await Http.getInstance().get(`/demoapi/ibizsample0005s/getdraft`,isloading);
res.data.ibizsample0005 = data.ibizsample0005;
return res;
......@@ -117,7 +119,7 @@ export default class IBIZSample0005ServiceBase extends EntityService {
* @memberof IBIZSample0005ServiceBase
*/
public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().delete(`/ibizsample0005s/${context.ibizsample0005}`,isloading);
let res:any = Http.getInstance().delete(`/demoapi/ibizsample0005s/${context.ibizsample0005}`,isloading);
return res;
}
......@@ -133,7 +135,7 @@ export default class IBIZSample0005ServiceBase extends EntityService {
public async Save(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let masterData:any = {};
Object.assign(data,masterData);
let res:any = await Http.getInstance().post(`/ibizsample0005s/${context.ibizsample0005}/save`,data,isloading);
let res:any = await Http.getInstance().post(`/demoapi/ibizsample0005s/${context.ibizsample0005}/save`,data,isloading);
return res;
}
......@@ -150,7 +152,7 @@ export default class IBIZSample0005ServiceBase extends EntityService {
public async Update(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let masterData:any = {};
Object.assign(data,masterData);
let res:any = await Http.getInstance().put(`/ibizsample0005s/${context.ibizsample0005}`,data,isloading);
let res:any = await Http.getInstance().put(`/demoapi/ibizsample0005s/${context.ibizsample0005}`,data,isloading);
return res;
}
......@@ -166,7 +168,7 @@ export default class IBIZSample0005ServiceBase extends EntityService {
*/
public async FetchDefault(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
let res:any = Http.getInstance().get(`/ibizsample0005s/fetchdefault`,tempData,isloading);
let res:any = Http.getInstance().get(`/demoapi/ibizsample0005s/fetchdefault`,tempData,isloading);
return res;
}
......@@ -181,7 +183,7 @@ export default class IBIZSample0005ServiceBase extends EntityService {
*/
public async searchDefault(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
return await Http.getInstance().post(`/ibizsample0005s/searchdefault`,tempData,isloading);
return await Http.getInstance().post(`/demoapi/ibizsample0005s/searchdefault`,tempData,isloading);
}
/**
......@@ -194,7 +196,7 @@ export default class IBIZSample0005ServiceBase extends EntityService {
* @memberof IBIZSample0005ServiceBase
*/
public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().get(`/ibizsample0005s/${context.ibizsample0005}/select`,isloading);
let res:any = Http.getInstance().get(`/demoapi/ibizsample0005s/${context.ibizsample0005}/select`,isloading);
return res;
}
......
......@@ -3,6 +3,8 @@ import EntityService from '../entity-service';
/**
* 嵌套流程(主)服务对象基类
* 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成
......@@ -48,7 +50,7 @@ export default class IBIZSample0006ServiceBase extends EntityService {
* @memberof IBIZSample0006ServiceBase
*/
public async CheckKey(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().post(`/ibizsample0006s/${context.ibizsample0006}/checkkey`,data,isloading);
let res:any = Http.getInstance().post(`/demoapi/ibizsample0006s/${context.ibizsample0006}/checkkey`,data,isloading);
return res;
}
......@@ -71,7 +73,7 @@ export default class IBIZSample0006ServiceBase extends EntityService {
delete data.srffrontuf;
}
let tempContext:any = JSON.parse(JSON.stringify(context));
let res:any = await Http.getInstance().post(`/ibizsample0006s`,data,isloading);
let res:any = await Http.getInstance().post(`/demoapi/ibizsample0006s`,data,isloading);
return res;
}
......@@ -86,7 +88,7 @@ export default class IBIZSample0006ServiceBase extends EntityService {
* @memberof IBIZSample0006ServiceBase
*/
public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/ibizsample0006s/${context.ibizsample0006}`,isloading);
let res:any = await Http.getInstance().get(`/demoapi/ibizsample0006s/${context.ibizsample0006}`,isloading);
return res;
}
......@@ -101,7 +103,7 @@ export default class IBIZSample0006ServiceBase extends EntityService {
* @memberof IBIZSample0006ServiceBase
*/
public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/ibizsample0006s/getdraft`,isloading);
let res:any = await Http.getInstance().get(`/demoapi/ibizsample0006s/getdraft`,isloading);
res.data.ibizsample0006 = data.ibizsample0006;
return res;
......@@ -117,7 +119,7 @@ export default class IBIZSample0006ServiceBase extends EntityService {
* @memberof IBIZSample0006ServiceBase
*/
public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().delete(`/ibizsample0006s/${context.ibizsample0006}`,isloading);
let res:any = Http.getInstance().delete(`/demoapi/ibizsample0006s/${context.ibizsample0006}`,isloading);
return res;
}
......@@ -133,7 +135,7 @@ export default class IBIZSample0006ServiceBase extends EntityService {
public async Save(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let masterData:any = {};
Object.assign(data,masterData);
let res:any = await Http.getInstance().post(`/ibizsample0006s/${context.ibizsample0006}/save`,data,isloading);
let res:any = await Http.getInstance().post(`/demoapi/ibizsample0006s/${context.ibizsample0006}/save`,data,isloading);
return res;
}
......@@ -150,7 +152,7 @@ export default class IBIZSample0006ServiceBase extends EntityService {
public async Update(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let masterData:any = {};
Object.assign(data,masterData);
let res:any = await Http.getInstance().put(`/ibizsample0006s/${context.ibizsample0006}`,data,isloading);
let res:any = await Http.getInstance().put(`/demoapi/ibizsample0006s/${context.ibizsample0006}`,data,isloading);
return res;
}
......@@ -166,7 +168,7 @@ export default class IBIZSample0006ServiceBase extends EntityService {
*/
public async FetchDefault(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
let res:any = Http.getInstance().get(`/ibizsample0006s/fetchdefault`,tempData,isloading);
let res:any = Http.getInstance().get(`/demoapi/ibizsample0006s/fetchdefault`,tempData,isloading);
return res;
}
......@@ -181,7 +183,7 @@ export default class IBIZSample0006ServiceBase extends EntityService {
*/
public async searchDefault(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
return await Http.getInstance().post(`/ibizsample0006s/searchdefault`,tempData,isloading);
return await Http.getInstance().post(`/demoapi/ibizsample0006s/searchdefault`,tempData,isloading);
}
/**
......@@ -194,7 +196,7 @@ export default class IBIZSample0006ServiceBase extends EntityService {
* @memberof IBIZSample0006ServiceBase
*/
public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().get(`/ibizsample0006s/${context.ibizsample0006}/select`,isloading);
let res:any = Http.getInstance().get(`/demoapi/ibizsample0006s/${context.ibizsample0006}/select`,isloading);
return res;
}
......
......@@ -3,6 +3,8 @@ import EntityService from '../entity-service';
/**
* 嵌套流程(子)服务对象基类
* 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成
......@@ -48,7 +50,7 @@ export default class IBIZSample0007ServiceBase extends EntityService {
* @memberof IBIZSample0007ServiceBase
*/
public async CheckKey(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().post(`/ibizsample0007s/${context.ibizsample0007}/checkkey`,data,isloading);
let res:any = Http.getInstance().post(`/demoapi/ibizsample0007s/${context.ibizsample0007}/checkkey`,data,isloading);
return res;
}
......@@ -71,7 +73,7 @@ export default class IBIZSample0007ServiceBase extends EntityService {
delete data.srffrontuf;
}
let tempContext:any = JSON.parse(JSON.stringify(context));
let res:any = await Http.getInstance().post(`/ibizsample0007s`,data,isloading);
let res:any = await Http.getInstance().post(`/demoapi/ibizsample0007s`,data,isloading);
return res;
}
......@@ -86,7 +88,7 @@ export default class IBIZSample0007ServiceBase extends EntityService {
* @memberof IBIZSample0007ServiceBase
*/
public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/ibizsample0007s/${context.ibizsample0007}`,isloading);
let res:any = await Http.getInstance().get(`/demoapi/ibizsample0007s/${context.ibizsample0007}`,isloading);
return res;
}
......@@ -101,7 +103,7 @@ export default class IBIZSample0007ServiceBase extends EntityService {
* @memberof IBIZSample0007ServiceBase
*/
public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/ibizsample0007s/getdraft`,isloading);
let res:any = await Http.getInstance().get(`/demoapi/ibizsample0007s/getdraft`,isloading);
res.data.ibizsample0007 = data.ibizsample0007;
return res;
......@@ -117,7 +119,7 @@ export default class IBIZSample0007ServiceBase extends EntityService {
* @memberof IBIZSample0007ServiceBase
*/
public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().delete(`/ibizsample0007s/${context.ibizsample0007}`,isloading);
let res:any = Http.getInstance().delete(`/demoapi/ibizsample0007s/${context.ibizsample0007}`,isloading);
return res;
}
......@@ -133,7 +135,7 @@ export default class IBIZSample0007ServiceBase extends EntityService {
public async Save(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let masterData:any = {};
Object.assign(data,masterData);
let res:any = await Http.getInstance().post(`/ibizsample0007s/${context.ibizsample0007}/save`,data,isloading);
let res:any = await Http.getInstance().post(`/demoapi/ibizsample0007s/${context.ibizsample0007}/save`,data,isloading);
return res;
}
......@@ -150,7 +152,7 @@ export default class IBIZSample0007ServiceBase extends EntityService {
public async Update(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let masterData:any = {};
Object.assign(data,masterData);
let res:any = await Http.getInstance().put(`/ibizsample0007s/${context.ibizsample0007}`,data,isloading);
let res:any = await Http.getInstance().put(`/demoapi/ibizsample0007s/${context.ibizsample0007}`,data,isloading);
return res;
}
......@@ -166,7 +168,7 @@ export default class IBIZSample0007ServiceBase extends EntityService {
*/
public async FetchCurGW(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
let res:any = Http.getInstance().get(`/ibizsample0007s/fetchcurgw`,tempData,isloading);
let res:any = Http.getInstance().get(`/demoapi/ibizsample0007s/fetchcurgw`,tempData,isloading);
return res;
}
......@@ -181,7 +183,7 @@ export default class IBIZSample0007ServiceBase extends EntityService {
*/
public async searchCurGW(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
return await Http.getInstance().post(`/ibizsample0007s/searchcurgw`,tempData,isloading);
return await Http.getInstance().post(`/demoapi/ibizsample0007s/searchcurgw`,tempData,isloading);
}
/**
......@@ -195,7 +197,7 @@ export default class IBIZSample0007ServiceBase extends EntityService {
*/
public async FetchDefault(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
let res:any = Http.getInstance().get(`/ibizsample0007s/fetchdefault`,tempData,isloading);
let res:any = Http.getInstance().get(`/demoapi/ibizsample0007s/fetchdefault`,tempData,isloading);
return res;
}
......@@ -210,7 +212,7 @@ export default class IBIZSample0007ServiceBase extends EntityService {
*/
public async searchDefault(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
return await Http.getInstance().post(`/ibizsample0007s/searchdefault`,tempData,isloading);
return await Http.getInstance().post(`/demoapi/ibizsample0007s/searchdefault`,tempData,isloading);
}
/**
......@@ -223,7 +225,7 @@ export default class IBIZSample0007ServiceBase extends EntityService {
* @memberof IBIZSample0007ServiceBase
*/
public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().get(`/ibizsample0007s/${context.ibizsample0007}/select`,isloading);
let res:any = Http.getInstance().get(`/demoapi/ibizsample0007s/${context.ibizsample0007}/select`,isloading);
return res;
}
......
......@@ -3,6 +3,8 @@ import EntityService from '../entity-service';
/**
* 自循环流程服务对象基类
* 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成
......@@ -48,7 +50,7 @@ export default class IBIZSample0008ServiceBase extends EntityService {
* @memberof IBIZSample0008ServiceBase
*/
public async CheckKey(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().post(`/ibizsample0008s/${context.ibizsample0008}/checkkey`,data,isloading);
let res:any = Http.getInstance().post(`/demoapi/ibizsample0008s/${context.ibizsample0008}/checkkey`,data,isloading);
return res;
}
......@@ -71,7 +73,7 @@ export default class IBIZSample0008ServiceBase extends EntityService {
delete data.srffrontuf;
}
let tempContext:any = JSON.parse(JSON.stringify(context));
let res:any = await Http.getInstance().post(`/ibizsample0008s`,data,isloading);
let res:any = await Http.getInstance().post(`/demoapi/ibizsample0008s`,data,isloading);
return res;
}
......@@ -86,7 +88,7 @@ export default class IBIZSample0008ServiceBase extends EntityService {
* @memberof IBIZSample0008ServiceBase
*/
public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/ibizsample0008s/${context.ibizsample0008}`,isloading);
let res:any = await Http.getInstance().get(`/demoapi/ibizsample0008s/${context.ibizsample0008}`,isloading);
return res;
}
......@@ -101,7 +103,7 @@ export default class IBIZSample0008ServiceBase extends EntityService {
* @memberof IBIZSample0008ServiceBase
*/
public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/ibizsample0008s/getdraft`,isloading);
let res:any = await Http.getInstance().get(`/demoapi/ibizsample0008s/getdraft`,isloading);
res.data.ibizsample0008 = data.ibizsample0008;
return res;
......@@ -117,7 +119,7 @@ export default class IBIZSample0008ServiceBase extends EntityService {
* @memberof IBIZSample0008ServiceBase
*/
public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().delete(`/ibizsample0008s/${context.ibizsample0008}`,isloading);
let res:any = Http.getInstance().delete(`/demoapi/ibizsample0008s/${context.ibizsample0008}`,isloading);
return res;
}
......@@ -133,7 +135,7 @@ export default class IBIZSample0008ServiceBase extends EntityService {
public async Save(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let masterData:any = {};
Object.assign(data,masterData);
let res:any = await Http.getInstance().post(`/ibizsample0008s/${context.ibizsample0008}/save`,data,isloading);
let res:any = await Http.getInstance().post(`/demoapi/ibizsample0008s/${context.ibizsample0008}/save`,data,isloading);
return res;
}
......@@ -150,7 +152,7 @@ export default class IBIZSample0008ServiceBase extends EntityService {
public async Update(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let masterData:any = {};
Object.assign(data,masterData);
let res:any = await Http.getInstance().put(`/ibizsample0008s/${context.ibizsample0008}`,data,isloading);
let res:any = await Http.getInstance().put(`/demoapi/ibizsample0008s/${context.ibizsample0008}`,data,isloading);
return res;
}
......@@ -166,7 +168,7 @@ export default class IBIZSample0008ServiceBase extends EntityService {
*/
public async FetchDefault(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
let res:any = Http.getInstance().get(`/ibizsample0008s/fetchdefault`,tempData,isloading);
let res:any = Http.getInstance().get(`/demoapi/ibizsample0008s/fetchdefault`,tempData,isloading);
return res;
}
......@@ -181,7 +183,7 @@ export default class IBIZSample0008ServiceBase extends EntityService {
*/
public async searchDefault(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
return await Http.getInstance().post(`/ibizsample0008s/searchdefault`,tempData,isloading);
return await Http.getInstance().post(`/demoapi/ibizsample0008s/searchdefault`,tempData,isloading);
}
/**
......@@ -194,7 +196,7 @@ export default class IBIZSample0008ServiceBase extends EntityService {
* @memberof IBIZSample0008ServiceBase
*/
public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().get(`/ibizsample0008s/${context.ibizsample0008}/select`,isloading);
let res:any = Http.getInstance().get(`/demoapi/ibizsample0008s/${context.ibizsample0008}/select`,isloading);
return res;
}
......
......@@ -3,6 +3,8 @@ import EntityService from '../entity-service';
/**
* 商品价格明细服务对象基类
* 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成
......@@ -48,7 +50,7 @@ export default class IBIZSample0009ServiceBase extends EntityService {
* @memberof IBIZSample0009ServiceBase
*/
public async CheckKey(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().post(`/ibizsample0009s/${context.ibizsample0009}/checkkey`,data,isloading);
let res:any = Http.getInstance().post(`/demoapi/ibizsample0009s/${context.ibizsample0009}/checkkey`,data,isloading);
return res;
}
......@@ -71,7 +73,7 @@ export default class IBIZSample0009ServiceBase extends EntityService {
delete data.srffrontuf;
}
let tempContext:any = JSON.parse(JSON.stringify(context));
let res:any = await Http.getInstance().post(`/ibizsample0009s`,data,isloading);
let res:any = await Http.getInstance().post(`/demoapi/ibizsample0009s`,data,isloading);
return res;
}
......@@ -86,7 +88,7 @@ export default class IBIZSample0009ServiceBase extends EntityService {
* @memberof IBIZSample0009ServiceBase
*/
public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/ibizsample0009s/${context.ibizsample0009}`,isloading);
let res:any = await Http.getInstance().get(`/demoapi/ibizsample0009s/${context.ibizsample0009}`,isloading);
return res;
}
......@@ -101,7 +103,7 @@ export default class IBIZSample0009ServiceBase extends EntityService {
* @memberof IBIZSample0009ServiceBase
*/
public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/ibizsample0009s/getdraft`,isloading);
let res:any = await Http.getInstance().get(`/demoapi/ibizsample0009s/getdraft`,isloading);
res.data.ibizsample0009 = data.ibizsample0009;
return res;
......@@ -117,7 +119,7 @@ export default class IBIZSample0009ServiceBase extends EntityService {
* @memberof IBIZSample0009ServiceBase
*/
public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().delete(`/ibizsample0009s/${context.ibizsample0009}`,isloading);
let res:any = Http.getInstance().delete(`/demoapi/ibizsample0009s/${context.ibizsample0009}`,isloading);
return res;
}
......@@ -133,7 +135,7 @@ export default class IBIZSample0009ServiceBase extends EntityService {
public async Save(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let masterData:any = {};
Object.assign(data,masterData);
let res:any = await Http.getInstance().post(`/ibizsample0009s/${context.ibizsample0009}/save`,data,isloading);
let res:any = await Http.getInstance().post(`/demoapi/ibizsample0009s/${context.ibizsample0009}/save`,data,isloading);
return res;
}
......@@ -150,7 +152,7 @@ export default class IBIZSample0009ServiceBase extends EntityService {
public async Update(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let masterData:any = {};
Object.assign(data,masterData);
let res:any = await Http.getInstance().put(`/ibizsample0009s/${context.ibizsample0009}`,data,isloading);
let res:any = await Http.getInstance().put(`/demoapi/ibizsample0009s/${context.ibizsample0009}`,data,isloading);
return res;
}
......@@ -166,7 +168,7 @@ export default class IBIZSample0009ServiceBase extends EntityService {
*/
public async FetchDefault(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
let res:any = Http.getInstance().get(`/ibizsample0009s/fetchdefault`,tempData,isloading);
let res:any = Http.getInstance().get(`/demoapi/ibizsample0009s/fetchdefault`,tempData,isloading);
return res;
}
......@@ -181,7 +183,7 @@ export default class IBIZSample0009ServiceBase extends EntityService {
*/
public async searchDefault(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
return await Http.getInstance().post(`/ibizsample0009s/searchdefault`,tempData,isloading);
return await Http.getInstance().post(`/demoapi/ibizsample0009s/searchdefault`,tempData,isloading);
}
/**
......@@ -194,7 +196,7 @@ export default class IBIZSample0009ServiceBase extends EntityService {
* @memberof IBIZSample0009ServiceBase
*/
public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().get(`/ibizsample0009s/${context.ibizsample0009}/select`,isloading);
let res:any = Http.getInstance().get(`/demoapi/ibizsample0009s/${context.ibizsample0009}/select`,isloading);
return res;
}
......
......@@ -3,6 +3,8 @@ import EntityService from '../entity-service';
/**
* 订单服务对象基类
* 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成
......@@ -48,7 +50,7 @@ export default class IBIZSample0010ServiceBase extends EntityService {
* @memberof IBIZSample0010ServiceBase
*/
public async CheckKey(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().post(`/ibizsample0010s/${context.ibizsample0010}/checkkey`,data,isloading);
let res:any = Http.getInstance().post(`/demoapi/ibizsample0010s/${context.ibizsample0010}/checkkey`,data,isloading);
return res;
}
......@@ -71,7 +73,7 @@ export default class IBIZSample0010ServiceBase extends EntityService {
delete data.srffrontuf;
}
let tempContext:any = JSON.parse(JSON.stringify(context));
let res:any = await Http.getInstance().post(`/ibizsample0010s`,data,isloading);
let res:any = await Http.getInstance().post(`/demoapi/ibizsample0010s`,data,isloading);
return res;
}
......@@ -86,7 +88,7 @@ export default class IBIZSample0010ServiceBase extends EntityService {
* @memberof IBIZSample0010ServiceBase
*/
public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/ibizsample0010s/${context.ibizsample0010}`,isloading);
let res:any = await Http.getInstance().get(`/demoapi/ibizsample0010s/${context.ibizsample0010}`,isloading);
return res;
}
......@@ -101,7 +103,7 @@ export default class IBIZSample0010ServiceBase extends EntityService {
* @memberof IBIZSample0010ServiceBase
*/
public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/ibizsample0010s/getdraft`,isloading);
let res:any = await Http.getInstance().get(`/demoapi/ibizsample0010s/getdraft`,isloading);
res.data.ibizsample0010 = data.ibizsample0010;
return res;
......@@ -117,7 +119,7 @@ export default class IBIZSample0010ServiceBase extends EntityService {
* @memberof IBIZSample0010ServiceBase
*/
public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().delete(`/ibizsample0010s/${context.ibizsample0010}`,isloading);
let res:any = Http.getInstance().delete(`/demoapi/ibizsample0010s/${context.ibizsample0010}`,isloading);
return res;
}
......@@ -133,7 +135,7 @@ export default class IBIZSample0010ServiceBase extends EntityService {
public async Save(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let masterData:any = {};
Object.assign(data,masterData);
let res:any = await Http.getInstance().post(`/ibizsample0010s/${context.ibizsample0010}/save`,data,isloading);
let res:any = await Http.getInstance().post(`/demoapi/ibizsample0010s/${context.ibizsample0010}/save`,data,isloading);
return res;
}
......@@ -150,7 +152,7 @@ export default class IBIZSample0010ServiceBase extends EntityService {
public async Update(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let masterData:any = {};
Object.assign(data,masterData);
let res:any = await Http.getInstance().put(`/ibizsample0010s/${context.ibizsample0010}`,data,isloading);
let res:any = await Http.getInstance().put(`/demoapi/ibizsample0010s/${context.ibizsample0010}`,data,isloading);
return res;
}
......@@ -166,7 +168,7 @@ export default class IBIZSample0010ServiceBase extends EntityService {
*/
public async FetchDefault(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
let res:any = Http.getInstance().get(`/ibizsample0010s/fetchdefault`,tempData,isloading);
let res:any = Http.getInstance().get(`/demoapi/ibizsample0010s/fetchdefault`,tempData,isloading);
return res;
}
......@@ -181,7 +183,7 @@ export default class IBIZSample0010ServiceBase extends EntityService {
*/
public async searchDefault(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
return await Http.getInstance().post(`/ibizsample0010s/searchdefault`,tempData,isloading);
return await Http.getInstance().post(`/demoapi/ibizsample0010s/searchdefault`,tempData,isloading);
}
/**
......@@ -194,7 +196,7 @@ export default class IBIZSample0010ServiceBase extends EntityService {
* @memberof IBIZSample0010ServiceBase
*/
public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().get(`/ibizsample0010s/${context.ibizsample0010}/select`,isloading);
let res:any = Http.getInstance().get(`/demoapi/ibizsample0010s/${context.ibizsample0010}/select`,isloading);
return res;
}
......
......@@ -3,6 +3,8 @@ import EntityService from '../entity-service';
/**
* 订单明细服务对象基类
* 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成
......@@ -48,7 +50,7 @@ export default class IBIZSample0011ServiceBase extends EntityService {
* @memberof IBIZSample0011ServiceBase
*/
public async CheckKey(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().post(`/ibizsample0011s/${context.ibizsample0011}/checkkey`,data,isloading);
let res:any = Http.getInstance().post(`/demoapi/ibizsample0011s/${context.ibizsample0011}/checkkey`,data,isloading);
return res;
}
......@@ -71,7 +73,7 @@ export default class IBIZSample0011ServiceBase extends EntityService {
delete data.srffrontuf;
}
let tempContext:any = JSON.parse(JSON.stringify(context));
let res:any = await Http.getInstance().post(`/ibizsample0011s`,data,isloading);
let res:any = await Http.getInstance().post(`/demoapi/ibizsample0011s`,data,isloading);
return res;
}
......@@ -86,7 +88,7 @@ export default class IBIZSample0011ServiceBase extends EntityService {
* @memberof IBIZSample0011ServiceBase
*/
public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/ibizsample0011s/${context.ibizsample0011}`,isloading);
let res:any = await Http.getInstance().get(`/demoapi/ibizsample0011s/${context.ibizsample0011}`,isloading);
return res;
}
......@@ -101,7 +103,7 @@ export default class IBIZSample0011ServiceBase extends EntityService {
* @memberof IBIZSample0011ServiceBase
*/
public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/ibizsample0011s/getdraft`,isloading);
let res:any = await Http.getInstance().get(`/demoapi/ibizsample0011s/getdraft`,isloading);
res.data.ibizsample0011 = data.ibizsample0011;
return res;
......@@ -117,7 +119,7 @@ export default class IBIZSample0011ServiceBase extends EntityService {
* @memberof IBIZSample0011ServiceBase
*/
public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().delete(`/ibizsample0011s/${context.ibizsample0011}`,isloading);
let res:any = Http.getInstance().delete(`/demoapi/ibizsample0011s/${context.ibizsample0011}`,isloading);
return res;
}
......@@ -133,7 +135,7 @@ export default class IBIZSample0011ServiceBase extends EntityService {
public async Save(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let masterData:any = {};
Object.assign(data,masterData);
let res:any = await Http.getInstance().post(`/ibizsample0011s/${context.ibizsample0011}/save`,data,isloading);
let res:any = await Http.getInstance().post(`/demoapi/ibizsample0011s/${context.ibizsample0011}/save`,data,isloading);
return res;
}
......@@ -150,7 +152,7 @@ export default class IBIZSample0011ServiceBase extends EntityService {
public async Update(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let masterData:any = {};
Object.assign(data,masterData);
let res:any = await Http.getInstance().put(`/ibizsample0011s/${context.ibizsample0011}`,data,isloading);
let res:any = await Http.getInstance().put(`/demoapi/ibizsample0011s/${context.ibizsample0011}`,data,isloading);
return res;
}
......@@ -166,7 +168,7 @@ export default class IBIZSample0011ServiceBase extends EntityService {
*/
public async FetchDefault(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
let res:any = Http.getInstance().get(`/ibizsample0011s/fetchdefault`,tempData,isloading);
let res:any = Http.getInstance().get(`/demoapi/ibizsample0011s/fetchdefault`,tempData,isloading);
return res;
}
......@@ -181,7 +183,7 @@ export default class IBIZSample0011ServiceBase extends EntityService {
*/
public async searchDefault(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
return await Http.getInstance().post(`/ibizsample0011s/searchdefault`,tempData,isloading);
return await Http.getInstance().post(`/demoapi/ibizsample0011s/searchdefault`,tempData,isloading);
}
/**
......@@ -194,7 +196,7 @@ export default class IBIZSample0011ServiceBase extends EntityService {
* @memberof IBIZSample0011ServiceBase
*/
public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().get(`/ibizsample0011s/${context.ibizsample0011}/select`,isloading);
let res:any = Http.getInstance().get(`/demoapi/ibizsample0011s/${context.ibizsample0011}/select`,isloading);
return res;
}
......
......@@ -3,6 +3,8 @@ import EntityService from '../entity-service';
/**
* 订单服务对象基类
* 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成
......@@ -48,7 +50,7 @@ export default class IBIZSample0012ServiceBase extends EntityService {
* @memberof IBIZSample0012ServiceBase
*/
public async CheckKey(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().post(`/ibizsample0012s/${context.ibizsample0012}/checkkey`,data,isloading);
let res:any = Http.getInstance().post(`/demoapi/ibizsample0012s/${context.ibizsample0012}/checkkey`,data,isloading);
return res;
}
......@@ -71,7 +73,7 @@ export default class IBIZSample0012ServiceBase extends EntityService {
delete data.srffrontuf;
}
let tempContext:any = JSON.parse(JSON.stringify(context));
let res:any = await Http.getInstance().post(`/ibizsample0012s`,data,isloading);
let res:any = await Http.getInstance().post(`/demoapi/ibizsample0012s`,data,isloading);
return res;
}
......@@ -86,7 +88,7 @@ export default class IBIZSample0012ServiceBase extends EntityService {
* @memberof IBIZSample0012ServiceBase
*/
public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/ibizsample0012s/${context.ibizsample0012}`,isloading);
let res:any = await Http.getInstance().get(`/demoapi/ibizsample0012s/${context.ibizsample0012}`,isloading);
return res;
}
......@@ -101,7 +103,7 @@ export default class IBIZSample0012ServiceBase extends EntityService {
* @memberof IBIZSample0012ServiceBase
*/
public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/ibizsample0012s/getdraft`,isloading);
let res:any = await Http.getInstance().get(`/demoapi/ibizsample0012s/getdraft`,isloading);
res.data.ibizsample0012 = data.ibizsample0012;
return res;
......@@ -117,7 +119,7 @@ export default class IBIZSample0012ServiceBase extends EntityService {
* @memberof IBIZSample0012ServiceBase
*/
public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().delete(`/ibizsample0012s/${context.ibizsample0012}`,isloading);
let res:any = Http.getInstance().delete(`/demoapi/ibizsample0012s/${context.ibizsample0012}`,isloading);
return res;
}
......@@ -133,7 +135,7 @@ export default class IBIZSample0012ServiceBase extends EntityService {
public async Save(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let masterData:any = {};
Object.assign(data,masterData);
let res:any = await Http.getInstance().post(`/ibizsample0012s/${context.ibizsample0012}/save`,data,isloading);
let res:any = await Http.getInstance().post(`/demoapi/ibizsample0012s/${context.ibizsample0012}/save`,data,isloading);
return res;
}
......@@ -150,7 +152,7 @@ export default class IBIZSample0012ServiceBase extends EntityService {
public async Update(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let masterData:any = {};
Object.assign(data,masterData);
let res:any = await Http.getInstance().put(`/ibizsample0012s/${context.ibizsample0012}`,data,isloading);
let res:any = await Http.getInstance().put(`/demoapi/ibizsample0012s/${context.ibizsample0012}`,data,isloading);
return res;
}
......@@ -166,7 +168,7 @@ export default class IBIZSample0012ServiceBase extends EntityService {
*/
public async FetchDefault(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
let res:any = Http.getInstance().get(`/ibizsample0012s/fetchdefault`,tempData,isloading);
let res:any = Http.getInstance().get(`/demoapi/ibizsample0012s/fetchdefault`,tempData,isloading);
return res;
}
......@@ -181,7 +183,7 @@ export default class IBIZSample0012ServiceBase extends EntityService {
*/
public async searchDefault(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
return await Http.getInstance().post(`/ibizsample0012s/searchdefault`,tempData,isloading);
return await Http.getInstance().post(`/demoapi/ibizsample0012s/searchdefault`,tempData,isloading);
}
/**
......@@ -194,7 +196,7 @@ export default class IBIZSample0012ServiceBase extends EntityService {
* @memberof IBIZSample0012ServiceBase
*/
public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().get(`/ibizsample0012s/${context.ibizsample0012}/select`,isloading);
let res:any = Http.getInstance().get(`/demoapi/ibizsample0012s/${context.ibizsample0012}/select`,isloading);
return res;
}
......
......@@ -3,6 +3,8 @@ import EntityService from '../entity-service';
/**
* 订单明细服务对象基类
* 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成
......@@ -48,7 +50,7 @@ export default class IBIZSample0013ServiceBase extends EntityService {
* @memberof IBIZSample0013ServiceBase
*/
public async CheckKey(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().post(`/ibizsample0013s/${context.ibizsample0013}/checkkey`,data,isloading);
let res:any = Http.getInstance().post(`/demoapi/ibizsample0013s/${context.ibizsample0013}/checkkey`,data,isloading);
return res;
}
......@@ -71,7 +73,7 @@ export default class IBIZSample0013ServiceBase extends EntityService {
delete data.srffrontuf;
}
let tempContext:any = JSON.parse(JSON.stringify(context));
let res:any = await Http.getInstance().post(`/ibizsample0013s`,data,isloading);
let res:any = await Http.getInstance().post(`/demoapi/ibizsample0013s`,data,isloading);
return res;
}
......@@ -86,7 +88,7 @@ export default class IBIZSample0013ServiceBase extends EntityService {
* @memberof IBIZSample0013ServiceBase
*/
public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/ibizsample0013s/${context.ibizsample0013}`,isloading);
let res:any = await Http.getInstance().get(`/demoapi/ibizsample0013s/${context.ibizsample0013}`,isloading);
return res;
}
......@@ -101,7 +103,7 @@ export default class IBIZSample0013ServiceBase extends EntityService {
* @memberof IBIZSample0013ServiceBase
*/
public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/ibizsample0013s/getdraft`,isloading);
let res:any = await Http.getInstance().get(`/demoapi/ibizsample0013s/getdraft`,isloading);
res.data.ibizsample0013 = data.ibizsample0013;
return res;
......@@ -117,7 +119,7 @@ export default class IBIZSample0013ServiceBase extends EntityService {
* @memberof IBIZSample0013ServiceBase
*/
public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().delete(`/ibizsample0013s/${context.ibizsample0013}`,isloading);
let res:any = Http.getInstance().delete(`/demoapi/ibizsample0013s/${context.ibizsample0013}`,isloading);
return res;
}
......@@ -133,7 +135,7 @@ export default class IBIZSample0013ServiceBase extends EntityService {
public async Save(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let masterData:any = {};
Object.assign(data,masterData);
let res:any = await Http.getInstance().post(`/ibizsample0013s/${context.ibizsample0013}/save`,data,isloading);
let res:any = await Http.getInstance().post(`/demoapi/ibizsample0013s/${context.ibizsample0013}/save`,data,isloading);
return res;
}
......@@ -150,7 +152,7 @@ export default class IBIZSample0013ServiceBase extends EntityService {
public async Update(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let masterData:any = {};
Object.assign(data,masterData);
let res:any = await Http.getInstance().put(`/ibizsample0013s/${context.ibizsample0013}`,data,isloading);
let res:any = await Http.getInstance().put(`/demoapi/ibizsample0013s/${context.ibizsample0013}`,data,isloading);
return res;
}
......@@ -166,7 +168,7 @@ export default class IBIZSample0013ServiceBase extends EntityService {
*/
public async FetchDefault(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
let res:any = Http.getInstance().get(`/ibizsample0013s/fetchdefault`,tempData,isloading);
let res:any = Http.getInstance().get(`/demoapi/ibizsample0013s/fetchdefault`,tempData,isloading);
return res;
}
......@@ -181,7 +183,7 @@ export default class IBIZSample0013ServiceBase extends EntityService {
*/
public async searchDefault(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
return await Http.getInstance().post(`/ibizsample0013s/searchdefault`,tempData,isloading);
return await Http.getInstance().post(`/demoapi/ibizsample0013s/searchdefault`,tempData,isloading);
}
/**
......@@ -194,7 +196,7 @@ export default class IBIZSample0013ServiceBase extends EntityService {
* @memberof IBIZSample0013ServiceBase
*/
public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().get(`/ibizsample0013s/${context.ibizsample0013}/select`,isloading);
let res:any = Http.getInstance().get(`/demoapi/ibizsample0013s/${context.ibizsample0013}/select`,isloading);
return res;
}
......
......@@ -3,6 +3,8 @@ import EntityService from '../entity-service';
/**
* 员工服务对象基类
* 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成
......@@ -48,7 +50,7 @@ export default class IBIZSample0014ServiceBase extends EntityService {
* @memberof IBIZSample0014ServiceBase
*/
public async CheckKey(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().post(`/ibizsample0014s/${context.ibizsample0014}/checkkey`,data,isloading);
let res:any = Http.getInstance().post(`/demoapi/ibizsample0014s/${context.ibizsample0014}/checkkey`,data,isloading);
return res;
}
......@@ -71,7 +73,7 @@ export default class IBIZSample0014ServiceBase extends EntityService {
delete data.srffrontuf;
}
let tempContext:any = JSON.parse(JSON.stringify(context));
let res:any = await Http.getInstance().post(`/ibizsample0014s`,data,isloading);
let res:any = await Http.getInstance().post(`/demoapi/ibizsample0014s`,data,isloading);
return res;
}
......@@ -86,7 +88,7 @@ export default class IBIZSample0014ServiceBase extends EntityService {
* @memberof IBIZSample0014ServiceBase
*/
public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/ibizsample0014s/${context.ibizsample0014}`,isloading);
let res:any = await Http.getInstance().get(`/demoapi/ibizsample0014s/${context.ibizsample0014}`,isloading);
return res;
}
......@@ -101,7 +103,7 @@ export default class IBIZSample0014ServiceBase extends EntityService {
* @memberof IBIZSample0014ServiceBase
*/
public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/ibizsample0014s/getdraft`,isloading);
let res:any = await Http.getInstance().get(`/demoapi/ibizsample0014s/getdraft`,isloading);
res.data.ibizsample0014 = data.ibizsample0014;
return res;
......@@ -117,7 +119,7 @@ export default class IBIZSample0014ServiceBase extends EntityService {
* @memberof IBIZSample0014ServiceBase
*/
public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().delete(`/ibizsample0014s/${context.ibizsample0014}`,isloading);
let res:any = Http.getInstance().delete(`/demoapi/ibizsample0014s/${context.ibizsample0014}`,isloading);
return res;
}
......@@ -133,7 +135,7 @@ export default class IBIZSample0014ServiceBase extends EntityService {
public async Save(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let masterData:any = {};
Object.assign(data,masterData);
let res:any = await Http.getInstance().post(`/ibizsample0014s/${context.ibizsample0014}/save`,data,isloading);
let res:any = await Http.getInstance().post(`/demoapi/ibizsample0014s/${context.ibizsample0014}/save`,data,isloading);
return res;
}
......@@ -150,7 +152,7 @@ export default class IBIZSample0014ServiceBase extends EntityService {
public async Update(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let masterData:any = {};
Object.assign(data,masterData);
let res:any = await Http.getInstance().put(`/ibizsample0014s/${context.ibizsample0014}`,data,isloading);
let res:any = await Http.getInstance().put(`/demoapi/ibizsample0014s/${context.ibizsample0014}`,data,isloading);
return res;
}
......@@ -166,7 +168,7 @@ export default class IBIZSample0014ServiceBase extends EntityService {
*/
public async FetchCurIBIZSample0014(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
let res:any = Http.getInstance().get(`/ibizsample0014s/fetchcuribizsample0014`,tempData,isloading);
let res:any = Http.getInstance().get(`/demoapi/ibizsample0014s/fetchcuribizsample0014`,tempData,isloading);
return res;
}
......@@ -181,7 +183,7 @@ export default class IBIZSample0014ServiceBase extends EntityService {
*/
public async searchCurIBIZSample0014(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
return await Http.getInstance().post(`/ibizsample0014s/searchcuribizsample0014`,tempData,isloading);
return await Http.getInstance().post(`/demoapi/ibizsample0014s/searchcuribizsample0014`,tempData,isloading);
}
/**
......@@ -195,7 +197,7 @@ export default class IBIZSample0014ServiceBase extends EntityService {
*/
public async FetchDefault(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
let res:any = Http.getInstance().get(`/ibizsample0014s/fetchdefault`,tempData,isloading);
let res:any = Http.getInstance().get(`/demoapi/ibizsample0014s/fetchdefault`,tempData,isloading);
return res;
}
......@@ -210,7 +212,7 @@ export default class IBIZSample0014ServiceBase extends EntityService {
*/
public async searchDefault(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
return await Http.getInstance().post(`/ibizsample0014s/searchdefault`,tempData,isloading);
return await Http.getInstance().post(`/demoapi/ibizsample0014s/searchdefault`,tempData,isloading);
}
/**
......@@ -223,7 +225,7 @@ export default class IBIZSample0014ServiceBase extends EntityService {
* @memberof IBIZSample0014ServiceBase
*/
public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().get(`/ibizsample0014s/${context.ibizsample0014}/select`,isloading);
let res:any = Http.getInstance().get(`/demoapi/ibizsample0014s/${context.ibizsample0014}/select`,isloading);
return res;
}
......
......@@ -3,6 +3,8 @@ import EntityService from '../entity-service';
/**
* 项目服务对象基类
* 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成
......@@ -48,7 +50,7 @@ export default class IBIZSample0015ServiceBase extends EntityService {
* @memberof IBIZSample0015ServiceBase
*/
public async CheckKey(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().post(`/ibizsample0015s/${context.ibizsample0015}/checkkey`,data,isloading);
let res:any = Http.getInstance().post(`/demoapi/ibizsample0015s/${context.ibizsample0015}/checkkey`,data,isloading);
return res;
}
......@@ -71,7 +73,7 @@ export default class IBIZSample0015ServiceBase extends EntityService {
delete data.srffrontuf;
}
let tempContext:any = JSON.parse(JSON.stringify(context));
let res:any = await Http.getInstance().post(`/ibizsample0015s`,data,isloading);
let res:any = await Http.getInstance().post(`/demoapi/ibizsample0015s`,data,isloading);
return res;
}
......@@ -86,7 +88,7 @@ export default class IBIZSample0015ServiceBase extends EntityService {
* @memberof IBIZSample0015ServiceBase
*/
public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/ibizsample0015s/${context.ibizsample0015}`,isloading);
let res:any = await Http.getInstance().get(`/demoapi/ibizsample0015s/${context.ibizsample0015}`,isloading);
return res;
}
......@@ -101,7 +103,7 @@ export default class IBIZSample0015ServiceBase extends EntityService {
* @memberof IBIZSample0015ServiceBase
*/
public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/ibizsample0015s/getdraft`,isloading);
let res:any = await Http.getInstance().get(`/demoapi/ibizsample0015s/getdraft`,isloading);
res.data.ibizsample0015 = data.ibizsample0015;
return res;
......@@ -117,7 +119,7 @@ export default class IBIZSample0015ServiceBase extends EntityService {
* @memberof IBIZSample0015ServiceBase
*/
public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().delete(`/ibizsample0015s/${context.ibizsample0015}`,isloading);
let res:any = Http.getInstance().delete(`/demoapi/ibizsample0015s/${context.ibizsample0015}`,isloading);
return res;
}
......@@ -133,7 +135,7 @@ export default class IBIZSample0015ServiceBase extends EntityService {
public async Save(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let masterData:any = {};
Object.assign(data,masterData);
let res:any = await Http.getInstance().post(`/ibizsample0015s/${context.ibizsample0015}/save`,data,isloading);
let res:any = await Http.getInstance().post(`/demoapi/ibizsample0015s/${context.ibizsample0015}/save`,data,isloading);
return res;
}
......@@ -150,7 +152,7 @@ export default class IBIZSample0015ServiceBase extends EntityService {
public async Update(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let masterData:any = {};
Object.assign(data,masterData);
let res:any = await Http.getInstance().put(`/ibizsample0015s/${context.ibizsample0015}`,data,isloading);
let res:any = await Http.getInstance().put(`/demoapi/ibizsample0015s/${context.ibizsample0015}`,data,isloading);
return res;
}
......@@ -166,7 +168,7 @@ export default class IBIZSample0015ServiceBase extends EntityService {
*/
public async FetchDefault(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
let res:any = Http.getInstance().get(`/ibizsample0015s/fetchdefault`,tempData,isloading);
let res:any = Http.getInstance().get(`/demoapi/ibizsample0015s/fetchdefault`,tempData,isloading);
return res;
}
......@@ -181,7 +183,7 @@ export default class IBIZSample0015ServiceBase extends EntityService {
*/
public async searchDefault(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
return await Http.getInstance().post(`/ibizsample0015s/searchdefault`,tempData,isloading);
return await Http.getInstance().post(`/demoapi/ibizsample0015s/searchdefault`,tempData,isloading);
}
/**
......@@ -194,7 +196,7 @@ export default class IBIZSample0015ServiceBase extends EntityService {
* @memberof IBIZSample0015ServiceBase
*/
public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().get(`/ibizsample0015s/${context.ibizsample0015}/select`,isloading);
let res:any = Http.getInstance().get(`/demoapi/ibizsample0015s/${context.ibizsample0015}/select`,isloading);
return res;
}
......
......@@ -3,6 +3,8 @@ import EntityService from '../entity-service';
/**
* 项目成员服务对象基类
* 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成
......@@ -48,7 +50,7 @@ export default class IBIZSample0016ServiceBase extends EntityService {
* @memberof IBIZSample0016ServiceBase
*/
public async CheckKey(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().post(`/ibizsample0016s/${context.ibizsample0016}/checkkey`,data,isloading);
let res:any = Http.getInstance().post(`/demoapi/ibizsample0016s/${context.ibizsample0016}/checkkey`,data,isloading);
return res;
}
......@@ -71,7 +73,7 @@ export default class IBIZSample0016ServiceBase extends EntityService {
delete data.srffrontuf;
}
let tempContext:any = JSON.parse(JSON.stringify(context));
let res:any = await Http.getInstance().post(`/ibizsample0016s`,data,isloading);
let res:any = await Http.getInstance().post(`/demoapi/ibizsample0016s`,data,isloading);
return res;
}
......@@ -86,7 +88,7 @@ export default class IBIZSample0016ServiceBase extends EntityService {
* @memberof IBIZSample0016ServiceBase
*/
public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/ibizsample0016s/${context.ibizsample0016}`,isloading);
let res:any = await Http.getInstance().get(`/demoapi/ibizsample0016s/${context.ibizsample0016}`,isloading);
return res;
}
......@@ -101,7 +103,7 @@ export default class IBIZSample0016ServiceBase extends EntityService {
* @memberof IBIZSample0016ServiceBase
*/
public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/ibizsample0016s/getdraft`,isloading);
let res:any = await Http.getInstance().get(`/demoapi/ibizsample0016s/getdraft`,isloading);
res.data.ibizsample0016 = data.ibizsample0016;
return res;
......@@ -117,7 +119,7 @@ export default class IBIZSample0016ServiceBase extends EntityService {
* @memberof IBIZSample0016ServiceBase
*/
public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().delete(`/ibizsample0016s/${context.ibizsample0016}`,isloading);
let res:any = Http.getInstance().delete(`/demoapi/ibizsample0016s/${context.ibizsample0016}`,isloading);
return res;
}
......@@ -133,7 +135,7 @@ export default class IBIZSample0016ServiceBase extends EntityService {
public async Save(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let masterData:any = {};
Object.assign(data,masterData);
let res:any = await Http.getInstance().post(`/ibizsample0016s/${context.ibizsample0016}/save`,data,isloading);
let res:any = await Http.getInstance().post(`/demoapi/ibizsample0016s/${context.ibizsample0016}/save`,data,isloading);
return res;
}
......@@ -150,7 +152,7 @@ export default class IBIZSample0016ServiceBase extends EntityService {
public async Update(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let masterData:any = {};
Object.assign(data,masterData);
let res:any = await Http.getInstance().put(`/ibizsample0016s/${context.ibizsample0016}`,data,isloading);
let res:any = await Http.getInstance().put(`/demoapi/ibizsample0016s/${context.ibizsample0016}`,data,isloading);
return res;
}
......@@ -166,7 +168,7 @@ export default class IBIZSample0016ServiceBase extends EntityService {
*/
public async FetchDefault(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
let res:any = Http.getInstance().get(`/ibizsample0016s/fetchdefault`,tempData,isloading);
let res:any = Http.getInstance().get(`/demoapi/ibizsample0016s/fetchdefault`,tempData,isloading);
return res;
}
......@@ -181,7 +183,7 @@ export default class IBIZSample0016ServiceBase extends EntityService {
*/
public async searchDefault(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
return await Http.getInstance().post(`/ibizsample0016s/searchdefault`,tempData,isloading);
return await Http.getInstance().post(`/demoapi/ibizsample0016s/searchdefault`,tempData,isloading);
}
/**
......@@ -194,7 +196,7 @@ export default class IBIZSample0016ServiceBase extends EntityService {
* @memberof IBIZSample0016ServiceBase
*/
public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().get(`/ibizsample0016s/${context.ibizsample0016}/select`,isloading);
let res:any = Http.getInstance().get(`/demoapi/ibizsample0016s/${context.ibizsample0016}/select`,isloading);
return res;
}
......
......@@ -3,6 +3,8 @@ import EntityService from '../entity-service';
/**
* 订单服务对象基类
* 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成
......@@ -48,7 +50,7 @@ export default class IBIZSample0017ServiceBase extends EntityService {
* @memberof IBIZSample0017ServiceBase
*/
public async CheckKey(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().post(`/ibizsample0017s/${context.ibizsample0017}/checkkey`,data,isloading);
let res:any = Http.getInstance().post(`/demoapi/ibizsample0017s/${context.ibizsample0017}/checkkey`,data,isloading);
return res;
}
......@@ -71,7 +73,7 @@ export default class IBIZSample0017ServiceBase extends EntityService {
delete data.srffrontuf;
}
let tempContext:any = JSON.parse(JSON.stringify(context));
let res:any = await Http.getInstance().post(`/ibizsample0017s`,data,isloading);
let res:any = await Http.getInstance().post(`/demoapi/ibizsample0017s`,data,isloading);
return res;
}
......@@ -86,7 +88,7 @@ export default class IBIZSample0017ServiceBase extends EntityService {
* @memberof IBIZSample0017ServiceBase
*/
public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/ibizsample0017s/${context.ibizsample0017}`,isloading);
let res:any = await Http.getInstance().get(`/demoapi/ibizsample0017s/${context.ibizsample0017}`,isloading);
return res;
}
......@@ -101,7 +103,7 @@ export default class IBIZSample0017ServiceBase extends EntityService {
* @memberof IBIZSample0017ServiceBase
*/
public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/ibizsample0017s/getdraft`,isloading);
let res:any = await Http.getInstance().get(`/demoapi/ibizsample0017s/getdraft`,isloading);
res.data.ibizsample0017 = data.ibizsample0017;
return res;
......@@ -117,7 +119,7 @@ export default class IBIZSample0017ServiceBase extends EntityService {
* @memberof IBIZSample0017ServiceBase
*/
public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().delete(`/ibizsample0017s/${context.ibizsample0017}`,isloading);
let res:any = Http.getInstance().delete(`/demoapi/ibizsample0017s/${context.ibizsample0017}`,isloading);
return res;
}
......@@ -133,7 +135,7 @@ export default class IBIZSample0017ServiceBase extends EntityService {
public async Save(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let masterData:any = {};
Object.assign(data,masterData);
let res:any = await Http.getInstance().post(`/ibizsample0017s/${context.ibizsample0017}/save`,data,isloading);
let res:any = await Http.getInstance().post(`/demoapi/ibizsample0017s/${context.ibizsample0017}/save`,data,isloading);
return res;
}
......@@ -150,7 +152,7 @@ export default class IBIZSample0017ServiceBase extends EntityService {
public async Update(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let masterData:any = {};
Object.assign(data,masterData);
let res:any = await Http.getInstance().put(`/ibizsample0017s/${context.ibizsample0017}`,data,isloading);
let res:any = await Http.getInstance().put(`/demoapi/ibizsample0017s/${context.ibizsample0017}`,data,isloading);
return res;
}
......@@ -166,7 +168,7 @@ export default class IBIZSample0017ServiceBase extends EntityService {
*/
public async FetchDefault(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
let res:any = Http.getInstance().get(`/ibizsample0017s/fetchdefault`,tempData,isloading);
let res:any = Http.getInstance().get(`/demoapi/ibizsample0017s/fetchdefault`,tempData,isloading);
return res;
}
......@@ -181,7 +183,7 @@ export default class IBIZSample0017ServiceBase extends EntityService {
*/
public async searchDefault(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
return await Http.getInstance().post(`/ibizsample0017s/searchdefault`,tempData,isloading);
return await Http.getInstance().post(`/demoapi/ibizsample0017s/searchdefault`,tempData,isloading);
}
/**
......@@ -195,7 +197,7 @@ export default class IBIZSample0017ServiceBase extends EntityService {
*/
public async FetchFormType(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
let res:any = Http.getInstance().get(`/ibizsample0017s/fetchformtype`,tempData,isloading);
let res:any = Http.getInstance().get(`/demoapi/ibizsample0017s/fetchformtype`,tempData,isloading);
return res;
}
......@@ -210,7 +212,7 @@ export default class IBIZSample0017ServiceBase extends EntityService {
*/
public async searchFormType(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
return await Http.getInstance().post(`/ibizsample0017s/searchformtype`,tempData,isloading);
return await Http.getInstance().post(`/demoapi/ibizsample0017s/searchformtype`,tempData,isloading);
}
/**
......@@ -223,7 +225,7 @@ export default class IBIZSample0017ServiceBase extends EntityService {
* @memberof IBIZSample0017ServiceBase
*/
public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().get(`/ibizsample0017s/${context.ibizsample0017}/select`,isloading);
let res:any = Http.getInstance().get(`/demoapi/ibizsample0017s/${context.ibizsample0017}/select`,isloading);
return res;
}
......
......@@ -3,6 +3,8 @@ import EntityService from '../entity-service';
/**
* 示例实体18服务对象基类
* 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成
......@@ -48,7 +50,7 @@ export default class IBIZSample0018ServiceBase extends EntityService {
* @memberof IBIZSample0018ServiceBase
*/
public async CheckKey(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().post(`/ibizsample0018s/${context.ibizsample0018}/checkkey`,data,isloading);
let res:any = Http.getInstance().post(`/demoapi/ibizsample0018s/${context.ibizsample0018}/checkkey`,data,isloading);
return res;
}
......@@ -71,7 +73,7 @@ export default class IBIZSample0018ServiceBase extends EntityService {
delete data.srffrontuf;
}
let tempContext:any = JSON.parse(JSON.stringify(context));
let res:any = await Http.getInstance().post(`/ibizsample0018s`,data,isloading);
let res:any = await Http.getInstance().post(`/demoapi/ibizsample0018s`,data,isloading);
return res;
}
......@@ -86,7 +88,7 @@ export default class IBIZSample0018ServiceBase extends EntityService {
* @memberof IBIZSample0018ServiceBase
*/
public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/ibizsample0018s/${context.ibizsample0018}`,isloading);
let res:any = await Http.getInstance().get(`/demoapi/ibizsample0018s/${context.ibizsample0018}`,isloading);
return res;
}
......@@ -101,7 +103,7 @@ export default class IBIZSample0018ServiceBase extends EntityService {
* @memberof IBIZSample0018ServiceBase
*/
public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/ibizsample0018s/getdraft`,isloading);
let res:any = await Http.getInstance().get(`/demoapi/ibizsample0018s/getdraft`,isloading);
res.data.ibizsample0018 = data.ibizsample0018;
return res;
......@@ -117,7 +119,7 @@ export default class IBIZSample0018ServiceBase extends EntityService {
* @memberof IBIZSample0018ServiceBase
*/
public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().delete(`/ibizsample0018s/${context.ibizsample0018}`,isloading);
let res:any = Http.getInstance().delete(`/demoapi/ibizsample0018s/${context.ibizsample0018}`,isloading);
return res;
}
......@@ -133,7 +135,7 @@ export default class IBIZSample0018ServiceBase extends EntityService {
public async Save(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let masterData:any = {};
Object.assign(data,masterData);
let res:any = await Http.getInstance().post(`/ibizsample0018s/${context.ibizsample0018}/save`,data,isloading);
let res:any = await Http.getInstance().post(`/demoapi/ibizsample0018s/${context.ibizsample0018}/save`,data,isloading);
return res;
}
......@@ -150,7 +152,7 @@ export default class IBIZSample0018ServiceBase extends EntityService {
public async Update(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let masterData:any = {};
Object.assign(data,masterData);
let res:any = await Http.getInstance().put(`/ibizsample0018s/${context.ibizsample0018}`,data,isloading);
let res:any = await Http.getInstance().put(`/demoapi/ibizsample0018s/${context.ibizsample0018}`,data,isloading);
return res;
}
......@@ -166,7 +168,7 @@ export default class IBIZSample0018ServiceBase extends EntityService {
*/
public async FetchDefault(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
let res:any = Http.getInstance().get(`/ibizsample0018s/fetchdefault`,tempData,isloading);
let res:any = Http.getInstance().get(`/demoapi/ibizsample0018s/fetchdefault`,tempData,isloading);
return res;
}
......@@ -181,7 +183,7 @@ export default class IBIZSample0018ServiceBase extends EntityService {
*/
public async searchDefault(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
return await Http.getInstance().post(`/ibizsample0018s/searchdefault`,tempData,isloading);
return await Http.getInstance().post(`/demoapi/ibizsample0018s/searchdefault`,tempData,isloading);
}
/**
......@@ -194,7 +196,7 @@ export default class IBIZSample0018ServiceBase extends EntityService {
* @memberof IBIZSample0018ServiceBase
*/
public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().get(`/ibizsample0018s/${context.ibizsample0018}/select`,isloading);
let res:any = Http.getInstance().get(`/demoapi/ibizsample0018s/${context.ibizsample0018}/select`,isloading);
return res;
}
......
......@@ -4,6 +4,8 @@ import UpdateYGNameLogic from '@/service/ibizsample0019/update-ygname-logic';
/**
* 部门服务对象基类
* 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成
......@@ -49,7 +51,7 @@ export default class IBIZSample0019ServiceBase extends EntityService {
* @memberof IBIZSample0019ServiceBase
*/
public async CheckKey(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().post(`/ibizsample0019s/${context.ibizsample0019}/checkkey`,data,isloading);
let res:any = Http.getInstance().post(`/demoapi/ibizsample0019s/${context.ibizsample0019}/checkkey`,data,isloading);
return res;
}
......@@ -72,7 +74,7 @@ export default class IBIZSample0019ServiceBase extends EntityService {
delete data.srffrontuf;
}
let tempContext:any = JSON.parse(JSON.stringify(context));
let res:any = await Http.getInstance().post(`/ibizsample0019s`,data,isloading);
let res:any = await Http.getInstance().post(`/demoapi/ibizsample0019s`,data,isloading);
return res;
}
......@@ -87,7 +89,7 @@ export default class IBIZSample0019ServiceBase extends EntityService {
* @memberof IBIZSample0019ServiceBase
*/
public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/ibizsample0019s/${context.ibizsample0019}`,isloading);
let res:any = await Http.getInstance().get(`/demoapi/ibizsample0019s/${context.ibizsample0019}`,isloading);
return res;
}
......@@ -102,7 +104,7 @@ export default class IBIZSample0019ServiceBase extends EntityService {
* @memberof IBIZSample0019ServiceBase
*/
public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/ibizsample0019s/getdraft`,isloading);
let res:any = await Http.getInstance().get(`/demoapi/ibizsample0019s/getdraft`,isloading);
res.data.ibizsample0019 = data.ibizsample0019;
return res;
......@@ -118,7 +120,7 @@ export default class IBIZSample0019ServiceBase extends EntityService {
* @memberof IBIZSample0019ServiceBase
*/
public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().delete(`/ibizsample0019s/${context.ibizsample0019}`,isloading);
let res:any = Http.getInstance().delete(`/demoapi/ibizsample0019s/${context.ibizsample0019}`,isloading);
return res;
}
......@@ -134,7 +136,7 @@ export default class IBIZSample0019ServiceBase extends EntityService {
public async Save(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let masterData:any = {};
Object.assign(data,masterData);
let res:any = await Http.getInstance().post(`/ibizsample0019s/${context.ibizsample0019}/save`,data,isloading);
let res:any = await Http.getInstance().post(`/demoapi/ibizsample0019s/${context.ibizsample0019}/save`,data,isloading);
return res;
}
......@@ -151,7 +153,7 @@ export default class IBIZSample0019ServiceBase extends EntityService {
public async Update(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let masterData:any = {};
Object.assign(data,masterData);
let res:any = await Http.getInstance().put(`/ibizsample0019s/${context.ibizsample0019}`,data,isloading);
let res:any = await Http.getInstance().put(`/demoapi/ibizsample0019s/${context.ibizsample0019}`,data,isloading);
let updateygname:UpdateYGNameLogic = new UpdateYGNameLogic({context:JSON.parse(JSON.stringify(context)),data:JSON.parse(JSON.stringify(res)).data});
let updateygnameData:any = await updateygname.onExecute(context,res.data,isloading?true:false);
res ={status:200,data:updateygnameData};
......@@ -170,7 +172,7 @@ export default class IBIZSample0019ServiceBase extends EntityService {
*/
public async FetchDefault(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
let res:any = Http.getInstance().get(`/ibizsample0019s/fetchdefault`,tempData,isloading);
let res:any = Http.getInstance().get(`/demoapi/ibizsample0019s/fetchdefault`,tempData,isloading);
return res;
}
......@@ -185,7 +187,7 @@ export default class IBIZSample0019ServiceBase extends EntityService {
*/
public async searchDefault(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
return await Http.getInstance().post(`/ibizsample0019s/searchdefault`,tempData,isloading);
return await Http.getInstance().post(`/demoapi/ibizsample0019s/searchdefault`,tempData,isloading);
}
/**
......@@ -198,7 +200,7 @@ export default class IBIZSample0019ServiceBase extends EntityService {
* @memberof IBIZSample0019ServiceBase
*/
public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().get(`/ibizsample0019s/${context.ibizsample0019}/select`,isloading);
let res:any = Http.getInstance().get(`/demoapi/ibizsample0019s/${context.ibizsample0019}/select`,isloading);
return res;
}
......
......@@ -3,6 +3,8 @@ import EntityService from '../entity-service';
/**
* 员工服务对象基类
* 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成
......@@ -48,7 +50,7 @@ export default class IBIZSample0020ServiceBase extends EntityService {
* @memberof IBIZSample0020ServiceBase
*/
public async CheckKey(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().post(`/ibizsample0020s/${context.ibizsample0020}/checkkey`,data,isloading);
let res:any = Http.getInstance().post(`/demoapi/ibizsample0020s/${context.ibizsample0020}/checkkey`,data,isloading);
return res;
}
......@@ -71,7 +73,7 @@ export default class IBIZSample0020ServiceBase extends EntityService {
delete data.srffrontuf;
}
let tempContext:any = JSON.parse(JSON.stringify(context));
let res:any = await Http.getInstance().post(`/ibizsample0020s`,data,isloading);
let res:any = await Http.getInstance().post(`/demoapi/ibizsample0020s`,data,isloading);
return res;
}
......@@ -86,7 +88,7 @@ export default class IBIZSample0020ServiceBase extends EntityService {
* @memberof IBIZSample0020ServiceBase
*/
public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/ibizsample0020s/${context.ibizsample0020}`,isloading);
let res:any = await Http.getInstance().get(`/demoapi/ibizsample0020s/${context.ibizsample0020}`,isloading);
return res;
}
......@@ -101,7 +103,7 @@ export default class IBIZSample0020ServiceBase extends EntityService {
* @memberof IBIZSample0020ServiceBase
*/
public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/ibizsample0020s/getdraft`,isloading);
let res:any = await Http.getInstance().get(`/demoapi/ibizsample0020s/getdraft`,isloading);
res.data.ibizsample0020 = data.ibizsample0020;
return res;
......@@ -117,7 +119,7 @@ export default class IBIZSample0020ServiceBase extends EntityService {
* @memberof IBIZSample0020ServiceBase
*/
public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().delete(`/ibizsample0020s/${context.ibizsample0020}`,isloading);
let res:any = Http.getInstance().delete(`/demoapi/ibizsample0020s/${context.ibizsample0020}`,isloading);
return res;
}
......@@ -133,7 +135,7 @@ export default class IBIZSample0020ServiceBase extends EntityService {
public async Save(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let masterData:any = {};
Object.assign(data,masterData);
let res:any = await Http.getInstance().post(`/ibizsample0020s/${context.ibizsample0020}/save`,data,isloading);
let res:any = await Http.getInstance().post(`/demoapi/ibizsample0020s/${context.ibizsample0020}/save`,data,isloading);
return res;
}
......@@ -150,7 +152,7 @@ export default class IBIZSample0020ServiceBase extends EntityService {
public async Update(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let masterData:any = {};
Object.assign(data,masterData);
let res:any = await Http.getInstance().put(`/ibizsample0020s/${context.ibizsample0020}`,data,isloading);
let res:any = await Http.getInstance().put(`/demoapi/ibizsample0020s/${context.ibizsample0020}`,data,isloading);
return res;
}
......@@ -166,7 +168,7 @@ export default class IBIZSample0020ServiceBase extends EntityService {
*/
public async FetchDefault(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
let res:any = Http.getInstance().get(`/ibizsample0020s/fetchdefault`,tempData,isloading);
let res:any = Http.getInstance().get(`/demoapi/ibizsample0020s/fetchdefault`,tempData,isloading);
return res;
}
......@@ -181,7 +183,7 @@ export default class IBIZSample0020ServiceBase extends EntityService {
*/
public async searchDefault(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
return await Http.getInstance().post(`/ibizsample0020s/searchdefault`,tempData,isloading);
return await Http.getInstance().post(`/demoapi/ibizsample0020s/searchdefault`,tempData,isloading);
}
/**
......@@ -194,7 +196,7 @@ export default class IBIZSample0020ServiceBase extends EntityService {
* @memberof IBIZSample0020ServiceBase
*/
public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().get(`/ibizsample0020s/${context.ibizsample0020}/select`,isloading);
let res:any = Http.getInstance().get(`/demoapi/ibizsample0020s/${context.ibizsample0020}/select`,isloading);
return res;
}
......
......@@ -3,6 +3,8 @@ import EntityService from '../entity-service';
/**
* 订单服务对象基类
* 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成
......@@ -48,7 +50,7 @@ export default class IBIZSample0021ServiceBase extends EntityService {
* @memberof IBIZSample0021ServiceBase
*/
public async CheckKey(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().post(`/ibizsample0021s/${context.ibizsample0021}/checkkey`,data,isloading);
let res:any = Http.getInstance().post(`/demoapi/ibizsample0021s/${context.ibizsample0021}/checkkey`,data,isloading);
return res;
}
......@@ -71,7 +73,7 @@ export default class IBIZSample0021ServiceBase extends EntityService {
delete data.srffrontuf;
}
let tempContext:any = JSON.parse(JSON.stringify(context));
let res:any = await Http.getInstance().post(`/ibizsample0021s`,data,isloading);
let res:any = await Http.getInstance().post(`/demoapi/ibizsample0021s`,data,isloading);
return res;
}
......@@ -86,7 +88,7 @@ export default class IBIZSample0021ServiceBase extends EntityService {
* @memberof IBIZSample0021ServiceBase
*/
public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/ibizsample0021s/${context.ibizsample0021}`,isloading);
let res:any = await Http.getInstance().get(`/demoapi/ibizsample0021s/${context.ibizsample0021}`,isloading);
return res;
}
......@@ -101,7 +103,7 @@ export default class IBIZSample0021ServiceBase extends EntityService {
* @memberof IBIZSample0021ServiceBase
*/
public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/ibizsample0021s/getdraft`,isloading);
let res:any = await Http.getInstance().get(`/demoapi/ibizsample0021s/getdraft`,isloading);
res.data.ibizsample0021 = data.ibizsample0021;
return res;
......@@ -117,7 +119,7 @@ export default class IBIZSample0021ServiceBase extends EntityService {
* @memberof IBIZSample0021ServiceBase
*/
public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().delete(`/ibizsample0021s/${context.ibizsample0021}`,isloading);
let res:any = Http.getInstance().delete(`/demoapi/ibizsample0021s/${context.ibizsample0021}`,isloading);
return res;
}
......@@ -133,7 +135,7 @@ export default class IBIZSample0021ServiceBase extends EntityService {
public async Save(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let masterData:any = {};
Object.assign(data,masterData);
let res:any = await Http.getInstance().post(`/ibizsample0021s/${context.ibizsample0021}/save`,data,isloading);
let res:any = await Http.getInstance().post(`/demoapi/ibizsample0021s/${context.ibizsample0021}/save`,data,isloading);
return res;
}
......@@ -150,7 +152,7 @@ export default class IBIZSample0021ServiceBase extends EntityService {
public async Update(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let masterData:any = {};
Object.assign(data,masterData);
let res:any = await Http.getInstance().put(`/ibizsample0021s/${context.ibizsample0021}`,data,isloading);
let res:any = await Http.getInstance().put(`/demoapi/ibizsample0021s/${context.ibizsample0021}`,data,isloading);
return res;
}
......@@ -166,7 +168,7 @@ export default class IBIZSample0021ServiceBase extends EntityService {
*/
public async FetchDefault(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
let res:any = Http.getInstance().get(`/ibizsample0021s/fetchdefault`,tempData,isloading);
let res:any = Http.getInstance().get(`/demoapi/ibizsample0021s/fetchdefault`,tempData,isloading);
return res;
}
......@@ -181,7 +183,7 @@ export default class IBIZSample0021ServiceBase extends EntityService {
*/
public async searchDefault(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
return await Http.getInstance().post(`/ibizsample0021s/searchdefault`,tempData,isloading);
return await Http.getInstance().post(`/demoapi/ibizsample0021s/searchdefault`,tempData,isloading);
}
/**
......@@ -194,7 +196,7 @@ export default class IBIZSample0021ServiceBase extends EntityService {
* @memberof IBIZSample0021ServiceBase
*/
public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().get(`/ibizsample0021s/${context.ibizsample0021}/select`,isloading);
let res:any = Http.getInstance().get(`/demoapi/ibizsample0021s/${context.ibizsample0021}/select`,isloading);
return res;
}
......
......@@ -3,6 +3,8 @@ import EntityService from '../entity-service';
/**
* 软件服务对象基类
* 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成
......@@ -48,7 +50,7 @@ export default class IBIZSoftwareSuitServiceBase extends EntityService {
* @memberof IBIZSoftwareSuitServiceBase
*/
public async CheckKey(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().post(`/ibizsoftwaresuits/${context.ibizsoftwaresuit}/checkkey`,data,isloading);
let res:any = Http.getInstance().post(`/demoapi/ibizsoftwaresuits/${context.ibizsoftwaresuit}/checkkey`,data,isloading);
return res;
}
......@@ -71,7 +73,7 @@ export default class IBIZSoftwareSuitServiceBase extends EntityService {
delete data.srffrontuf;
}
let tempContext:any = JSON.parse(JSON.stringify(context));
let res:any = await Http.getInstance().post(`/ibizsoftwaresuits`,data,isloading);
let res:any = await Http.getInstance().post(`/demoapi/ibizsoftwaresuits`,data,isloading);
return res;
}
......@@ -86,7 +88,7 @@ export default class IBIZSoftwareSuitServiceBase extends EntityService {
* @memberof IBIZSoftwareSuitServiceBase
*/
public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/ibizsoftwaresuits/${context.ibizsoftwaresuit}`,isloading);
let res:any = await Http.getInstance().get(`/demoapi/ibizsoftwaresuits/${context.ibizsoftwaresuit}`,isloading);
return res;
}
......@@ -101,7 +103,7 @@ export default class IBIZSoftwareSuitServiceBase extends EntityService {
* @memberof IBIZSoftwareSuitServiceBase
*/
public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/ibizsoftwaresuits/getdraft`,isloading);
let res:any = await Http.getInstance().get(`/demoapi/ibizsoftwaresuits/getdraft`,isloading);
res.data.ibizsoftwaresuit = data.ibizsoftwaresuit;
return res;
......@@ -117,7 +119,7 @@ export default class IBIZSoftwareSuitServiceBase extends EntityService {
* @memberof IBIZSoftwareSuitServiceBase
*/
public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().delete(`/ibizsoftwaresuits/${context.ibizsoftwaresuit}`,isloading);
let res:any = Http.getInstance().delete(`/demoapi/ibizsoftwaresuits/${context.ibizsoftwaresuit}`,isloading);
return res;
}
......@@ -133,7 +135,7 @@ export default class IBIZSoftwareSuitServiceBase extends EntityService {
public async Save(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let masterData:any = {};
Object.assign(data,masterData);
let res:any = await Http.getInstance().post(`/ibizsoftwaresuits/${context.ibizsoftwaresuit}/save`,data,isloading);
let res:any = await Http.getInstance().post(`/demoapi/ibizsoftwaresuits/${context.ibizsoftwaresuit}/save`,data,isloading);
return res;
}
......@@ -150,7 +152,7 @@ export default class IBIZSoftwareSuitServiceBase extends EntityService {
public async Update(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let masterData:any = {};
Object.assign(data,masterData);
let res:any = await Http.getInstance().put(`/ibizsoftwaresuits/${context.ibizsoftwaresuit}`,data,isloading);
let res:any = await Http.getInstance().put(`/demoapi/ibizsoftwaresuits/${context.ibizsoftwaresuit}`,data,isloading);
return res;
}
......@@ -166,7 +168,7 @@ export default class IBIZSoftwareSuitServiceBase extends EntityService {
*/
public async FetchDefault(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
let res:any = Http.getInstance().get(`/ibizsoftwaresuits/fetchdefault`,tempData,isloading);
let res:any = Http.getInstance().get(`/demoapi/ibizsoftwaresuits/fetchdefault`,tempData,isloading);
return res;
}
......@@ -181,7 +183,7 @@ export default class IBIZSoftwareSuitServiceBase extends EntityService {
*/
public async searchDefault(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
return await Http.getInstance().post(`/ibizsoftwaresuits/searchdefault`,tempData,isloading);
return await Http.getInstance().post(`/demoapi/ibizsoftwaresuits/searchdefault`,tempData,isloading);
}
/**
......@@ -194,7 +196,7 @@ export default class IBIZSoftwareSuitServiceBase extends EntityService {
* @memberof IBIZSoftwareSuitServiceBase
*/
public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().get(`/ibizsoftwaresuits/${context.ibizsoftwaresuit}/select`,isloading);
let res:any = Http.getInstance().get(`/demoapi/ibizsoftwaresuits/${context.ibizsoftwaresuit}/select`,isloading);
return res;
}
......
......@@ -3,6 +3,8 @@ import EntityService from '../entity-service';
/**
* 存储服务对象基类
* 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成
......@@ -48,7 +50,7 @@ export default class IBIZStorageServiceBase extends EntityService {
* @memberof IBIZStorageServiceBase
*/
public async CheckKey(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().post(`/ibizstorages/${context.ibizstorage}/checkkey`,data,isloading);
let res:any = Http.getInstance().post(`/demoapi/ibizstorages/${context.ibizstorage}/checkkey`,data,isloading);
return res;
}
......@@ -71,7 +73,7 @@ export default class IBIZStorageServiceBase extends EntityService {
delete data.srffrontuf;
}
let tempContext:any = JSON.parse(JSON.stringify(context));
let res:any = await Http.getInstance().post(`/ibizstorages`,data,isloading);
let res:any = await Http.getInstance().post(`/demoapi/ibizstorages`,data,isloading);
return res;
}
......@@ -86,7 +88,7 @@ export default class IBIZStorageServiceBase extends EntityService {
* @memberof IBIZStorageServiceBase
*/
public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/ibizstorages/${context.ibizstorage}`,isloading);
let res:any = await Http.getInstance().get(`/demoapi/ibizstorages/${context.ibizstorage}`,isloading);
return res;
}
......@@ -101,7 +103,7 @@ export default class IBIZStorageServiceBase extends EntityService {
* @memberof IBIZStorageServiceBase
*/
public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/ibizstorages/getdraft`,isloading);
let res:any = await Http.getInstance().get(`/demoapi/ibizstorages/getdraft`,isloading);
res.data.ibizstorage = data.ibizstorage;
return res;
......@@ -117,7 +119,7 @@ export default class IBIZStorageServiceBase extends EntityService {
* @memberof IBIZStorageServiceBase
*/
public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().delete(`/ibizstorages/${context.ibizstorage}`,isloading);
let res:any = Http.getInstance().delete(`/demoapi/ibizstorages/${context.ibizstorage}`,isloading);
return res;
}
......@@ -133,7 +135,7 @@ export default class IBIZStorageServiceBase extends EntityService {
public async Save(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let masterData:any = {};
Object.assign(data,masterData);
let res:any = await Http.getInstance().post(`/ibizstorages/${context.ibizstorage}/save`,data,isloading);
let res:any = await Http.getInstance().post(`/demoapi/ibizstorages/${context.ibizstorage}/save`,data,isloading);
return res;
}
......@@ -150,7 +152,7 @@ export default class IBIZStorageServiceBase extends EntityService {
public async Update(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let masterData:any = {};
Object.assign(data,masterData);
let res:any = await Http.getInstance().put(`/ibizstorages/${context.ibizstorage}`,data,isloading);
let res:any = await Http.getInstance().put(`/demoapi/ibizstorages/${context.ibizstorage}`,data,isloading);
return res;
}
......@@ -166,7 +168,7 @@ export default class IBIZStorageServiceBase extends EntityService {
*/
public async FetchDefault(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
let res:any = Http.getInstance().get(`/ibizstorages/fetchdefault`,tempData,isloading);
let res:any = Http.getInstance().get(`/demoapi/ibizstorages/fetchdefault`,tempData,isloading);
return res;
}
......@@ -181,7 +183,7 @@ export default class IBIZStorageServiceBase extends EntityService {
*/
public async searchDefault(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
return await Http.getInstance().post(`/ibizstorages/searchdefault`,tempData,isloading);
return await Http.getInstance().post(`/demoapi/ibizstorages/searchdefault`,tempData,isloading);
}
/**
......@@ -194,7 +196,7 @@ export default class IBIZStorageServiceBase extends EntityService {
* @memberof IBIZStorageServiceBase
*/
public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().get(`/ibizstorages/${context.ibizstorage}/select`,isloading);
let res:any = Http.getInstance().get(`/demoapi/ibizstorages/${context.ibizstorage}/select`,isloading);
return res;
}
......
......@@ -3,6 +3,8 @@ import EntityService from '../entity-service';
/**
* 供货商服务对象基类
* 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成
......@@ -48,7 +50,7 @@ export default class IBIZSupplierServiceBase extends EntityService {
* @memberof IBIZSupplierServiceBase
*/
public async CheckKey(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().post(`/ibizsuppliers/${context.ibizsupplier}/checkkey`,data,isloading);
let res:any = Http.getInstance().post(`/demoapi/ibizsuppliers/${context.ibizsupplier}/checkkey`,data,isloading);
return res;
}
......@@ -71,7 +73,7 @@ export default class IBIZSupplierServiceBase extends EntityService {
delete data.srffrontuf;
}
let tempContext:any = JSON.parse(JSON.stringify(context));
let res:any = await Http.getInstance().post(`/ibizsuppliers`,data,isloading);
let res:any = await Http.getInstance().post(`/demoapi/ibizsuppliers`,data,isloading);
return res;
}
......@@ -86,7 +88,7 @@ export default class IBIZSupplierServiceBase extends EntityService {
* @memberof IBIZSupplierServiceBase
*/
public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/ibizsuppliers/${context.ibizsupplier}`,isloading);
let res:any = await Http.getInstance().get(`/demoapi/ibizsuppliers/${context.ibizsupplier}`,isloading);
return res;
}
......@@ -101,7 +103,7 @@ export default class IBIZSupplierServiceBase extends EntityService {
* @memberof IBIZSupplierServiceBase
*/
public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/ibizsuppliers/getdraft`,isloading);
let res:any = await Http.getInstance().get(`/demoapi/ibizsuppliers/getdraft`,isloading);
res.data.ibizsupplier = data.ibizsupplier;
return res;
......@@ -117,7 +119,7 @@ export default class IBIZSupplierServiceBase extends EntityService {
* @memberof IBIZSupplierServiceBase
*/
public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().delete(`/ibizsuppliers/${context.ibizsupplier}`,isloading);
let res:any = Http.getInstance().delete(`/demoapi/ibizsuppliers/${context.ibizsupplier}`,isloading);
return res;
}
......@@ -133,7 +135,7 @@ export default class IBIZSupplierServiceBase extends EntityService {
public async Save(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let masterData:any = {};
Object.assign(data,masterData);
let res:any = await Http.getInstance().post(`/ibizsuppliers/${context.ibizsupplier}/save`,data,isloading);
let res:any = await Http.getInstance().post(`/demoapi/ibizsuppliers/${context.ibizsupplier}/save`,data,isloading);
return res;
}
......@@ -150,7 +152,7 @@ export default class IBIZSupplierServiceBase extends EntityService {
public async Update(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let masterData:any = {};
Object.assign(data,masterData);
let res:any = await Http.getInstance().put(`/ibizsuppliers/${context.ibizsupplier}`,data,isloading);
let res:any = await Http.getInstance().put(`/demoapi/ibizsuppliers/${context.ibizsupplier}`,data,isloading);
return res;
}
......@@ -166,7 +168,7 @@ export default class IBIZSupplierServiceBase extends EntityService {
*/
public async FetchDefault(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
let res:any = Http.getInstance().get(`/ibizsuppliers/fetchdefault`,tempData,isloading);
let res:any = Http.getInstance().get(`/demoapi/ibizsuppliers/fetchdefault`,tempData,isloading);
return res;
}
......@@ -181,7 +183,7 @@ export default class IBIZSupplierServiceBase extends EntityService {
*/
public async searchDefault(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
return await Http.getInstance().post(`/ibizsuppliers/searchdefault`,tempData,isloading);
return await Http.getInstance().post(`/demoapi/ibizsuppliers/searchdefault`,tempData,isloading);
}
/**
......@@ -194,7 +196,7 @@ export default class IBIZSupplierServiceBase extends EntityService {
* @memberof IBIZSupplierServiceBase
*/
public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().get(`/ibizsuppliers/${context.ibizsupplier}/select`,isloading);
let res:any = Http.getInstance().get(`/demoapi/ibizsuppliers/${context.ibizsupplier}/select`,isloading);
return res;
}
......
......@@ -3,6 +3,8 @@ import EntityService from '../entity-service';
/**
* 任务服务对象基类
* 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成
......@@ -48,7 +50,7 @@ export default class IBIZTASKServiceBase extends EntityService {
* @memberof IBIZTASKServiceBase
*/
public async CheckKey(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().post(`/ibiztasks/${context.ibiztask}/checkkey`,data,isloading);
let res:any = Http.getInstance().post(`/demoapi/ibiztasks/${context.ibiztask}/checkkey`,data,isloading);
return res;
}
......@@ -87,7 +89,7 @@ export default class IBIZTASKServiceBase extends EntityService {
delete data.srffrontuf;
}
let tempContext:any = JSON.parse(JSON.stringify(context));
let res:any = await Http.getInstance().post(`/ibiztasks`,data,isloading);
let res:any = await Http.getInstance().post(`/demoapi/ibiztasks`,data,isloading);
this.tempStorage.setItem(tempContext.srfsessionkey+'_ibiztaskteams',JSON.stringify(res.data.ibiztaskteams?res.data.ibiztaskteams:[]));
return res;
......@@ -103,7 +105,7 @@ export default class IBIZTASKServiceBase extends EntityService {
* @memberof IBIZTASKServiceBase
*/
public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/ibiztasks/${context.ibiztask}`,isloading);
let res:any = await Http.getInstance().get(`/demoapi/ibiztasks/${context.ibiztask}`,isloading);
this.tempStorage.setItem(context.srfsessionkey+'_ibiztaskteams',JSON.stringify(res.data.ibiztaskteams?res.data.ibiztaskteams:[]));
return res;
......@@ -119,7 +121,7 @@ export default class IBIZTASKServiceBase extends EntityService {
* @memberof IBIZTASKServiceBase
*/
public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/ibiztasks/getdraft`,isloading);
let res:any = await Http.getInstance().get(`/demoapi/ibiztasks/getdraft`,isloading);
res.data.ibiztask = data.ibiztask;
this.tempStorage.setItem(context.srfsessionkey+'_ibiztaskteams',JSON.stringify(res.data.ibiztaskteams?res.data.ibiztaskteams:[]));
......@@ -136,7 +138,7 @@ export default class IBIZTASKServiceBase extends EntityService {
* @memberof IBIZTASKServiceBase
*/
public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().delete(`/ibiztasks/${context.ibiztask}`,isloading);
let res:any = Http.getInstance().delete(`/demoapi/ibiztasks/${context.ibiztask}`,isloading);
return res;
}
......@@ -168,7 +170,7 @@ export default class IBIZTASKServiceBase extends EntityService {
}
masterData.ibiztaskteams = ibiztaskteamsData;
Object.assign(data,masterData);
let res:any = await Http.getInstance().post(`/ibiztasks/${context.ibiztask}/save`,data,isloading);
let res:any = await Http.getInstance().post(`/demoapi/ibiztasks/${context.ibiztask}/save`,data,isloading);
this.tempStorage.setItem(context.srfsessionkey+'_ibiztaskteams',JSON.stringify(res.data.ibiztaskteams?res.data.ibiztaskteams:[]));
return res;
......@@ -202,7 +204,7 @@ export default class IBIZTASKServiceBase extends EntityService {
}
masterData.ibiztaskteams = ibiztaskteamsData;
Object.assign(data,masterData);
let res:any = await Http.getInstance().put(`/ibiztasks/${context.ibiztask}`,data,isloading);
let res:any = await Http.getInstance().put(`/demoapi/ibiztasks/${context.ibiztask}`,data,isloading);
this.tempStorage.setItem(context.srfsessionkey+'_ibiztaskteams',JSON.stringify(res.data.ibiztaskteams?res.data.ibiztaskteams:[]));
return res;
......@@ -219,7 +221,7 @@ export default class IBIZTASKServiceBase extends EntityService {
*/
public async FetchDefault(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
let res:any = Http.getInstance().get(`/ibiztasks/fetchdefault`,tempData,isloading);
let res:any = Http.getInstance().get(`/demoapi/ibiztasks/fetchdefault`,tempData,isloading);
return res;
}
......@@ -234,7 +236,7 @@ export default class IBIZTASKServiceBase extends EntityService {
*/
public async searchDefault(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
return await Http.getInstance().post(`/ibiztasks/searchdefault`,tempData,isloading);
return await Http.getInstance().post(`/demoapi/ibiztasks/searchdefault`,tempData,isloading);
}
/**
......@@ -259,7 +261,7 @@ export default class IBIZTASKServiceBase extends EntityService {
* @memberof IBIZTASKServiceBase
*/
public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().get(`/ibiztasks/${context.ibiztask}/select`,isloading);
let res:any = Http.getInstance().get(`/demoapi/ibiztasks/${context.ibiztask}/select`,isloading);
return res;
}
......
......@@ -3,6 +3,8 @@ import EntityService from '../entity-service';
/**
* 任务团队服务对象基类
* 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成
......
......@@ -3,6 +3,8 @@ import EntityService from '../entity-service';
/**
* 统一产品(索引主实体)服务对象基类
* 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成
......@@ -48,7 +50,7 @@ export default class IBIZUNIProductServiceBase extends EntityService {
* @memberof IBIZUNIProductServiceBase
*/
public async CheckKey(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().post(`/ibizuniproducts/${context.ibizuniproduct}/checkkey`,data,isloading);
let res:any = Http.getInstance().post(`/demoapi/ibizuniproducts/${context.ibizuniproduct}/checkkey`,data,isloading);
return res;
}
......@@ -71,7 +73,7 @@ export default class IBIZUNIProductServiceBase extends EntityService {
delete data.srffrontuf;
}
let tempContext:any = JSON.parse(JSON.stringify(context));
let res:any = await Http.getInstance().post(`/ibizuniproducts`,data,isloading);
let res:any = await Http.getInstance().post(`/demoapi/ibizuniproducts`,data,isloading);
return res;
}
......@@ -86,7 +88,7 @@ export default class IBIZUNIProductServiceBase extends EntityService {
* @memberof IBIZUNIProductServiceBase
*/
public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/ibizuniproducts/${context.ibizuniproduct}`,isloading);
let res:any = await Http.getInstance().get(`/demoapi/ibizuniproducts/${context.ibizuniproduct}`,isloading);
return res;
}
......@@ -101,7 +103,7 @@ export default class IBIZUNIProductServiceBase extends EntityService {
* @memberof IBIZUNIProductServiceBase
*/
public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/ibizuniproducts/getdraft`,isloading);
let res:any = await Http.getInstance().get(`/demoapi/ibizuniproducts/getdraft`,isloading);
res.data.ibizuniproduct = data.ibizuniproduct;
return res;
......@@ -117,7 +119,7 @@ export default class IBIZUNIProductServiceBase extends EntityService {
* @memberof IBIZUNIProductServiceBase
*/
public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().delete(`/ibizuniproducts/${context.ibizuniproduct}`,isloading);
let res:any = Http.getInstance().delete(`/demoapi/ibizuniproducts/${context.ibizuniproduct}`,isloading);
return res;
}
......@@ -133,7 +135,7 @@ export default class IBIZUNIProductServiceBase extends EntityService {
public async Save(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let masterData:any = {};
Object.assign(data,masterData);
let res:any = await Http.getInstance().post(`/ibizuniproducts/${context.ibizuniproduct}/save`,data,isloading);
let res:any = await Http.getInstance().post(`/demoapi/ibizuniproducts/${context.ibizuniproduct}/save`,data,isloading);
return res;
}
......@@ -150,7 +152,7 @@ export default class IBIZUNIProductServiceBase extends EntityService {
public async Update(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let masterData:any = {};
Object.assign(data,masterData);
let res:any = await Http.getInstance().put(`/ibizuniproducts/${context.ibizuniproduct}`,data,isloading);
let res:any = await Http.getInstance().put(`/demoapi/ibizuniproducts/${context.ibizuniproduct}`,data,isloading);
return res;
}
......@@ -166,7 +168,7 @@ export default class IBIZUNIProductServiceBase extends EntityService {
*/
public async FetchDefault(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
let res:any = Http.getInstance().get(`/ibizuniproducts/fetchdefault`,tempData,isloading);
let res:any = Http.getInstance().get(`/demoapi/ibizuniproducts/fetchdefault`,tempData,isloading);
return res;
}
......@@ -181,7 +183,7 @@ export default class IBIZUNIProductServiceBase extends EntityService {
*/
public async searchDefault(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
return await Http.getInstance().post(`/ibizuniproducts/searchdefault`,tempData,isloading);
return await Http.getInstance().post(`/demoapi/ibizuniproducts/searchdefault`,tempData,isloading);
}
/**
......@@ -217,7 +219,7 @@ export default class IBIZUNIProductServiceBase extends EntityService {
*/
public async searchIndexDER(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
return await Http.getInstance().post(`/ibizuniproducts/searchindexder`,tempData,isloading);
return await Http.getInstance().post(`/demoapi/ibizuniproducts/searchindexder`,tempData,isloading);
}
/**
......@@ -230,7 +232,7 @@ export default class IBIZUNIProductServiceBase extends EntityService {
* @memberof IBIZUNIProductServiceBase
*/
public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().get(`/ibizuniproducts/${context.ibizuniproduct}/select`,isloading);
let res:any = Http.getInstance().get(`/demoapi/ibizuniproducts/${context.ibizuniproduct}/select`,isloading);
return res;
}
......
......@@ -3,6 +3,8 @@ import EntityService from '../entity-service';
/**
* 微组件服务对象基类
* 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成
......@@ -48,7 +50,7 @@ export default class MicroComponentServiceBase extends EntityService {
* @memberof MicroComponentServiceBase
*/
public async CheckKey(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().post(`/microcomponents/${context.microcomponent}/checkkey`,data,isloading);
let res:any = Http.getInstance().post(`/demoapi/microcomponents/${context.microcomponent}/checkkey`,data,isloading);
return res;
}
......@@ -71,7 +73,7 @@ export default class MicroComponentServiceBase extends EntityService {
delete data.srffrontuf;
}
let tempContext:any = JSON.parse(JSON.stringify(context));
let res:any = await Http.getInstance().post(`/microcomponents`,data,isloading);
let res:any = await Http.getInstance().post(`/demoapi/microcomponents`,data,isloading);
return res;
}
......@@ -86,7 +88,7 @@ export default class MicroComponentServiceBase extends EntityService {
* @memberof MicroComponentServiceBase
*/
public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/microcomponents/${context.microcomponent}`,isloading);
let res:any = await Http.getInstance().get(`/demoapi/microcomponents/${context.microcomponent}`,isloading);
return res;
}
......@@ -101,7 +103,7 @@ export default class MicroComponentServiceBase extends EntityService {
* @memberof MicroComponentServiceBase
*/
public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = await Http.getInstance().get(`/microcomponents/getdraft`,isloading);
let res:any = await Http.getInstance().get(`/demoapi/microcomponents/getdraft`,isloading);
res.data.microcomponent = data.microcomponent;
return res;
......@@ -117,7 +119,7 @@ export default class MicroComponentServiceBase extends EntityService {
* @memberof MicroComponentServiceBase
*/
public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().delete(`/microcomponents/${context.microcomponent}`,isloading);
let res:any = Http.getInstance().delete(`/demoapi/microcomponents/${context.microcomponent}`,isloading);
return res;
}
......@@ -133,7 +135,7 @@ export default class MicroComponentServiceBase extends EntityService {
public async Save(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let masterData:any = {};
Object.assign(data,masterData);
let res:any = await Http.getInstance().post(`/microcomponents/${context.microcomponent}/save`,data,isloading);
let res:any = await Http.getInstance().post(`/demoapi/microcomponents/${context.microcomponent}/save`,data,isloading);
return res;
}
......@@ -150,7 +152,7 @@ export default class MicroComponentServiceBase extends EntityService {
public async Update(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let masterData:any = {};
Object.assign(data,masterData);
let res:any = await Http.getInstance().put(`/microcomponents/${context.microcomponent}`,data,isloading);
let res:any = await Http.getInstance().put(`/demoapi/microcomponents/${context.microcomponent}`,data,isloading);
return res;
}
......@@ -166,7 +168,7 @@ export default class MicroComponentServiceBase extends EntityService {
*/
public async FetchDefault(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
let res:any = Http.getInstance().get(`/microcomponents/fetchdefault`,tempData,isloading);
let res:any = Http.getInstance().get(`/demoapi/microcomponents/fetchdefault`,tempData,isloading);
return res;
}
......@@ -181,7 +183,7 @@ export default class MicroComponentServiceBase extends EntityService {
*/
public async searchDefault(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let tempData:any = JSON.parse(JSON.stringify(data));
return await Http.getInstance().post(`/microcomponents/searchdefault`,tempData,isloading);
return await Http.getInstance().post(`/demoapi/microcomponents/searchdefault`,tempData,isloading);
}
/**
......@@ -194,7 +196,7 @@ export default class MicroComponentServiceBase extends EntityService {
* @memberof MicroComponentServiceBase
*/
public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
let res:any = Http.getInstance().get(`/microcomponents/${context.microcomponent}/select`,isloading);
let res:any = Http.getInstance().get(`/demoapi/microcomponents/${context.microcomponent}/select`,isloading);
return res;
}
......
......@@ -712,7 +712,7 @@ export default class DefaultBase extends Vue implements ControlInterface {
*/
public load(opt: any = {}): void {
if(!this.loadAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKCalendarView' + (this.$t('app.searchForm.notConfig.loadAction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKUsr9GridView' + (this.$t('app.searchForm.notConfig.loadAction') as string) });
return;
}
const arg: any = { ...opt };
......@@ -748,7 +748,7 @@ export default class DefaultBase extends Vue implements ControlInterface {
*/
public async loadDraft(opt: any = {},mode?:string): Promise<any> {
if(!this.loaddraftAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKCalendarView' + (this.$t('app.searchForm.notConfig.loaddraftAction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKUsr9GridView' + (this.$t('app.searchForm.notConfig.loaddraftAction') as string) });
return;
}
const arg: any = { ...opt } ;
......
......@@ -46,11 +46,11 @@
<span class="quick-toolbar">
<div class='toolbar-container'>
<tooltip :transfer="true" :max-width="600">
<i-button v-show="usr4listview_layoutlist_quicktoolbarModels.deuiaction1.visabled" :disabled="usr4listview_layoutlist_quicktoolbarModels.deuiaction1.disabled" class='' v-button-loading:i-button @click="list_quicktoolbar_click({ tag: 'deuiaction1' }, $event)">
<i-button v-show="listviewlist_quicktoolbarModels.deuiaction1.visabled" :disabled="listviewlist_quicktoolbarModels.deuiaction1.disabled" class='' v-button-loading:i-button @click="list_quicktoolbar_click({ tag: 'deuiaction1' }, $event)">
<i class='fa fa-file-text-o'></i>
<span class='caption'>{{$t('entities.ibizbook.usr4listview_layoutlist_quicktoolbar_toolbar.deuiaction1.caption')}}</span>
<span class='caption'>{{$t('entities.ibizbook.listviewlist_quicktoolbar_toolbar.deuiaction1.caption')}}</span>
</i-button>
<div slot='content'>{{$t('entities.ibizbook.usr4listview_layoutlist_quicktoolbar_toolbar.deuiaction1.tip')}}</div>
<div slot='content'>{{$t('entities.ibizbook.listviewlist_quicktoolbar_toolbar.deuiaction1.tip')}}</div>
</tooltip>
</div>
</span>
......@@ -61,18 +61,18 @@
<span class="batch-toolbar">
<div class='toolbar-container'>
<tooltip :transfer="true" :max-width="600">
<i-button v-show="usr4listview_layoutlist_batchtoolbarModels.deuiaction1.visabled" :disabled="usr4listview_layoutlist_batchtoolbarModels.deuiaction1.disabled" class='' v-button-loading:i-button @click="list_batchtoolbar_click({ tag: 'deuiaction1' }, $event)">
<i-button v-show="listviewlist_batchtoolbarModels.deuiaction1.visabled" :disabled="listviewlist_batchtoolbarModels.deuiaction1.disabled" class='' v-button-loading:i-button @click="list_batchtoolbar_click({ tag: 'deuiaction1' }, $event)">
<i class='fa fa-edit'></i>
<span class='caption'>{{$t('entities.ibizbook.usr4listview_layoutlist_batchtoolbar_toolbar.deuiaction1.caption')}}</span>
<span class='caption'>{{$t('entities.ibizbook.listviewlist_batchtoolbar_toolbar.deuiaction1.caption')}}</span>
</i-button>
<div slot='content'>{{$t('entities.ibizbook.usr4listview_layoutlist_batchtoolbar_toolbar.deuiaction1.tip')}}</div>
<div slot='content'>{{$t('entities.ibizbook.listviewlist_batchtoolbar_toolbar.deuiaction1.tip')}}</div>
</tooltip>
<tooltip :transfer="true" :max-width="600">
<i-button v-show="usr4listview_layoutlist_batchtoolbarModels.deuiaction2.visabled" :disabled="usr4listview_layoutlist_batchtoolbarModels.deuiaction2.disabled" class='' v-button-loading:i-button @click="list_batchtoolbar_click({ tag: 'deuiaction2' }, $event)">
<i-button v-show="listviewlist_batchtoolbarModels.deuiaction2.visabled" :disabled="listviewlist_batchtoolbarModels.deuiaction2.disabled" class='' v-button-loading:i-button @click="list_batchtoolbar_click({ tag: 'deuiaction2' }, $event)">
<i class='fa fa-remove'></i>
<span class='caption'>{{$t('entities.ibizbook.usr4listview_layoutlist_batchtoolbar_toolbar.deuiaction2.caption')}}</span>
<span class='caption'>{{$t('entities.ibizbook.listviewlist_batchtoolbar_toolbar.deuiaction2.caption')}}</span>
</i-button>
<div slot='content'>{{$t('entities.ibizbook.usr4listview_layoutlist_batchtoolbar_toolbar.deuiaction2.tip')}}</div>
<div slot='content'>{{$t('entities.ibizbook.listviewlist_batchtoolbar_toolbar.deuiaction2.tip')}}</div>
</tooltip>
</div>
</span>
......@@ -382,7 +382,7 @@ export default class LnternalFuncListBase extends Vue implements ControlInterfac
* @param {*} [$event] 事件源
* @param {*} [xData] 执行行为所需当前部件
* @param {*} [actionContext] 执行行为上下文
* @memberof IBIZBOOKUsr4ListView_layoutBase
* @memberof IBIZBOOKListViewBase
*/
public New(args: any[],contextJO?:any, params?: any, $event?: any, xData?: any,actionContext?:any,srfParentDeName?:string) {
const _this: any = this;
......@@ -402,7 +402,7 @@ export default class LnternalFuncListBase extends Vue implements ControlInterfac
* @param {*} [$event] 事件源
* @param {*} [xData] 执行行为所需当前部件
* @param {*} [actionContext] 执行行为上下文
* @memberof IBIZBOOKUsr4ListView_layoutBase
* @memberof IBIZBOOKListViewBase
*/
public Edit(args: any[],contextJO?:any, params?: any, $event?: any, xData?: any,actionContext?:any,srfParentDeName?:string) {
if (args.length === 0) {
......@@ -428,7 +428,7 @@ export default class LnternalFuncListBase extends Vue implements ControlInterfac
* @param {*} [$event] 事件源
* @param {*} [xData] 执行行为所需当前部件
* @param {*} [actionContext] 执行行为上下文
* @memberof IBIZBOOKUsr4ListView_layoutBase
* @memberof IBIZBOOKListViewBase
*/
public Remove(args: any[],contextJO?:any, params?: any, $event?: any, xData?: any,actionContext?:any,srfParentDeName?:string) {
const _this: any = this;
......@@ -624,9 +624,9 @@ export default class LnternalFuncListBase extends Vue implements ControlInterfac
* 工具栏模型
*
* @type {*}
* @memberof IBIZBOOKUsr4ListView_layout
* @memberof IBIZBOOKListView
*/
public usr4listview_layoutlist_quicktoolbarModels: any = {
public listviewlist_quicktoolbarModels: any = {
deuiaction1: { name: 'deuiaction1', actiontarget: 'NONE', caption: '新建', disabled: false, type: 'DEUIACTION', visabled: true,noprivdisplaymode:2,dataaccaction: '', uiaction: { tag: 'New', target: '' } },
};
......@@ -636,9 +636,9 @@ export default class LnternalFuncListBase extends Vue implements ControlInterfac
* 工具栏模型
*
* @type {*}
* @memberof IBIZBOOKUsr4ListView_layout
* @memberof IBIZBOOKListView
*/
public usr4listview_layoutlist_batchtoolbarModels: any = {
public listviewlist_batchtoolbarModels: any = {
deuiaction1: { name: 'deuiaction1', actiontarget: 'NONE', caption: '编辑', disabled: false, type: 'DEUIACTION', visabled: true,noprivdisplaymode:2,dataaccaction: '', uiaction: { tag: 'Edit', target: 'SINGLEKEY' } },
deuiaction2: { name: 'deuiaction2', actiontarget: 'NONE', caption: '删除', disabled: false, type: 'DEUIACTION', visabled: true,noprivdisplaymode:2,dataaccaction: '', uiaction: { tag: 'Remove', target: 'MULTIKEY' } },
......@@ -861,7 +861,7 @@ export default class LnternalFuncListBase extends Vue implements ControlInterfac
*/
public async load(opt: any = {}): Promise<any> {
if(!this.fetchAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKUsr4ListView_layout' + (this.$t('app.list.notConfig.fetchAction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKListView' + (this.$t('app.list.notConfig.fetchAction') as string) });
return;
}
const arg: any = {...opt};
......@@ -991,7 +991,7 @@ export default class LnternalFuncListBase extends Vue implements ControlInterfac
*/
public async remove(datas: any[]): Promise<any> {
if(!this.removeAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKUsr4ListView_layout' + (this.$t('app.list.notConfig.removeAction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKListView' + (this.$t('app.list.notConfig.removeAction') as string) });
return;
}
if (datas.length === 0) {
......@@ -1096,7 +1096,7 @@ export default class LnternalFuncListBase extends Vue implements ControlInterfac
try {
if(Object.is(item.rowDataState, 'create')){
if(!this.createAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKUsr4ListView_layout' + (this.$t('app.list.notConfig.createAction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKListView' + (this.$t('app.list.notConfig.createAction') as string) });
}else{
Object.assign(item,{viewparams:this.viewparams});
let response = await this.service.add(this.createAction, JSON.parse(JSON.stringify(this.context)),item, this.showBusyIndicator);
......@@ -1104,7 +1104,7 @@ export default class LnternalFuncListBase extends Vue implements ControlInterfac
}
}else if(Object.is(item.rowDataState, 'update')){
if(!this.updateAction){
this.$Notice.error({ title: (this.$t('app.commonWords.warning') as string), desc: 'IBIZBOOKUsr4ListView_layout' + (this.$t('app.list.notConfig.updateAction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.warning') as string), desc: 'IBIZBOOKListView' + (this.$t('app.list.notConfig.updateAction') as string) });
}else{
Object.assign(item,{viewparams:this.viewparams});
if(item.ibizbook){
......
......@@ -319,7 +319,7 @@ export default class MainBase extends Vue implements ControlInterface {
* @param {*} [$event] 事件源
* @param {*} [xData] 执行行为所需当前部件
* @param {*} [actionContext] 执行行为上下文
* @memberof IBIZOrderPickupGridViewBase
* @memberof IBIZOrderSF1GridViewBase
*/
public Edit(args: any[],contextJO?:any, params?: any, $event?: any, xData?: any,actionContext?:any,srfParentDeName?:string) {
if (args.length === 0) {
......@@ -462,6 +462,20 @@ export default class MainBase extends Vue implements ControlInterface {
return this.selections[0];
}
/**
* 打开新建数据视图
*
* @type {any}
* @memberof MainBase
*/
@Prop() public newdata: any;
/**
* 打开编辑数据视图
*
* @type {any}
* @memberof MainBase
*/
@Prop() public opendata: any;
/**
* 是否嵌入关系界面
......@@ -996,7 +1010,7 @@ export default class MainBase extends Vue implements ControlInterface {
if (!this.fetchAction) {
this.$Notice.error({
title: this.$t("app.commonWords.wrong") as string,
desc: "IBIZOrderPickupGridView" + (this.$t("app.gridpage.notConfig.fetchAction") as string),
desc: "IBIZOrderSF1GridView" + (this.$t("app.gridpage.notConfig.fetchAction") as string),
});
return;
}
......@@ -1125,7 +1139,7 @@ export default class MainBase extends Vue implements ControlInterface {
if (!this.removeAction) {
this.$Notice.error({
title: (this.$t('app.commonWords.wrong') as string),
desc: 'IBIZOrderPickupGridView' + (this.$t('app.gridpage.notConfig.removeAction') as string)
desc: 'IBIZOrderSF1GridView' + (this.$t('app.gridpage.notConfig.removeAction') as string)
});
return;
}
......@@ -1239,7 +1253,7 @@ export default class MainBase extends Vue implements ControlInterface {
*/
public addBatch(arg: any = {}): void {
if(!this.fetchAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderPickupGridView'+(this.$t('app.gridpage.notConfig.fetchAction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderSF1GridView'+(this.$t('app.gridpage.notConfig.fetchAction') as string) });
return;
}
if(!arg){
......@@ -2170,7 +2184,7 @@ export default class MainBase extends Vue implements ControlInterface {
try {
if (Object.is(item.rowDataState, 'create')) {
if (!this.createAction) {
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderPickupGridView'+(this.$t('app.gridpage.notConfig.createAction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderSF1GridView'+(this.$t('app.gridpage.notConfig.createAction') as string) });
} else {
Object.assign(item, { viewparams: this.viewparams });
const tempContext = Util.deepCopy(this.context);
......@@ -2179,7 +2193,7 @@ export default class MainBase extends Vue implements ControlInterface {
}
}else if (Object.is(item.rowDataState, 'update')){
if (!this.updateAction) {
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderPickupGridView'+(this.$t('app.gridpage.notConfig.updateAction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderSF1GridView'+(this.$t('app.gridpage.notConfig.updateAction') as string) });
} else {
Object.assign(item, { viewparams: this.viewparams });
const tempContext = Util.deepCopy(this.context);
......@@ -2255,7 +2269,7 @@ export default class MainBase extends Vue implements ControlInterface {
if(!this.loaddraftAction){
this.$Notice.error({
title: (this.$t('app.commonWords.wrong') as string),
desc: 'IBIZOrderPickupGridView' + (this.$t('app.gridpage.notConfig.loaddraftAction') as string)
desc: 'IBIZOrderSF1GridView' + (this.$t('app.gridpage.notConfig.loaddraftAction') as string)
});
return;
}
......
......@@ -105,6 +105,21 @@ export default class MainModel {
prop: 'n_ibizordername_like',
dataType: 'QUERYPARAM'
},
{
name: 'n_orderstate_eq',
prop: 'n_orderstate_eq',
dataType: 'QUERYPARAM'
},
{
name: 'n_ordertime_gt',
prop: 'n_ordertime_gt',
dataType: 'QUERYPARAM'
},
{
name: 'n_ordertime_lt',
prop: 'n_ordertime_lt',
dataType: 'QUERYPARAM'
},
{
name:'size',
......
......@@ -11,6 +11,16 @@
"path" : "PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZBOOK.json"
},
"getPSDETreeColumns" : [ {
"caption" : "图书名称",
"codeName" : "ibizbookname",
"columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "ibizbookname",
"name" : "ibizbookname",
"width" : 200,
"widthUnit" : "px",
"enableExpand" : false,
"enableSort" : false
}, {
"caption" : "归还日期",
"codeName" : "returntime",
"columnType" : "DEFGRIDCOLUMN",
......@@ -30,16 +40,6 @@
"widthUnit" : "px",
"enableExpand" : false,
"enableSort" : false
}, {
"caption" : "借出日期",
"codeName" : "lendouttime",
"columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "lendouttime",
"name" : "lendouttime",
"width" : 200,
"widthUnit" : "px",
"enableExpand" : false,
"enableSort" : false
}, {
"caption" : "作者",
"codeName" : "author",
......@@ -51,11 +51,11 @@
"enableExpand" : false,
"enableSort" : false
}, {
"caption" : "图书名称",
"codeName" : "ibizbookname",
"caption" : "借出日期",
"codeName" : "lendouttime",
"columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "ibizbookname",
"name" : "ibizbookname",
"dataItemName" : "lendouttime",
"name" : "lendouttime",
"width" : 200,
"widthUnit" : "px",
"enableExpand" : false,
......
......@@ -19,21 +19,21 @@
}
} ],
"getPSDETreeColumns" : [ {
"caption" : "图书名称",
"codeName" : "ibizbookname",
"caption" : "作者",
"codeName" : "author",
"columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "ibizbookname",
"name" : "ibizbookname",
"dataItemName" : "author",
"name" : "author",
"width" : 50,
"widthUnit" : "px",
"enableExpand" : false,
"enableSort" : false
}, {
"caption" : "作者",
"codeName" : "author",
"caption" : "图书名称",
"codeName" : "ibizbookname",
"columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "author",
"name" : "author",
"dataItemName" : "ibizbookname",
"name" : "ibizbookname",
"width" : 50,
"widthUnit" : "px",
"enableExpand" : false,
......
......@@ -34,6 +34,16 @@
"id" : "GANTT"
},
"getPSDETreeColumns" : [ {
"caption" : "图书名称",
"codeName" : "ibizbookname",
"columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "ibizbookname",
"name" : "ibizbookname",
"width" : 200,
"widthUnit" : "px",
"enableExpand" : false,
"enableSort" : false
}, {
"caption" : "归还日期",
"codeName" : "returntime",
"columnType" : "DEFGRIDCOLUMN",
......@@ -53,16 +63,6 @@
"widthUnit" : "px",
"enableExpand" : false,
"enableSort" : false
}, {
"caption" : "借出日期",
"codeName" : "lendouttime",
"columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "lendouttime",
"name" : "lendouttime",
"width" : 200,
"widthUnit" : "px",
"enableExpand" : false,
"enableSort" : false
}, {
"caption" : "作者",
"codeName" : "author",
......@@ -74,11 +74,11 @@
"enableExpand" : false,
"enableSort" : false
}, {
"caption" : "图书名称",
"codeName" : "ibizbookname",
"caption" : "借出日期",
"codeName" : "lendouttime",
"columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "ibizbookname",
"name" : "ibizbookname",
"dataItemName" : "lendouttime",
"name" : "lendouttime",
"width" : 200,
"widthUnit" : "px",
"enableExpand" : false,
......
......@@ -75,21 +75,21 @@
"id" : "TREEGRIDEX"
},
"getPSDETreeColumns" : [ {
"caption" : "图书名称",
"codeName" : "ibizbookname",
"caption" : "作者",
"codeName" : "author",
"columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "ibizbookname",
"name" : "ibizbookname",
"dataItemName" : "author",
"name" : "author",
"width" : 50,
"widthUnit" : "px",
"enableExpand" : false,
"enableSort" : false
}, {
"caption" : "作者",
"codeName" : "author",
"caption" : "图书名称",
"codeName" : "ibizbookname",
"columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "author",
"name" : "author",
"dataItemName" : "ibizbookname",
"name" : "ibizbookname",
"width" : 50,
"widthUnit" : "px",
"enableExpand" : false,
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册