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

chitanda 发布系统代码

上级 e5e00261
......@@ -15,7 +15,6 @@ import CodeListService from "@service/app/codelist-service";
* @extends {GridViewBase}
*/
export class AccountByParentKeyBase extends GridViewBase {
/**
* 视图对应应用实体名称
*
......@@ -25,6 +24,24 @@ export class AccountByParentKeyBase extends GridViewBase {
*/
protected appDeName: string = 'account';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof AccountByParentKeyBase
*/
protected appDeKey: string = 'accountid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof AccountByParentKeyBase
*/
protected appDeMajor: string = 'accountname';
/**
* 实体服务对象
*
......
......@@ -11,7 +11,6 @@ import OptionViewEngine from '@engine/view/option-view-engine';
* @extends {OptionViewBase}
*/
export class AccountEdit_AccountInfoBase extends OptionViewBase {
/**
* 视图对应应用实体名称
*
......@@ -21,6 +20,24 @@ export class AccountEdit_AccountInfoBase extends OptionViewBase {
*/
protected appDeName: string = 'account';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof AccountEdit_AccountInfoBase
*/
protected appDeKey: string = 'accountid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof AccountEdit_AccountInfoBase
*/
protected appDeMajor: string = 'accountname';
/**
* 实体服务对象
*
......
......@@ -11,7 +11,6 @@ import OptionViewEngine from '@engine/view/option-view-engine';
* @extends {OptionViewBase}
*/
export class AccountEdit_AddressBase extends OptionViewBase {
/**
* 视图对应应用实体名称
*
......@@ -21,6 +20,24 @@ export class AccountEdit_AddressBase extends OptionViewBase {
*/
protected appDeName: string = 'account';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof AccountEdit_AddressBase
*/
protected appDeKey: string = 'accountid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof AccountEdit_AddressBase
*/
protected appDeMajor: string = 'accountname';
/**
* 实体服务对象
*
......
......@@ -11,7 +11,6 @@ import OptionViewEngine from '@engine/view/option-view-engine';
* @extends {OptionViewBase}
*/
export class AccountEdit_IntroductionBase extends OptionViewBase {
/**
* 视图对应应用实体名称
*
......@@ -21,6 +20,24 @@ export class AccountEdit_IntroductionBase extends OptionViewBase {
*/
protected appDeName: string = 'account';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof AccountEdit_IntroductionBase
*/
protected appDeKey: string = 'accountid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof AccountEdit_IntroductionBase
*/
protected appDeMajor: string = 'accountname';
/**
* 实体服务对象
*
......
......@@ -11,7 +11,6 @@ import EditViewEngine from '@engine/view/edit-view-engine';
* @extends {EditViewBase}
*/
export class AccountEditViewBase extends EditViewBase {
/**
* 视图对应应用实体名称
*
......@@ -21,6 +20,24 @@ export class AccountEditViewBase extends EditViewBase {
*/
protected appDeName: string = 'account';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof AccountEditViewBase
*/
protected appDeKey: string = 'accountid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof AccountEditViewBase
*/
protected appDeMajor: string = 'accountname';
/**
* 实体服务对象
*
......
......@@ -11,7 +11,6 @@ import EditViewEngine from '@engine/view/edit-view-engine';
* @extends {EditViewBase}
*/
export class AccountInfo_AllBase extends EditViewBase {
/**
* 视图对应应用实体名称
*
......@@ -21,6 +20,24 @@ export class AccountInfo_AllBase extends EditViewBase {
*/
protected appDeName: string = 'account';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof AccountInfo_AllBase
*/
protected appDeKey: string = 'accountid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof AccountInfo_AllBase
*/
protected appDeMajor: string = 'accountname';
/**
* 实体服务对象
*
......
......@@ -13,7 +13,6 @@ import AccountUIService from '@/uiservice/account/account-ui-service';
* @extends {TabExpViewBase}
*/
export class AccountInfoBase extends TabExpViewBase {
/**
* 视图对应应用实体名称
*
......@@ -23,6 +22,24 @@ export class AccountInfoBase extends TabExpViewBase {
*/
protected appDeName: string = 'account';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof AccountInfoBase
*/
protected appDeKey: string = 'accountid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof AccountInfoBase
*/
protected appDeMajor: string = 'accountname';
/**
* 实体服务对象
*
......@@ -478,8 +495,8 @@ export class AccountInfoBase extends TabExpViewBase {
* @memberof AccountInfoBase
*/
protected async loadModel(): Promise<any> {
if(this.context.account){
this.appEntityService.getDataInfo(JSON.parse(JSON.stringify(this.context)),{},false).then((response:any) =>{
if(this.context[this.appDeName]){
this.appEntityService.getDataInfo(this.context),{},false).then((response:any) =>{
if (!response || response.status !== 200) {
return;
}
......
......@@ -11,7 +11,6 @@ import PickupGridViewEngine from '@engine/view/pickup-grid-view-engine';
* @extends {PickupGridViewBase}
*/
export class AccountInnerPickupGridViewBase extends PickupGridViewBase {
/**
* 视图对应应用实体名称
*
......@@ -21,6 +20,24 @@ export class AccountInnerPickupGridViewBase extends PickupGridViewBase {
*/
protected appDeName: string = 'account';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof AccountInnerPickupGridViewBase
*/
protected appDeKey: string = 'accountid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof AccountInnerPickupGridViewBase
*/
protected appDeMajor: string = 'accountname';
/**
* 实体服务对象
*
......
......@@ -11,7 +11,6 @@ import PickupViewEngine from '@engine/view/pickup-view-engine';
* @extends {PickupViewBase}
*/
export class AccountInnerPickupViewBase extends PickupViewBase {
/**
* 视图对应应用实体名称
*
......@@ -21,6 +20,24 @@ export class AccountInnerPickupViewBase extends PickupViewBase {
*/
protected appDeName: string = 'account';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof AccountInnerPickupViewBase
*/
protected appDeKey: string = 'accountid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof AccountInnerPickupViewBase
*/
protected appDeMajor: string = 'accountname';
/**
* 实体服务对象
*
......
......@@ -11,7 +11,6 @@ import PickupGridViewEngine from '@engine/view/pickup-grid-view-engine';
* @extends {PickupGridViewBase}
*/
export class AccountPickupGridViewBase extends PickupGridViewBase {
/**
* 视图对应应用实体名称
*
......@@ -21,6 +20,24 @@ export class AccountPickupGridViewBase extends PickupGridViewBase {
*/
protected appDeName: string = 'account';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof AccountPickupGridViewBase
*/
protected appDeKey: string = 'accountid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof AccountPickupGridViewBase
*/
protected appDeMajor: string = 'accountname';
/**
* 实体服务对象
*
......
......@@ -11,7 +11,6 @@ import PickupViewEngine from '@engine/view/pickup-view-engine';
* @extends {PickupViewBase}
*/
export class AccountPickupViewBase extends PickupViewBase {
/**
* 视图对应应用实体名称
*
......@@ -21,6 +20,24 @@ export class AccountPickupViewBase extends PickupViewBase {
*/
protected appDeName: string = 'account';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof AccountPickupViewBase
*/
protected appDeKey: string = 'accountid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof AccountPickupViewBase
*/
protected appDeMajor: string = 'accountname';
/**
* 实体服务对象
*
......
......@@ -11,7 +11,6 @@ import OptionViewEngine from '@engine/view/option-view-engine';
* @extends {OptionViewBase}
*/
export class AccountQuickCreateBase extends OptionViewBase {
/**
* 视图对应应用实体名称
*
......@@ -21,6 +20,24 @@ export class AccountQuickCreateBase extends OptionViewBase {
*/
protected appDeName: string = 'account';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof AccountQuickCreateBase
*/
protected appDeKey: string = 'accountid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof AccountQuickCreateBase
*/
protected appDeMajor: string = 'accountname';
/**
* 实体服务对象
*
......
......@@ -11,7 +11,6 @@ import TabExpViewEngine from '@engine/view/tab-exp-view-engine';
* @extends {TabExpViewBase}
*/
export class AccountStatusTabViewBase extends TabExpViewBase {
/**
* 视图对应应用实体名称
*
......@@ -21,6 +20,24 @@ export class AccountStatusTabViewBase extends TabExpViewBase {
*/
protected appDeName: string = 'account';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof AccountStatusTabViewBase
*/
protected appDeKey: string = 'accountid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof AccountStatusTabViewBase
*/
protected appDeMajor: string = 'accountname';
/**
* 实体服务对象
*
......@@ -108,8 +125,8 @@ export class AccountStatusTabViewBase extends TabExpViewBase {
* @memberof AccountStatusTabViewBase
*/
protected async loadModel(): Promise<any> {
if(this.context.account){
this.appEntityService.getDataInfo(JSON.parse(JSON.stringify(this.context)),{},false).then((response:any) =>{
if(this.context[this.appDeName]){
this.appEntityService.getDataInfo(this.context),{},false).then((response:any) =>{
if (!response || response.status !== 200) {
return;
}
......
......@@ -15,7 +15,6 @@ import CodeListService from "@service/app/codelist-service";
* @extends {GridViewBase}
*/
export class AccountStopGridViewBase extends GridViewBase {
/**
* 视图对应应用实体名称
*
......@@ -25,6 +24,24 @@ export class AccountStopGridViewBase extends GridViewBase {
*/
protected appDeName: string = 'account';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof AccountStopGridViewBase
*/
protected appDeKey: string = 'accountid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof AccountStopGridViewBase
*/
protected appDeMajor: string = 'accountname';
/**
* 实体服务对象
*
......
......@@ -11,7 +11,6 @@ import PortalViewEngine from '@engine/view/portal-view-engine';
* @extends {DashboardViewBase}
*/
export class AccountSummaryBase extends DashboardViewBase {
/**
* 视图对应应用实体名称
*
......@@ -21,6 +20,24 @@ export class AccountSummaryBase extends DashboardViewBase {
*/
protected appDeName: string = 'account';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof AccountSummaryBase
*/
protected appDeKey: string = 'accountid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof AccountSummaryBase
*/
protected appDeMajor: string = 'accountname';
/**
* 实体服务对象
*
......
......@@ -11,7 +11,6 @@ import AccountUIService from '@/uiservice/account/account-ui-service';
* @extends {TreeGridExViewBase}
*/
export class AccountTreeGridExViewBase extends TreeGridExViewBase {
/**
* 视图对应应用实体名称
*
......@@ -21,6 +20,24 @@ export class AccountTreeGridExViewBase extends TreeGridExViewBase {
*/
protected appDeName: string = 'account';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof AccountTreeGridExViewBase
*/
protected appDeKey: string = 'accountid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof AccountTreeGridExViewBase
*/
protected appDeMajor: string = 'accountname';
/**
* 实体服务对象
*
......
......@@ -15,7 +15,6 @@ import CodeListService from "@service/app/codelist-service";
* @extends {GridViewBase}
*/
export class AccountUsableGridViewBase extends GridViewBase {
/**
* 视图对应应用实体名称
*
......@@ -25,6 +24,24 @@ export class AccountUsableGridViewBase extends GridViewBase {
*/
protected appDeName: string = 'account';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof AccountUsableGridViewBase
*/
protected appDeKey: string = 'accountid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof AccountUsableGridViewBase
*/
protected appDeMajor: string = 'accountname';
/**
* 实体服务对象
*
......
......@@ -18,7 +18,6 @@ import CodeListService from "@service/app/codelist-service";
* @extends {GridViewBase}
*/
export class ActivityPointerByParentKeyBase extends GridViewBase {
/**
* 视图对应应用实体名称
*
......@@ -28,6 +27,24 @@ export class ActivityPointerByParentKeyBase extends GridViewBase {
*/
protected appDeName: string = 'activitypointer';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof ActivityPointerByParentKeyBase
*/
protected appDeKey: string = 'activityid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof ActivityPointerByParentKeyBase
*/
protected appDeMajor: string = 'subject';
/**
* 实体服务对象
*
......
......@@ -11,7 +11,6 @@ import EditViewEngine from '@engine/view/edit-view-engine';
* @extends {EditViewBase}
*/
export class ActivityPointerEditViewBase extends EditViewBase {
/**
* 视图对应应用实体名称
*
......@@ -21,6 +20,24 @@ export class ActivityPointerEditViewBase extends EditViewBase {
*/
protected appDeName: string = 'activitypointer';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof ActivityPointerEditViewBase
*/
protected appDeKey: string = 'activityid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof ActivityPointerEditViewBase
*/
protected appDeMajor: string = 'subject';
/**
* 实体服务对象
*
......
......@@ -18,7 +18,6 @@ import CodeListService from "@service/app/codelist-service";
* @extends {GridViewBase}
*/
export class ActivityPointerGridViewBase extends GridViewBase {
/**
* 视图对应应用实体名称
*
......@@ -28,6 +27,24 @@ export class ActivityPointerGridViewBase extends GridViewBase {
*/
protected appDeName: string = 'activitypointer';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof ActivityPointerGridViewBase
*/
protected appDeKey: string = 'activityid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof ActivityPointerGridViewBase
*/
protected appDeMajor: string = 'subject';
/**
* 实体服务对象
*
......
......@@ -12,7 +12,6 @@ import UIService from '@/uiservice/ui-service';
* @extends {WizardViewBase}
*/
export class ActivityPointerRedirectViewBase extends WizardViewBase {
/**
* 视图对应应用实体名称
*
......@@ -22,6 +21,24 @@ export class ActivityPointerRedirectViewBase extends WizardViewBase {
*/
protected appDeName: string = 'activitypointer';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof ActivityPointerRedirectViewBase
*/
protected appDeKey: string = 'activityid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof ActivityPointerRedirectViewBase
*/
protected appDeMajor: string = 'subject';
/**
* 实体服务对象
*
......
......@@ -11,7 +11,6 @@ import EditViewEngine from '@engine/view/edit-view-engine';
* @extends {EditViewBase}
*/
export class AppointmentEditViewBase extends EditViewBase {
/**
* 视图对应应用实体名称
*
......@@ -21,6 +20,24 @@ export class AppointmentEditViewBase extends EditViewBase {
*/
protected appDeName: string = 'appointment';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof AppointmentEditViewBase
*/
protected appDeKey: string = 'activityid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof AppointmentEditViewBase
*/
protected appDeMajor: string = 'subject';
/**
* 实体服务对象
*
......
......@@ -11,7 +11,6 @@ import OptionViewEngine from '@engine/view/option-view-engine';
* @extends {OptionViewBase}
*/
export class AppointmentQuickCreateBase extends OptionViewBase {
/**
* 视图对应应用实体名称
*
......@@ -21,6 +20,24 @@ export class AppointmentQuickCreateBase extends OptionViewBase {
*/
protected appDeName: string = 'appointment';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof AppointmentQuickCreateBase
*/
protected appDeKey: string = 'activityid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof AppointmentQuickCreateBase
*/
protected appDeMajor: string = 'subject';
/**
* 实体服务对象
*
......
......@@ -14,7 +14,6 @@ import CodeListService from "@service/app/codelist-service";
* @extends {GridViewBase}
*/
export class ContactByAccountBase extends GridViewBase {
/**
* 视图对应应用实体名称
*
......@@ -24,6 +23,24 @@ export class ContactByAccountBase extends GridViewBase {
*/
protected appDeName: string = 'contact';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof ContactByAccountBase
*/
protected appDeKey: string = 'contactid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof ContactByAccountBase
*/
protected appDeMajor: string = 'fullname';
/**
* 实体服务对象
*
......
......@@ -11,7 +11,6 @@ import OptionViewEngine from '@engine/view/option-view-engine';
* @extends {OptionViewBase}
*/
export class ContactEditAddressBase extends OptionViewBase {
/**
* 视图对应应用实体名称
*
......@@ -21,6 +20,24 @@ export class ContactEditAddressBase extends OptionViewBase {
*/
protected appDeName: string = 'contact';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof ContactEditAddressBase
*/
protected appDeKey: string = 'contactid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof ContactEditAddressBase
*/
protected appDeMajor: string = 'fullname';
/**
* 实体服务对象
*
......
......@@ -11,7 +11,6 @@ import OptionViewEngine from '@engine/view/option-view-engine';
* @extends {OptionViewBase}
*/
export class ContactEditBookBase extends OptionViewBase {
/**
* 视图对应应用实体名称
*
......@@ -21,6 +20,24 @@ export class ContactEditBookBase extends OptionViewBase {
*/
protected appDeName: string = 'contact';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof ContactEditBookBase
*/
protected appDeKey: string = 'contactid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof ContactEditBookBase
*/
protected appDeMajor: string = 'fullname';
/**
* 实体服务对象
*
......
......@@ -11,7 +11,6 @@ import OptionViewEngine from '@engine/view/option-view-engine';
* @extends {OptionViewBase}
*/
export class ContactEditMarketBase extends OptionViewBase {
/**
* 视图对应应用实体名称
*
......@@ -21,6 +20,24 @@ export class ContactEditMarketBase extends OptionViewBase {
*/
protected appDeName: string = 'contact';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof ContactEditMarketBase
*/
protected appDeKey: string = 'contactid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof ContactEditMarketBase
*/
protected appDeMajor: string = 'fullname';
/**
* 实体服务对象
*
......
......@@ -11,7 +11,6 @@ import OptionViewEngine from '@engine/view/option-view-engine';
* @extends {OptionViewBase}
*/
export class ContactEditPersonBase extends OptionViewBase {
/**
* 视图对应应用实体名称
*
......@@ -21,6 +20,24 @@ export class ContactEditPersonBase extends OptionViewBase {
*/
protected appDeName: string = 'contact';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof ContactEditPersonBase
*/
protected appDeKey: string = 'contactid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof ContactEditPersonBase
*/
protected appDeMajor: string = 'fullname';
/**
* 实体服务对象
*
......
......@@ -15,7 +15,6 @@ import CodeListService from "@service/app/codelist-service";
* @extends {GridViewBase}
*/
export class ContactGridViewBase extends GridViewBase {
/**
* 视图对应应用实体名称
*
......@@ -25,6 +24,24 @@ export class ContactGridViewBase extends GridViewBase {
*/
protected appDeName: string = 'contact';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof ContactGridViewBase
*/
protected appDeKey: string = 'contactid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof ContactGridViewBase
*/
protected appDeMajor: string = 'fullname';
/**
* 实体服务对象
*
......
......@@ -11,7 +11,6 @@ import EditViewEngine from '@engine/view/edit-view-engine';
* @extends {EditViewBase}
*/
export class ContactInfo_AbstractBase extends EditViewBase {
/**
* 视图对应应用实体名称
*
......@@ -21,6 +20,24 @@ export class ContactInfo_AbstractBase extends EditViewBase {
*/
protected appDeName: string = 'contact';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof ContactInfo_AbstractBase
*/
protected appDeKey: string = 'contactid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof ContactInfo_AbstractBase
*/
protected appDeMajor: string = 'fullname';
/**
* 实体服务对象
*
......
......@@ -12,7 +12,6 @@ import ContactUIService from '@/uiservice/contact/contact-ui-service';
* @extends {TabExpViewBase}
*/
export class ContactInfoBase extends TabExpViewBase {
/**
* 视图对应应用实体名称
*
......@@ -22,6 +21,24 @@ export class ContactInfoBase extends TabExpViewBase {
*/
protected appDeName: string = 'contact';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof ContactInfoBase
*/
protected appDeKey: string = 'contactid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof ContactInfoBase
*/
protected appDeMajor: string = 'fullname';
/**
* 实体服务对象
*
......@@ -459,8 +476,8 @@ export class ContactInfoBase extends TabExpViewBase {
* @memberof ContactInfoBase
*/
protected async loadModel(): Promise<any> {
if(this.context.contact){
this.appEntityService.getDataInfo(JSON.parse(JSON.stringify(this.context)),{},false).then((response:any) =>{
if(this.context[this.appDeName]){
this.appEntityService.getDataInfo(this.context),{},false).then((response:any) =>{
if (!response || response.status !== 200) {
return;
}
......
......@@ -11,7 +11,6 @@ import PickupGridViewEngine from '@engine/view/pickup-grid-view-engine';
* @extends {PickupGridViewBase}
*/
export class ContactPickupGridViewBase extends PickupGridViewBase {
/**
* 视图对应应用实体名称
*
......@@ -21,6 +20,24 @@ export class ContactPickupGridViewBase extends PickupGridViewBase {
*/
protected appDeName: string = 'contact';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof ContactPickupGridViewBase
*/
protected appDeKey: string = 'contactid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof ContactPickupGridViewBase
*/
protected appDeMajor: string = 'fullname';
/**
* 实体服务对象
*
......
......@@ -11,7 +11,6 @@ import PickupViewEngine from '@engine/view/pickup-view-engine';
* @extends {PickupViewBase}
*/
export class ContactPickupViewBase extends PickupViewBase {
/**
* 视图对应应用实体名称
*
......@@ -21,6 +20,24 @@ export class ContactPickupViewBase extends PickupViewBase {
*/
protected appDeName: string = 'contact';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof ContactPickupViewBase
*/
protected appDeKey: string = 'contactid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof ContactPickupViewBase
*/
protected appDeMajor: string = 'fullname';
/**
* 实体服务对象
*
......
......@@ -11,7 +11,6 @@ import OptionViewEngine from '@engine/view/option-view-engine';
* @extends {OptionViewBase}
*/
export class ContactQuickCreateBase extends OptionViewBase {
/**
* 视图对应应用实体名称
*
......@@ -21,6 +20,24 @@ export class ContactQuickCreateBase extends OptionViewBase {
*/
protected appDeName: string = 'contact';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof ContactQuickCreateBase
*/
protected appDeKey: string = 'contactid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof ContactQuickCreateBase
*/
protected appDeMajor: string = 'fullname';
/**
* 实体服务对象
*
......
......@@ -15,7 +15,6 @@ import CodeListService from "@service/app/codelist-service";
* @extends {GridViewBase}
*/
export class ContactStopGridViewBase extends GridViewBase {
/**
* 视图对应应用实体名称
*
......@@ -25,6 +24,24 @@ export class ContactStopGridViewBase extends GridViewBase {
*/
protected appDeName: string = 'contact';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof ContactStopGridViewBase
*/
protected appDeKey: string = 'contactid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof ContactStopGridViewBase
*/
protected appDeMajor: string = 'fullname';
/**
* 实体服务对象
*
......
......@@ -11,7 +11,6 @@ import PortalViewEngine from '@engine/view/portal-view-engine';
* @extends {DashboardViewBase}
*/
export class ContactSummaryViewBase extends DashboardViewBase {
/**
* 视图对应应用实体名称
*
......@@ -21,6 +20,24 @@ export class ContactSummaryViewBase extends DashboardViewBase {
*/
protected appDeName: string = 'contact';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof ContactSummaryViewBase
*/
protected appDeKey: string = 'contactid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof ContactSummaryViewBase
*/
protected appDeMajor: string = 'fullname';
/**
* 实体服务对象
*
......
......@@ -11,7 +11,6 @@ import TabExpViewEngine from '@engine/view/tab-exp-view-engine';
* @extends {TabExpViewBase}
*/
export class ContactTabExpViewBase extends TabExpViewBase {
/**
* 视图对应应用实体名称
*
......@@ -21,6 +20,24 @@ export class ContactTabExpViewBase extends TabExpViewBase {
*/
protected appDeName: string = 'contact';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof ContactTabExpViewBase
*/
protected appDeKey: string = 'contactid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof ContactTabExpViewBase
*/
protected appDeMajor: string = 'fullname';
/**
* 实体服务对象
*
......@@ -108,8 +125,8 @@ export class ContactTabExpViewBase extends TabExpViewBase {
* @memberof ContactTabExpViewBase
*/
protected async loadModel(): Promise<any> {
if(this.context.contact){
this.appEntityService.getDataInfo(JSON.parse(JSON.stringify(this.context)),{},false).then((response:any) =>{
if(this.context[this.appDeName]){
this.appEntityService.getDataInfo(this.context),{},false).then((response:any) =>{
if (!response || response.status !== 200) {
return;
}
......
......@@ -15,7 +15,6 @@ import CodeListService from "@service/app/codelist-service";
* @extends {GridViewBase}
*/
export class ContactUsableGridViewBase extends GridViewBase {
/**
* 视图对应应用实体名称
*
......@@ -25,6 +24,24 @@ export class ContactUsableGridViewBase extends GridViewBase {
*/
protected appDeName: string = 'contact';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof ContactUsableGridViewBase
*/
protected appDeKey: string = 'contactid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof ContactUsableGridViewBase
*/
protected appDeMajor: string = 'fullname';
/**
* 实体服务对象
*
......
......@@ -11,7 +11,6 @@ import EditViewEngine from '@engine/view/edit-view-engine';
* @extends {EditViewBase}
*/
export class EmailEditViewBase extends EditViewBase {
/**
* 视图对应应用实体名称
*
......@@ -21,6 +20,24 @@ export class EmailEditViewBase extends EditViewBase {
*/
protected appDeName: string = 'email';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof EmailEditViewBase
*/
protected appDeKey: string = 'activityid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof EmailEditViewBase
*/
protected appDeMajor: string = 'subject';
/**
* 实体服务对象
*
......
......@@ -11,7 +11,6 @@ import EditViewEngine from '@engine/view/edit-view-engine';
* @extends {EditViewBase}
*/
export class FaxEditViewBase extends EditViewBase {
/**
* 视图对应应用实体名称
*
......@@ -21,6 +20,24 @@ export class FaxEditViewBase extends EditViewBase {
*/
protected appDeName: string = 'fax';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof FaxEditViewBase
*/
protected appDeKey: string = 'activityid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof FaxEditViewBase
*/
protected appDeMajor: string = 'subject';
/**
* 实体服务对象
*
......
......@@ -15,7 +15,6 @@ import CodeListService from "@service/app/codelist-service";
* @extends {GridViewBase}
*/
export class KnowledgeArticleGridViewBase extends GridViewBase {
/**
* 视图对应应用实体名称
*
......@@ -25,6 +24,24 @@ export class KnowledgeArticleGridViewBase extends GridViewBase {
*/
protected appDeName: string = 'knowledgearticle';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof KnowledgeArticleGridViewBase
*/
protected appDeKey: string = 'knowledgearticleid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof KnowledgeArticleGridViewBase
*/
protected appDeMajor: string = 'title';
/**
* 实体服务对象
*
......
......@@ -11,7 +11,6 @@ import EditViewEngine from '@engine/view/edit-view-engine';
* @extends {EditViewBase}
*/
export class KnowledgeArticleInfo_KlArtViewBase extends EditViewBase {
/**
* 视图对应应用实体名称
*
......@@ -21,6 +20,24 @@ export class KnowledgeArticleInfo_KlArtViewBase extends EditViewBase {
*/
protected appDeName: string = 'knowledgearticle';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof KnowledgeArticleInfo_KlArtViewBase
*/
protected appDeKey: string = 'knowledgearticleid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof KnowledgeArticleInfo_KlArtViewBase
*/
protected appDeMajor: string = 'title';
/**
* 实体服务对象
*
......
......@@ -11,7 +11,6 @@ import TabExpViewEngine from '@engine/view/tab-exp-view-engine';
* @extends {TabExpViewBase}
*/
export class KnowledgeArticleInfoViewBase extends TabExpViewBase {
/**
* 视图对应应用实体名称
*
......@@ -21,6 +20,24 @@ export class KnowledgeArticleInfoViewBase extends TabExpViewBase {
*/
protected appDeName: string = 'knowledgearticle';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof KnowledgeArticleInfoViewBase
*/
protected appDeKey: string = 'knowledgearticleid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof KnowledgeArticleInfoViewBase
*/
protected appDeMajor: string = 'title';
/**
* 实体服务对象
*
......@@ -108,8 +125,8 @@ export class KnowledgeArticleInfoViewBase extends TabExpViewBase {
* @memberof KnowledgeArticleInfoViewBase
*/
protected async loadModel(): Promise<any> {
if(this.context.knowledgearticle){
this.appEntityService.getDataInfo(JSON.parse(JSON.stringify(this.context)),{},false).then((response:any) =>{
if(this.context[this.appDeName]){
this.appEntityService.getDataInfo(this.context),{},false).then((response:any) =>{
if (!response || response.status !== 200) {
return;
}
......
......@@ -11,7 +11,6 @@ import OptionViewEngine from '@engine/view/option-view-engine';
* @extends {OptionViewBase}
*/
export class KnowledgeArticleQuickCreateViewBase extends OptionViewBase {
/**
* 视图对应应用实体名称
*
......@@ -21,6 +20,24 @@ export class KnowledgeArticleQuickCreateViewBase extends OptionViewBase {
*/
protected appDeName: string = 'knowledgearticle';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof KnowledgeArticleQuickCreateViewBase
*/
protected appDeKey: string = 'knowledgearticleid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof KnowledgeArticleQuickCreateViewBase
*/
protected appDeMajor: string = 'title';
/**
* 实体服务对象
*
......
......@@ -11,7 +11,6 @@ import PortalViewEngine from '@engine/view/portal-view-engine';
* @extends {DashboardViewBase}
*/
export class KnowledgeArticleSummaryViewBase extends DashboardViewBase {
/**
* 视图对应应用实体名称
*
......@@ -21,6 +20,24 @@ export class KnowledgeArticleSummaryViewBase extends DashboardViewBase {
*/
protected appDeName: string = 'knowledgearticle';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof KnowledgeArticleSummaryViewBase
*/
protected appDeKey: string = 'knowledgearticleid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof KnowledgeArticleSummaryViewBase
*/
protected appDeMajor: string = 'title';
/**
* 实体服务对象
*
......
......@@ -11,7 +11,6 @@ import EditViewEngine from '@engine/view/edit-view-engine';
* @extends {EditViewBase}
*/
export class LetterEditViewBase extends EditViewBase {
/**
* 视图对应应用实体名称
*
......@@ -21,6 +20,24 @@ export class LetterEditViewBase extends EditViewBase {
*/
protected appDeName: string = 'letter';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof LetterEditViewBase
*/
protected appDeKey: string = 'activityid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof LetterEditViewBase
*/
protected appDeMajor: string = 'subject';
/**
* 实体服务对象
*
......
......@@ -11,7 +11,6 @@ import EditViewEngine from '@engine/view/edit-view-engine';
* @extends {EditViewBase}
*/
export class MetricEditViewBase extends EditViewBase {
/**
* 视图对应应用实体名称
*
......@@ -21,6 +20,24 @@ export class MetricEditViewBase extends EditViewBase {
*/
protected appDeName: string = 'metric';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof MetricEditViewBase
*/
protected appDeKey: string = 'metricid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof MetricEditViewBase
*/
protected appDeMajor: string = 'metricname';
/**
* 实体服务对象
*
......
......@@ -14,7 +14,6 @@ import CodeListService from "@service/app/codelist-service";
* @extends {GridViewBase}
*/
export class MetricGridViewBase extends GridViewBase {
/**
* 视图对应应用实体名称
*
......@@ -24,6 +23,24 @@ export class MetricGridViewBase extends GridViewBase {
*/
protected appDeName: string = 'metric';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof MetricGridViewBase
*/
protected appDeKey: string = 'metricid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof MetricGridViewBase
*/
protected appDeMajor: string = 'metricname';
/**
* 实体服务对象
*
......
......@@ -11,7 +11,6 @@ import PickupGridViewEngine from '@engine/view/pickup-grid-view-engine';
* @extends {PickupGridViewBase}
*/
export class MetricPickupGridViewBase extends PickupGridViewBase {
/**
* 视图对应应用实体名称
*
......@@ -21,6 +20,24 @@ export class MetricPickupGridViewBase extends PickupGridViewBase {
*/
protected appDeName: string = 'metric';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof MetricPickupGridViewBase
*/
protected appDeKey: string = 'metricid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof MetricPickupGridViewBase
*/
protected appDeMajor: string = 'metricname';
/**
* 实体服务对象
*
......
......@@ -11,7 +11,6 @@ import PickupViewEngine from '@engine/view/pickup-view-engine';
* @extends {PickupViewBase}
*/
export class MetricPickupViewBase extends PickupViewBase {
/**
* 视图对应应用实体名称
*
......@@ -21,6 +20,24 @@ export class MetricPickupViewBase extends PickupViewBase {
*/
protected appDeName: string = 'metric';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof MetricPickupViewBase
*/
protected appDeKey: string = 'metricid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof MetricPickupViewBase
*/
protected appDeMajor: string = 'metricname';
/**
* 实体服务对象
*
......
......@@ -11,7 +11,6 @@ import EditViewEngine from '@engine/view/edit-view-engine';
* @extends {EditViewBase}
*/
export class PhoneCallEditViewBase extends EditViewBase {
/**
* 视图对应应用实体名称
*
......@@ -21,6 +20,24 @@ export class PhoneCallEditViewBase extends EditViewBase {
*/
protected appDeName: string = 'phonecall';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof PhoneCallEditViewBase
*/
protected appDeKey: string = 'activityid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof PhoneCallEditViewBase
*/
protected appDeMajor: string = 'subject';
/**
* 实体服务对象
*
......
......@@ -11,7 +11,6 @@ import PickupGridViewEngine from '@engine/view/pickup-grid-view-engine';
* @extends {PickupGridViewBase}
*/
export class SubjectPickupGridViewBase extends PickupGridViewBase {
/**
* 视图对应应用实体名称
*
......@@ -21,6 +20,24 @@ export class SubjectPickupGridViewBase extends PickupGridViewBase {
*/
protected appDeName: string = 'subject';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof SubjectPickupGridViewBase
*/
protected appDeKey: string = 'subjectid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof SubjectPickupGridViewBase
*/
protected appDeMajor: string = 'title';
/**
* 实体服务对象
*
......
......@@ -11,7 +11,6 @@ import PickupViewEngine from '@engine/view/pickup-view-engine';
* @extends {PickupViewBase}
*/
export class SubjectPickupViewBase extends PickupViewBase {
/**
* 视图对应应用实体名称
*
......@@ -21,6 +20,24 @@ export class SubjectPickupViewBase extends PickupViewBase {
*/
protected appDeName: string = 'subject';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof SubjectPickupViewBase
*/
protected appDeKey: string = 'subjectid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof SubjectPickupViewBase
*/
protected appDeMajor: string = 'title';
/**
* 实体服务对象
*
......
......@@ -11,7 +11,6 @@ import EditViewEngine from '@engine/view/edit-view-engine';
* @extends {EditViewBase}
*/
export class TaskEditViewBase extends EditViewBase {
/**
* 视图对应应用实体名称
*
......@@ -21,6 +20,24 @@ export class TaskEditViewBase extends EditViewBase {
*/
protected appDeName: string = 'task';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof TaskEditViewBase
*/
protected appDeKey: string = 'activityid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof TaskEditViewBase
*/
protected appDeMajor: string = 'subject';
/**
* 实体服务对象
*
......
......@@ -11,7 +11,6 @@ import OptionViewEngine from '@engine/view/option-view-engine';
* @extends {OptionViewBase}
*/
export class TaskQuickCreateBase extends OptionViewBase {
/**
* 视图对应应用实体名称
*
......@@ -21,6 +20,24 @@ export class TaskQuickCreateBase extends OptionViewBase {
*/
protected appDeName: string = 'task';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof TaskQuickCreateBase
*/
protected appDeKey: string = 'activityid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof TaskQuickCreateBase
*/
protected appDeMajor: string = 'subject';
/**
* 实体服务对象
*
......
......@@ -11,7 +11,6 @@ import PickupGridViewEngine from '@engine/view/pickup-grid-view-engine';
* @extends {PickupGridViewBase}
*/
export class TransactionCurrencyPickupGridViewBase extends PickupGridViewBase {
/**
* 视图对应应用实体名称
*
......@@ -21,6 +20,24 @@ export class TransactionCurrencyPickupGridViewBase extends PickupGridViewBase {
*/
protected appDeName: string = 'transactioncurrency';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof TransactionCurrencyPickupGridViewBase
*/
protected appDeKey: string = 'transactioncurrencyid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof TransactionCurrencyPickupGridViewBase
*/
protected appDeMajor: string = 'currencyname';
/**
* 实体服务对象
*
......
......@@ -11,7 +11,6 @@ import PickupViewEngine from '@engine/view/pickup-view-engine';
* @extends {PickupViewBase}
*/
export class TransactionCurrencyPickupViewBase extends PickupViewBase {
/**
* 视图对应应用实体名称
*
......@@ -21,6 +20,24 @@ export class TransactionCurrencyPickupViewBase extends PickupViewBase {
*/
protected appDeName: string = 'transactioncurrency';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof TransactionCurrencyPickupViewBase
*/
protected appDeKey: string = 'transactioncurrencyid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof TransactionCurrencyPickupViewBase
*/
protected appDeMajor: string = 'currencyname';
/**
* 实体服务对象
*
......
......@@ -11,7 +11,6 @@ import PickupGridViewEngine from '@engine/view/pickup-grid-view-engine';
* @extends {PickupGridViewBase}
*/
export class UomPickupGridViewBase extends PickupGridViewBase {
/**
* 视图对应应用实体名称
*
......@@ -21,6 +20,24 @@ export class UomPickupGridViewBase extends PickupGridViewBase {
*/
protected appDeName: string = 'uom';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof UomPickupGridViewBase
*/
protected appDeKey: string = 'uomid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof UomPickupGridViewBase
*/
protected appDeMajor: string = 'uomname';
/**
* 实体服务对象
*
......
......@@ -11,7 +11,6 @@ import PickupViewEngine from '@engine/view/pickup-view-engine';
* @extends {PickupViewBase}
*/
export class UomPickupViewBase extends PickupViewBase {
/**
* 视图对应应用实体名称
*
......@@ -21,6 +20,24 @@ export class UomPickupViewBase extends PickupViewBase {
*/
protected appDeName: string = 'uom';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof UomPickupViewBase
*/
protected appDeKey: string = 'uomid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof UomPickupViewBase
*/
protected appDeMajor: string = 'uomname';
/**
* 实体服务对象
*
......
......@@ -15,7 +15,6 @@ import CodeListService from "@service/app/codelist-service";
* @extends {GridViewBase}
*/
export class InvoiceByParentKeyBase extends GridViewBase {
/**
* 视图对应应用实体名称
*
......@@ -25,6 +24,24 @@ export class InvoiceByParentKeyBase extends GridViewBase {
*/
protected appDeName: string = 'invoice';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof InvoiceByParentKeyBase
*/
protected appDeKey: string = 'invoiceid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof InvoiceByParentKeyBase
*/
protected appDeMajor: string = 'invoicename';
/**
* 实体服务对象
*
......
......@@ -11,7 +11,6 @@ import EditViewEngine from '@engine/view/edit-view-engine';
* @extends {EditViewBase}
*/
export class InvoiceDetailEditViewBase extends EditViewBase {
/**
* 视图对应应用实体名称
*
......@@ -21,6 +20,24 @@ export class InvoiceDetailEditViewBase extends EditViewBase {
*/
protected appDeName: string = 'invoicedetail';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof InvoiceDetailEditViewBase
*/
protected appDeKey: string = 'invoicedetailid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof InvoiceDetailEditViewBase
*/
protected appDeMajor: string = 'invoicedetailname';
/**
* 实体服务对象
*
......
......@@ -14,7 +14,6 @@ import CodeListService from "@service/app/codelist-service";
* @extends {GridViewBase}
*/
export class InvoiceDetailInvoiceProGridViewBase extends GridViewBase {
/**
* 视图对应应用实体名称
*
......@@ -24,6 +23,24 @@ export class InvoiceDetailInvoiceProGridViewBase extends GridViewBase {
*/
protected appDeName: string = 'invoicedetail';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof InvoiceDetailInvoiceProGridViewBase
*/
protected appDeKey: string = 'invoicedetailid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof InvoiceDetailInvoiceProGridViewBase
*/
protected appDeMajor: string = 'invoicedetailname';
/**
* 实体服务对象
*
......
......@@ -15,7 +15,6 @@ import CodeListService from "@service/app/codelist-service";
* @extends {GridViewBase}
*/
export class InvoiceGridViewBase extends GridViewBase {
/**
* 视图对应应用实体名称
*
......@@ -25,6 +24,24 @@ export class InvoiceGridViewBase extends GridViewBase {
*/
protected appDeName: string = 'invoice';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof InvoiceGridViewBase
*/
protected appDeKey: string = 'invoiceid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof InvoiceGridViewBase
*/
protected appDeMajor: string = 'invoicename';
/**
* 实体服务对象
*
......
......@@ -11,7 +11,6 @@ import EditViewEngine from '@engine/view/edit-view-engine';
* @extends {EditViewBase}
*/
export class InvoiceInfo_InvoiceViewBase extends EditViewBase {
/**
* 视图对应应用实体名称
*
......@@ -21,6 +20,24 @@ export class InvoiceInfo_InvoiceViewBase extends EditViewBase {
*/
protected appDeName: string = 'invoice';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof InvoiceInfo_InvoiceViewBase
*/
protected appDeKey: string = 'invoiceid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof InvoiceInfo_InvoiceViewBase
*/
protected appDeMajor: string = 'invoicename';
/**
* 实体服务对象
*
......
......@@ -12,7 +12,6 @@ import InvoiceUIService from '@/uiservice/invoice/invoice-ui-service';
* @extends {TabExpViewBase}
*/
export class InvoiceInfoViewBase extends TabExpViewBase {
/**
* 视图对应应用实体名称
*
......@@ -22,6 +21,24 @@ export class InvoiceInfoViewBase extends TabExpViewBase {
*/
protected appDeName: string = 'invoice';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof InvoiceInfoViewBase
*/
protected appDeKey: string = 'invoiceid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof InvoiceInfoViewBase
*/
protected appDeMajor: string = 'invoicename';
/**
* 实体服务对象
*
......@@ -459,8 +476,8 @@ export class InvoiceInfoViewBase extends TabExpViewBase {
* @memberof InvoiceInfoViewBase
*/
protected async loadModel(): Promise<any> {
if(this.context.invoice){
this.appEntityService.getDataInfo(JSON.parse(JSON.stringify(this.context)),{},false).then((response:any) =>{
if(this.context[this.appDeName]){
this.appEntityService.getDataInfo(this.context),{},false).then((response:any) =>{
if (!response || response.status !== 200) {
return;
}
......
......@@ -11,7 +11,6 @@ import OptionViewEngine from '@engine/view/option-view-engine';
* @extends {OptionViewBase}
*/
export class InvoiceQuickCreateViewBase extends OptionViewBase {
/**
* 视图对应应用实体名称
*
......@@ -21,6 +20,24 @@ export class InvoiceQuickCreateViewBase extends OptionViewBase {
*/
protected appDeName: string = 'invoice';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof InvoiceQuickCreateViewBase
*/
protected appDeKey: string = 'invoiceid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof InvoiceQuickCreateViewBase
*/
protected appDeMajor: string = 'invoicename';
/**
* 实体服务对象
*
......
......@@ -11,7 +11,6 @@ import PortalViewEngine from '@engine/view/portal-view-engine';
* @extends {DashboardViewBase}
*/
export class InvoiceSummaryViewBase extends DashboardViewBase {
/**
* 视图对应应用实体名称
*
......@@ -21,6 +20,24 @@ export class InvoiceSummaryViewBase extends DashboardViewBase {
*/
protected appDeName: string = 'invoice';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof InvoiceSummaryViewBase
*/
protected appDeKey: string = 'invoiceid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof InvoiceSummaryViewBase
*/
protected appDeMajor: string = 'invoicename';
/**
* 实体服务对象
*
......
......@@ -14,7 +14,6 @@ import CodeListService from "@service/app/codelist-service";
* @extends {GridViewBase}
*/
export class CampaignActivityByParentKeyBase extends GridViewBase {
/**
* 视图对应应用实体名称
*
......@@ -24,6 +23,24 @@ export class CampaignActivityByParentKeyBase extends GridViewBase {
*/
protected appDeName: string = 'campaignactivity';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof CampaignActivityByParentKeyBase
*/
protected appDeKey: string = 'activityid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof CampaignActivityByParentKeyBase
*/
protected appDeMajor: string = 'subject';
/**
* 实体服务对象
*
......
......@@ -11,7 +11,6 @@ import EditViewEngine from '@engine/view/edit-view-engine';
* @extends {EditViewBase}
*/
export class CampaignActivityEditViewBase extends EditViewBase {
/**
* 视图对应应用实体名称
*
......@@ -21,6 +20,24 @@ export class CampaignActivityEditViewBase extends EditViewBase {
*/
protected appDeName: string = 'campaignactivity';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof CampaignActivityEditViewBase
*/
protected appDeKey: string = 'activityid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof CampaignActivityEditViewBase
*/
protected appDeMajor: string = 'subject';
/**
* 实体服务对象
*
......
......@@ -11,7 +11,6 @@ import OptionViewEngine from '@engine/view/option-view-engine';
* @extends {OptionViewBase}
*/
export class CampaignActivityQuickCreateBase extends OptionViewBase {
/**
* 视图对应应用实体名称
*
......@@ -21,6 +20,24 @@ export class CampaignActivityQuickCreateBase extends OptionViewBase {
*/
protected appDeName: string = 'campaignactivity';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof CampaignActivityQuickCreateBase
*/
protected appDeKey: string = 'activityid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof CampaignActivityQuickCreateBase
*/
protected appDeMajor: string = 'subject';
/**
* 实体服务对象
*
......
......@@ -11,7 +11,6 @@ import OptionViewEngine from '@engine/view/option-view-engine';
* @extends {OptionViewBase}
*/
export class CampaignEdit_HeadBase extends OptionViewBase {
/**
* 视图对应应用实体名称
*
......@@ -21,6 +20,24 @@ export class CampaignEdit_HeadBase extends OptionViewBase {
*/
protected appDeName: string = 'campaign';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof CampaignEdit_HeadBase
*/
protected appDeKey: string = 'campaignid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof CampaignEdit_HeadBase
*/
protected appDeMajor: string = 'campaignname';
/**
* 实体服务对象
*
......
......@@ -15,7 +15,6 @@ import CodeListService from "@service/app/codelist-service";
* @extends {GridViewBase}
*/
export class CampaignGridViewBase extends GridViewBase {
/**
* 视图对应应用实体名称
*
......@@ -25,6 +24,24 @@ export class CampaignGridViewBase extends GridViewBase {
*/
protected appDeName: string = 'campaign';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof CampaignGridViewBase
*/
protected appDeKey: string = 'campaignid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof CampaignGridViewBase
*/
protected appDeMajor: string = 'campaignname';
/**
* 实体服务对象
*
......
......@@ -11,7 +11,6 @@ import EditViewEngine from '@engine/view/edit-view-engine';
* @extends {EditViewBase}
*/
export class CampaignInfo_CampaginBase extends EditViewBase {
/**
* 视图对应应用实体名称
*
......@@ -21,6 +20,24 @@ export class CampaignInfo_CampaginBase extends EditViewBase {
*/
protected appDeName: string = 'campaign';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof CampaignInfo_CampaginBase
*/
protected appDeKey: string = 'campaignid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof CampaignInfo_CampaginBase
*/
protected appDeMajor: string = 'campaignname';
/**
* 实体服务对象
*
......
......@@ -11,7 +11,6 @@ import EditViewEngine from '@engine/view/edit-view-engine';
* @extends {EditViewBase}
*/
export class CampaignInfo_HeadBase extends EditViewBase {
/**
* 视图对应应用实体名称
*
......@@ -21,6 +20,24 @@ export class CampaignInfo_HeadBase extends EditViewBase {
*/
protected appDeName: string = 'campaign';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof CampaignInfo_HeadBase
*/
protected appDeKey: string = 'campaignid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof CampaignInfo_HeadBase
*/
protected appDeMajor: string = 'campaignname';
/**
* 实体服务对象
*
......
......@@ -11,7 +11,6 @@ import EditViewEngine from '@engine/view/edit-view-engine';
* @extends {EditViewBase}
*/
export class CampaignInfo_ManagerBase extends EditViewBase {
/**
* 视图对应应用实体名称
*
......@@ -21,6 +20,24 @@ export class CampaignInfo_ManagerBase extends EditViewBase {
*/
protected appDeName: string = 'campaign';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof CampaignInfo_ManagerBase
*/
protected appDeKey: string = 'campaignid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof CampaignInfo_ManagerBase
*/
protected appDeMajor: string = 'campaignname';
/**
* 实体服务对象
*
......
......@@ -11,7 +11,6 @@ import EditViewEngine from '@engine/view/edit-view-engine';
* @extends {EditViewBase}
*/
export class CampaignInfo_ScheduleBase extends EditViewBase {
/**
* 视图对应应用实体名称
*
......@@ -21,6 +20,24 @@ export class CampaignInfo_ScheduleBase extends EditViewBase {
*/
protected appDeName: string = 'campaign';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof CampaignInfo_ScheduleBase
*/
protected appDeKey: string = 'campaignid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof CampaignInfo_ScheduleBase
*/
protected appDeMajor: string = 'campaignname';
/**
* 实体服务对象
*
......
......@@ -11,7 +11,6 @@ import TabExpViewEngine from '@engine/view/tab-exp-view-engine';
* @extends {TabExpViewBase}
*/
export class CampaignInfoBase extends TabExpViewBase {
/**
* 视图对应应用实体名称
*
......@@ -21,6 +20,24 @@ export class CampaignInfoBase extends TabExpViewBase {
*/
protected appDeName: string = 'campaign';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof CampaignInfoBase
*/
protected appDeKey: string = 'campaignid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof CampaignInfoBase
*/
protected appDeMajor: string = 'campaignname';
/**
* 实体服务对象
*
......@@ -356,8 +373,8 @@ export class CampaignInfoBase extends TabExpViewBase {
* @memberof CampaignInfoBase
*/
protected async loadModel(): Promise<any> {
if(this.context.campaign){
this.appEntityService.getDataInfo(JSON.parse(JSON.stringify(this.context)),{},false).then((response:any) =>{
if(this.context[this.appDeName]){
this.appEntityService.getDataInfo(this.context),{},false).then((response:any) =>{
if (!response || response.status !== 200) {
return;
}
......
......@@ -11,7 +11,6 @@ import EditViewEngine from '@engine/view/edit-view-engine';
* @extends {EditViewBase}
*/
export class CampaignListEditViewBase extends EditViewBase {
/**
* 视图对应应用实体名称
*
......@@ -21,6 +20,24 @@ export class CampaignListEditViewBase extends EditViewBase {
*/
protected appDeName: string = 'campaignlist';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof CampaignListEditViewBase
*/
protected appDeKey: string = 'relationshipsid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof CampaignListEditViewBase
*/
protected appDeMajor: string = 'relationshipsname';
/**
* 实体服务对象
*
......
......@@ -14,7 +14,6 @@ import CodeListService from "@service/app/codelist-service";
* @extends {GridViewBase}
*/
export class CampaignListGridViewBase extends GridViewBase {
/**
* 视图对应应用实体名称
*
......@@ -24,6 +23,24 @@ export class CampaignListGridViewBase extends GridViewBase {
*/
protected appDeName: string = 'campaignlist';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof CampaignListGridViewBase
*/
protected appDeKey: string = 'relationshipsid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof CampaignListGridViewBase
*/
protected appDeMajor: string = 'relationshipsname';
/**
* 实体服务对象
*
......
......@@ -11,7 +11,6 @@ import OptionViewEngine from '@engine/view/option-view-engine';
* @extends {OptionViewBase}
*/
export class CampaignQuickCreateViewBase extends OptionViewBase {
/**
* 视图对应应用实体名称
*
......@@ -21,6 +20,24 @@ export class CampaignQuickCreateViewBase extends OptionViewBase {
*/
protected appDeName: string = 'campaign';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof CampaignQuickCreateViewBase
*/
protected appDeKey: string = 'campaignid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof CampaignQuickCreateViewBase
*/
protected appDeMajor: string = 'campaignname';
/**
* 实体服务对象
*
......
......@@ -14,7 +14,6 @@ import CodeListService from "@service/app/codelist-service";
* @extends {GridViewBase}
*/
export class CampaignResponseByParentKeyBase extends GridViewBase {
/**
* 视图对应应用实体名称
*
......@@ -24,6 +23,24 @@ export class CampaignResponseByParentKeyBase extends GridViewBase {
*/
protected appDeName: string = 'campaignresponse';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof CampaignResponseByParentKeyBase
*/
protected appDeKey: string = 'activityid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof CampaignResponseByParentKeyBase
*/
protected appDeMajor: string = 'subject';
/**
* 实体服务对象
*
......
......@@ -11,7 +11,6 @@ import EditViewEngine from '@engine/view/edit-view-engine';
* @extends {EditViewBase}
*/
export class CampaignResponseEditViewBase extends EditViewBase {
/**
* 视图对应应用实体名称
*
......@@ -21,6 +20,24 @@ export class CampaignResponseEditViewBase extends EditViewBase {
*/
protected appDeName: string = 'campaignresponse';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof CampaignResponseEditViewBase
*/
protected appDeKey: string = 'activityid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof CampaignResponseEditViewBase
*/
protected appDeMajor: string = 'subject';
/**
* 实体服务对象
*
......
......@@ -11,7 +11,6 @@ import OptionViewEngine from '@engine/view/option-view-engine';
* @extends {OptionViewBase}
*/
export class CampaignResponseQuickCreateBase extends OptionViewBase {
/**
* 视图对应应用实体名称
*
......@@ -21,6 +20,24 @@ export class CampaignResponseQuickCreateBase extends OptionViewBase {
*/
protected appDeName: string = 'campaignresponse';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof CampaignResponseQuickCreateBase
*/
protected appDeKey: string = 'activityid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof CampaignResponseQuickCreateBase
*/
protected appDeMajor: string = 'subject';
/**
* 实体服务对象
*
......
......@@ -11,7 +11,6 @@ import PortalViewEngine from '@engine/view/portal-view-engine';
* @extends {DashboardViewBase}
*/
export class CampaignSummary_HeadBase extends DashboardViewBase {
/**
* 视图对应应用实体名称
*
......@@ -21,6 +20,24 @@ export class CampaignSummary_HeadBase extends DashboardViewBase {
*/
protected appDeName: string = 'campaign';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof CampaignSummary_HeadBase
*/
protected appDeKey: string = 'campaignid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof CampaignSummary_HeadBase
*/
protected appDeMajor: string = 'campaignname';
/**
* 实体服务对象
*
......
......@@ -11,7 +11,6 @@ import PortalViewEngine from '@engine/view/portal-view-engine';
* @extends {DashboardViewBase}
*/
export class CampaignSummaryBase extends DashboardViewBase {
/**
* 视图对应应用实体名称
*
......@@ -21,6 +20,24 @@ export class CampaignSummaryBase extends DashboardViewBase {
*/
protected appDeName: string = 'campaign';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof CampaignSummaryBase
*/
protected appDeKey: string = 'campaignid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof CampaignSummaryBase
*/
protected appDeMajor: string = 'campaignname';
/**
* 实体服务对象
*
......
......@@ -15,7 +15,6 @@ import CodeListService from "@service/app/codelist-service";
* @extends {GridViewBase}
*/
export class IBizListGridViewBase extends GridViewBase {
/**
* 视图对应应用实体名称
*
......@@ -25,6 +24,24 @@ export class IBizListGridViewBase extends GridViewBase {
*/
protected appDeName: string = 'ibizlist';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof IBizListGridViewBase
*/
protected appDeKey: string = 'listid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof IBizListGridViewBase
*/
protected appDeMajor: string = 'listname';
/**
* 实体服务对象
*
......
......@@ -11,7 +11,6 @@ import EditViewEngine from '@engine/view/edit-view-engine';
* @extends {EditViewBase}
*/
export class IBizListInfo_AbstractBase extends EditViewBase {
/**
* 视图对应应用实体名称
*
......@@ -21,6 +20,24 @@ export class IBizListInfo_AbstractBase extends EditViewBase {
*/
protected appDeName: string = 'ibizlist';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof IBizListInfo_AbstractBase
*/
protected appDeKey: string = 'listid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof IBizListInfo_AbstractBase
*/
protected appDeMajor: string = 'listname';
/**
* 实体服务对象
*
......
......@@ -11,7 +11,6 @@ import TabExpViewEngine from '@engine/view/tab-exp-view-engine';
* @extends {TabExpViewBase}
*/
export class IBizListInfoBase extends TabExpViewBase {
/**
* 视图对应应用实体名称
*
......@@ -21,6 +20,24 @@ export class IBizListInfoBase extends TabExpViewBase {
*/
protected appDeName: string = 'ibizlist';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof IBizListInfoBase
*/
protected appDeKey: string = 'listid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof IBizListInfoBase
*/
protected appDeMajor: string = 'listname';
/**
* 实体服务对象
*
......@@ -108,8 +125,8 @@ export class IBizListInfoBase extends TabExpViewBase {
* @memberof IBizListInfoBase
*/
protected async loadModel(): Promise<any> {
if(this.context.ibizlist){
this.appEntityService.getDataInfo(JSON.parse(JSON.stringify(this.context)),{},false).then((response:any) =>{
if(this.context[this.appDeName]){
this.appEntityService.getDataInfo(this.context),{},false).then((response:any) =>{
if (!response || response.status !== 200) {
return;
}
......
......@@ -11,7 +11,6 @@ import OptionViewEngine from '@engine/view/option-view-engine';
* @extends {OptionViewBase}
*/
export class IBizListOptionViewBase extends OptionViewBase {
/**
* 视图对应应用实体名称
*
......@@ -21,6 +20,24 @@ export class IBizListOptionViewBase extends OptionViewBase {
*/
protected appDeName: string = 'ibizlist';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof IBizListOptionViewBase
*/
protected appDeKey: string = 'listid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof IBizListOptionViewBase
*/
protected appDeMajor: string = 'listname';
/**
* 实体服务对象
*
......
......@@ -11,7 +11,6 @@ import OptionViewEngine from '@engine/view/option-view-engine';
* @extends {OptionViewBase}
*/
export class IBizListQuickCreateBase extends OptionViewBase {
/**
* 视图对应应用实体名称
*
......@@ -21,6 +20,24 @@ export class IBizListQuickCreateBase extends OptionViewBase {
*/
protected appDeName: string = 'ibizlist';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof IBizListQuickCreateBase
*/
protected appDeKey: string = 'listid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof IBizListQuickCreateBase
*/
protected appDeMajor: string = 'listname';
/**
* 实体服务对象
*
......
......@@ -11,7 +11,6 @@ import PortalViewEngine from '@engine/view/portal-view-engine';
* @extends {DashboardViewBase}
*/
export class IBizListSummaryBase extends DashboardViewBase {
/**
* 视图对应应用实体名称
*
......@@ -21,6 +20,24 @@ export class IBizListSummaryBase extends DashboardViewBase {
*/
protected appDeName: string = 'ibizlist';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof IBizListSummaryBase
*/
protected appDeKey: string = 'listid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof IBizListSummaryBase
*/
protected appDeMajor: string = 'listname';
/**
* 实体服务对象
*
......
......@@ -14,7 +14,6 @@ import CodeListService from "@service/app/codelist-service";
* @extends {GridViewBase}
*/
export class ListAccountByListBase extends GridViewBase {
/**
* 视图对应应用实体名称
*
......@@ -24,6 +23,24 @@ export class ListAccountByListBase extends GridViewBase {
*/
protected appDeName: string = 'listaccount';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof ListAccountByListBase
*/
protected appDeKey: string = 'relationshipsid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof ListAccountByListBase
*/
protected appDeMajor: string = 'relationshipsname';
/**
* 实体服务对象
*
......
......@@ -11,7 +11,6 @@ import EditViewEngine from '@engine/view/edit-view-engine';
* @extends {EditViewBase}
*/
export class ListAccountEditViewBase extends EditViewBase {
/**
* 视图对应应用实体名称
*
......@@ -21,6 +20,24 @@ export class ListAccountEditViewBase extends EditViewBase {
*/
protected appDeName: string = 'listaccount';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof ListAccountEditViewBase
*/
protected appDeKey: string = 'relationshipsid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof ListAccountEditViewBase
*/
protected appDeMajor: string = 'relationshipsname';
/**
* 实体服务对象
*
......
......@@ -14,7 +14,6 @@ import CodeListService from "@service/app/codelist-service";
* @extends {GridView9Base}
*/
export class ListAccountInnerBase extends GridView9Base {
/**
* 视图对应应用实体名称
*
......@@ -24,6 +23,24 @@ export class ListAccountInnerBase extends GridView9Base {
*/
protected appDeName: string = 'listaccount';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof ListAccountInnerBase
*/
protected appDeKey: string = 'relationshipsid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof ListAccountInnerBase
*/
protected appDeMajor: string = 'relationshipsname';
/**
* 实体服务对象
*
......
......@@ -11,7 +11,6 @@ import OptionViewEngine from '@engine/view/option-view-engine';
* @extends {OptionViewBase}
*/
export class ListAccountQuickCreateByListBase extends OptionViewBase {
/**
* 视图对应应用实体名称
*
......@@ -21,6 +20,24 @@ export class ListAccountQuickCreateByListBase extends OptionViewBase {
*/
protected appDeName: string = 'listaccount';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof ListAccountQuickCreateByListBase
*/
protected appDeKey: string = 'relationshipsid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof ListAccountQuickCreateByListBase
*/
protected appDeMajor: string = 'relationshipsname';
/**
* 实体服务对象
*
......
......@@ -11,7 +11,6 @@ import EditViewEngine from '@engine/view/edit-view-engine';
* @extends {EditViewBase}
*/
export class ListContactEditViewBase extends EditViewBase {
/**
* 视图对应应用实体名称
*
......@@ -21,6 +20,24 @@ export class ListContactEditViewBase extends EditViewBase {
*/
protected appDeName: string = 'listcontact';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof ListContactEditViewBase
*/
protected appDeKey: string = 'relationshipsid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof ListContactEditViewBase
*/
protected appDeMajor: string = 'relationshipsname';
/**
* 实体服务对象
*
......
......@@ -14,7 +14,6 @@ import CodeListService from "@service/app/codelist-service";
* @extends {GridViewBase}
*/
export class ListContactGridViewBase extends GridViewBase {
/**
* 视图对应应用实体名称
*
......@@ -24,6 +23,24 @@ export class ListContactGridViewBase extends GridViewBase {
*/
protected appDeName: string = 'listcontact';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof ListContactGridViewBase
*/
protected appDeKey: string = 'relationshipsid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof ListContactGridViewBase
*/
protected appDeMajor: string = 'relationshipsname';
/**
* 实体服务对象
*
......
......@@ -14,7 +14,6 @@ import CodeListService from "@service/app/codelist-service";
* @extends {GridView9Base}
*/
export class ListContactInnerBase extends GridView9Base {
/**
* 视图对应应用实体名称
*
......@@ -24,6 +23,24 @@ export class ListContactInnerBase extends GridView9Base {
*/
protected appDeName: string = 'listcontact';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof ListContactInnerBase
*/
protected appDeKey: string = 'relationshipsid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof ListContactInnerBase
*/
protected appDeMajor: string = 'relationshipsname';
/**
* 实体服务对象
*
......
......@@ -14,7 +14,6 @@ import CodeListService from "@service/app/codelist-service";
* @extends {GridViewBase}
*/
export class ListLeadByListBase extends GridViewBase {
/**
* 视图对应应用实体名称
*
......@@ -24,6 +23,24 @@ export class ListLeadByListBase extends GridViewBase {
*/
protected appDeName: string = 'listlead';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof ListLeadByListBase
*/
protected appDeKey: string = 'relationshipsid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof ListLeadByListBase
*/
protected appDeMajor: string = 'relationshipsname';
/**
* 实体服务对象
*
......
......@@ -11,7 +11,6 @@ import OptionViewEngine from '@engine/view/option-view-engine';
* @extends {OptionViewBase}
*/
export class ListLeadQuickCreateByListBase extends OptionViewBase {
/**
* 视图对应应用实体名称
*
......@@ -21,6 +20,24 @@ export class ListLeadQuickCreateByListBase extends OptionViewBase {
*/
protected appDeName: string = 'listlead';
/**
* 应用实体主键
*
* @protected
* @type {string}
* @memberof ListLeadQuickCreateByListBase
*/
protected appDeKey: string = 'relationshipsid';
/**
* 应用实体主信息
*
* @protected
* @type {string}
* @memberof ListLeadQuickCreateByListBase
*/
protected appDeMajor: string = 'relationshipsname';
/**
* 实体服务对象
*
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册