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

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

上级 be5bfb1b
......@@ -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: 'IBIZBOOKCustomView_layout' + (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: 'IBIZBOOKCustomView_layout' + (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 } ;
......
......@@ -1683,7 +1683,7 @@ export default class MainBase extends Vue implements ControlInterface {
*/
public async load(opt: any = {}): Promise<any> {
if(!this.loadAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKUsr6EditView' + (this.$t('app.formpage.notconfig.loadaction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKUsr9EditView' + (this.$t('app.formpage.notconfig.loadaction') as string) });
return;
}
const arg: any = { ...opt };
......@@ -1735,7 +1735,7 @@ export default class MainBase extends Vue implements ControlInterface {
*/
public async loadDraft(opt: any = {}): Promise<any> {
if (!this.loaddraftAction) {
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKUsr6EditView' + (this.$t('app.formpage.notconfig.loaddraftaction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKUsr9EditView' + (this.$t('app.formpage.notconfig.loaddraftaction') as string) });
return;
}
const arg: any = { ...opt } ;
......@@ -1806,7 +1806,7 @@ export default class MainBase extends Vue implements ControlInterface {
const action: any = Object.is(data.srfuf, '1') ? this.updateAction : this.createAction;
if(!action){
let actionName:any = Object.is(data.srfuf, '1')?"updateAction":"createAction";
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKUsr6EditView' + (this.$t('app.formpage.notconfig.actionname') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKUsr9EditView' + (this.$t('app.formpage.notconfig.actionname') as string) });
return;
}
Object.assign(arg,{viewparams:this.viewparams});
......@@ -1914,7 +1914,7 @@ export default class MainBase extends Vue implements ControlInterface {
const action: any = Object.is(data.srfuf, '1') ? this.updateAction : this.createAction;
if(!action){
let actionName:any = Object.is(data.srfuf, '1')?"updateAction":"createAction";
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKUsr6EditView' + (this.$t('app.formpage.notconfig.actionname') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKUsr9EditView' + (this.$t('app.formpage.notconfig.actionname') as string) });
return;
}
Object.assign(arg, { viewparams: this.viewparams });
......@@ -2128,7 +2128,7 @@ export default class MainBase extends Vue implements ControlInterface {
public remove(opt:Array<any> = [],showResultInfo?: boolean): Promise<any> {
return new Promise((resolve: any, reject: any) => {
if(!this.removeAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKUsr6EditView' + (this.$t('app.formpage.notconfig.removeaction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKUsr9EditView' + (this.$t('app.formpage.notconfig.removeaction') as string) });
return;
}
const arg: any = opt[0];
......
......@@ -964,7 +964,7 @@ export default class MainBase extends Vue implements ControlInterface {
if (!this.fetchAction) {
this.$Notice.error({
title: this.$t("app.commonWords.wrong") as string,
desc: "IBIZOrderDetailGridView9" + (this.$t("app.gridpage.notConfig.fetchAction") as string),
desc: "IBIZOrderDetailSGridView" + (this.$t("app.gridpage.notConfig.fetchAction") as string),
});
return;
}
......@@ -1123,7 +1123,7 @@ export default class MainBase extends Vue implements ControlInterface {
if (!this.removeAction) {
this.$Notice.error({
title: (this.$t('app.commonWords.wrong') as string),
desc: 'IBIZOrderDetailGridView9' + (this.$t('app.gridpage.notConfig.removeAction') as string)
desc: 'IBIZOrderDetailSGridView' + (this.$t('app.gridpage.notConfig.removeAction') as string)
});
return;
}
......@@ -1237,7 +1237,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: 'IBIZOrderDetailGridView9'+(this.$t('app.gridpage.notConfig.fetchAction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderDetailSGridView'+(this.$t('app.gridpage.notConfig.fetchAction') as string) });
return;
}
if(!arg){
......@@ -2132,7 +2132,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: 'IBIZOrderDetailGridView9'+(this.$t('app.gridpage.notConfig.createAction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderDetailSGridView'+(this.$t('app.gridpage.notConfig.createAction') as string) });
} else {
Object.assign(item, { viewparams: this.viewparams });
const tempContext = Util.deepCopy(this.context);
......@@ -2141,7 +2141,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: 'IBIZOrderDetailGridView9'+(this.$t('app.gridpage.notConfig.updateAction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderDetailSGridView'+(this.$t('app.gridpage.notConfig.updateAction') as string) });
} else {
Object.assign(item, { viewparams: this.viewparams });
const tempContext = Util.deepCopy(this.context);
......@@ -2217,7 +2217,7 @@ export default class MainBase extends Vue implements ControlInterface {
if(!this.loaddraftAction){
this.$Notice.error({
title: (this.$t('app.commonWords.wrong') as string),
desc: 'IBIZOrderDetailGridView9' + (this.$t('app.gridpage.notConfig.loaddraftAction') as string)
desc: 'IBIZOrderDetailSGridView' + (this.$t('app.gridpage.notConfig.loaddraftAction') as string)
});
return;
}
......
......@@ -768,7 +768,7 @@ export default class CardNavigationBase extends Vue implements ControlInterface
*/
public async load(opt: any = {}, isReset: boolean = false): Promise<any> {
if(!this.fetchAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderDataViewExpView_layout' + (this.$t('app.list.notConfig.fetchAction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderDataViewExpView' + (this.$t('app.list.notConfig.fetchAction') as string) });
return;
}
const arg: any = {...opt};
......@@ -862,7 +862,7 @@ export default class CardNavigationBase extends Vue implements ControlInterface
*/
public async remove(datas: any[]): Promise<any> {
if(!this.removeAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderDataViewExpView_layout' + (this.$t('app.gridpage.notConfig.removeAction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderDataViewExpView' + (this.$t('app.gridpage.notConfig.removeAction') as string) });
return;
}
let _datas:any[] = [];
......@@ -978,7 +978,7 @@ export default class CardNavigationBase 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: 'IBIZOrderDataViewExpView_layout' + (this.$t('app.list.notConfig.createAction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderDataViewExpView' + (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);
......@@ -986,7 +986,7 @@ export default class CardNavigationBase 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: 'IBIZOrderDataViewExpView_layout' + (this.$t('app.list.notConfig.updateAction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderDataViewExpView' + (this.$t('app.list.notConfig.updateAction') as string) });
}else{
Object.assign(item,{viewparams:this.viewparams});
if(item.ibizorder){
......
......@@ -573,6 +573,15 @@
}, {
"modelref" : true,
"path" : "PSMODULES/Sample/PSDATAENTITIES/IBIZSample0021.json"
}, {
"modelref" : true,
"path" : "PSMODULES/Sample/PSDATAENTITIES/IBIZSample0022.json"
}, {
"modelref" : true,
"path" : "PSMODULES/Sample/PSDATAENTITIES/IBIZSample0023.json"
}, {
"modelref" : true,
"path" : "PSMODULES/Sample/PSDATAENTITIES/IBIZSample0024.json"
}, {
"modelref" : true,
"path" : "PSMODULES/Sample/PSDATAENTITIES/IBIZSoftwareSuit.json"
......
{
"getAllPSDEACModes" : [ {
"codeName" : "Default",
"logicName" : "DEFAULT",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdeacmodes/DEFAULT",
"name" : "DEFAULT",
"getPSDEACModeDataItems" : [ {
"dataType" : 25,
"name" : "value"
}, {
"dataType" : 25,
"name" : "text"
} ],
"pagingSize" : 50,
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdeacmodes/DEFAULT",
"defaultMode" : true,
"enablePagingBar" : false,
"id" : "PSMODULES/Sample/PSDATAENTITIES/IBIZSample0022/PSDEACMODES/Default.json"
} ],
"getAllPSDEActions" : [ {
"actionMode" : "CREATE",
"actionType" : "BUILTIN",
"codeName" : "Create",
"dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZSample0022/PSDEACTIONS/Create.json",
"logicName" : "Create",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdeactions/Create",
"name" : "Create",
"orderValue" : 1,
"getPSDEActionInput" : {
"name" : "CreateInput",
"getPSDEMethodDTO" : {
"modelref" : true,
"id" : "IBIZSample0022DTO"
},
"type" : "DTO",
"output" : true
},
"getPSDEActionReturn" : {
"name" : "CreateResult",
"type" : "VOID"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdeactions/Create",
"builtinAction" : true
}, {
"actionMode" : "UPDATE",
"actionType" : "BUILTIN",
"codeName" : "Update",
"dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZSample0022/PSDEACTIONS/Update.json",
"logicName" : "Update",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdeactions/Update",
"name" : "Update",
"orderValue" : 11,
"getPSDEActionInput" : {
"name" : "UpdateInput",
"getPSDEMethodDTO" : {
"modelref" : true,
"id" : "IBIZSample0022DTO"
},
"type" : "DTO",
"output" : true
},
"getPSDEActionReturn" : {
"name" : "UpdateResult",
"type" : "VOID"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdeactions/Update",
"builtinAction" : true
}, {
"actionMode" : "DELETE",
"actionType" : "BUILTIN",
"batchActionMode" : 1,
"codeName" : "Remove",
"dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZSample0022/PSDEACTIONS/Remove.json",
"logicName" : "Remove",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdeactions/Remove",
"name" : "Remove",
"orderValue" : 21,
"getPSDEActionInput" : {
"getKeyPSDEField" : {
"name" : "IBIZSAMPLE0022ID",
"codeName" : "IBIZSample0022Id"
},
"name" : "RemoveInput",
"type" : "KEYFIELDS"
},
"getPSDEActionReturn" : {
"name" : "RemoveResult",
"type" : "VOID"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdeactions/Remove",
"batchAction" : true,
"builtinAction" : true
}, {
"actionMode" : "READ",
"actionType" : "BUILTIN",
"codeName" : "Get",
"dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZSample0022/PSDEACTIONS/Get.json",
"logicName" : "Get",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdeactions/Get",
"name" : "Get",
"orderValue" : 31,
"getPSDEActionInput" : {
"getKeyPSDEField" : {
"name" : "IBIZSAMPLE0022ID",
"codeName" : "IBIZSample0022Id"
},
"name" : "GetInput",
"type" : "KEYFIELD"
},
"getPSDEActionReturn" : {
"name" : "GetResult",
"getPSDEMethodDTO" : {
"modelref" : true,
"id" : "IBIZSample0022DTO"
},
"type" : "DTO"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdeactions/Get",
"builtinAction" : true
}, {
"actionMode" : "GETDRAFT",
"actionType" : "BUILTIN",
"codeName" : "GetDraft",
"dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZSample0022/PSDEACTIONS/GetDraft.json",
"logicName" : "GetDraft",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdeactions/GetDraft",
"name" : "GetDraft",
"orderValue" : 41,
"getPSDEActionInput" : {
"name" : "GetDraftInput",
"getPSDEMethodDTO" : {
"modelref" : true,
"id" : "IBIZSample0022DTO"
},
"type" : "DTO"
},
"getPSDEActionReturn" : {
"name" : "GetDraftResult",
"getPSDEMethodDTO" : {
"modelref" : true,
"id" : "IBIZSample0022DTO"
},
"type" : "DTO"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdeactions/GetDraft",
"builtinAction" : true
}, {
"actionMode" : "CHECKKEY",
"actionType" : "BUILTIN",
"codeName" : "CheckKey",
"dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZSample0022/PSDEACTIONS/CheckKey.json",
"logicName" : "CheckKey",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdeactions/CheckKey",
"name" : "CheckKey",
"getPSDEActionInput" : {
"name" : "CheckKeyInput",
"getPSDEMethodDTO" : {
"modelref" : true,
"id" : "IBIZSample0022DTO"
},
"type" : "DTO"
},
"getPSDEActionReturn" : {
"name" : "CheckKeyResult",
"stdDataType" : 9,
"type" : "SIMPLE"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdeactions/CheckKey",
"builtinAction" : true
}, {
"actionMode" : "UNKNOWN",
"actionType" : "BUILTIN",
"codeName" : "Save",
"dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZSample0022/PSDEACTIONS/Save.json",
"logicName" : "Save",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdeactions/Save",
"name" : "Save",
"getPSDEActionInput" : {
"name" : "SaveInput",
"getPSDEMethodDTO" : {
"modelref" : true,
"id" : "IBIZSample0022DTO"
},
"type" : "DTO"
},
"getPSDEActionReturn" : {
"name" : "SaveResult",
"type" : "VOID"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdeactions/Save",
"builtinAction" : true
} ],
"getAllPSDEDBConfigs" : [ {
"dBType" : "MYSQL5",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdedbcfgs/MYSQL5",
"name" : "MYSQL5",
"objNameCase" : "DEFAULT",
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdedbcfgs/MYSQL5",
"standardTableName" : "`T_IBIZSAMPLE0022`",
"tableName" : "T_IBIZSAMPLE0022",
"valid" : true
} ],
"getAllPSDEDataQueries" : [ {
"getAllPSDEDataQueryCodes" : [ {
"modelref" : true,
"path" : "PSMODULES/Sample/PSDATAENTITIES/IBIZSample0022/PSDEDATAQUERIES/Default/PSDEDQCODES/MYSQL5.json"
} ],
"codeName" : "Default",
"logicName" : "数据查询",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdedataqueries/DEFAULT",
"name" : "DEFAULT",
"getPSDEDQMain" : {
"getJoinPSDataEntity" : {
"modelref" : true,
"path" : "PSMODULES/Sample/PSDATAENTITIES/IBIZSample0022.json"
},
"joinType" : "MAIN",
"name" : "IBIZSAMPLE0022"
},
"getPSDEDataQueryInput" : {
"name" : "DefaultInput",
"getPSDEFilterDTO" : {
"modelref" : true,
"id" : "IBIZSample0022FilterDTO"
},
"type" : "DTO"
},
"getPSDEDataQueryReturn" : {
"name" : "DefaultResult",
"getPSDEMethodDTO" : {
"modelref" : true,
"id" : "IBIZSample0022DTO"
},
"type" : "DTOS"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdedataqueries/DEFAULT",
"defaultMode" : true
}, {
"getAllPSDEDataQueryCodes" : [ {
"modelref" : true,
"path" : "PSMODULES/Sample/PSDATAENTITIES/IBIZSample0022/PSDEDATAQUERIES/View/PSDEDQCODES/MYSQL5.json"
} ],
"codeName" : "View",
"logicName" : "默认(全部数据)",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdedataqueries/VIEW",
"name" : "VIEW",
"getPSDEDQMain" : {
"getJoinPSDataEntity" : {
"modelref" : true,
"path" : "PSMODULES/Sample/PSDATAENTITIES/IBIZSample0022.json"
},
"joinType" : "MAIN",
"name" : "IBIZSAMPLE0022"
},
"getPSDEDataQueryInput" : {
"name" : "ViewInput",
"getPSDEFilterDTO" : {
"modelref" : true,
"id" : "IBIZSample0022FilterDTO"
},
"type" : "DTO"
},
"getPSDEDataQueryReturn" : {
"name" : "ViewResult",
"getPSDEMethodDTO" : {
"modelref" : true,
"id" : "IBIZSample0022DTO"
},
"type" : "DTOS"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdedataqueries/VIEW",
"viewLevel" : 0
} ],
"getAllPSDEDataSets" : [ {
"codeName" : "Default",
"logicName" : "数据集",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdedatasets/DEFAULT",
"name" : "DEFAULT",
"getPSDEDataQueries" : [ {
"modelref" : true,
"id" : "Default"
} ],
"getPSDEDataSetInput" : {
"name" : "DefaultInput",
"getPSDEFilterDTO" : {
"modelref" : true,
"id" : "IBIZSample0022FilterDTO"
},
"type" : "DTO"
},
"getPSDEDataSetReturn" : {
"name" : "DefaultResult",
"getPSDEMethodDTO" : {
"modelref" : true,
"id" : "IBIZSample0022DTO"
},
"type" : "PAGE"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdedatasets/DEFAULT",
"defaultMode" : true,
"enableBackend" : true,
"enableFront" : true
} ],
"getAllPSDEFields" : [ {
"getAllPSDEFDTColumns" : [ {
"columnName" : "IBIZSAMPLE0022NAME",
"dBType" : "MYSQL5",
"name" : "IBIZSAMPLE0022NAME",
"queryCodeExp" : "t1.`IBIZSAMPLE0022NAME`",
"standardColumnName" : "`IBIZSAMPLE0022NAME`"
} ],
"getAllPSDEFSearchModes" : [ {
"codeName" : "N_IBIZSAMPLE0022NAME_LIKE",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/IBIZSAMPLE0022NAME/psdefsfitems/N_IBIZSAMPLE0022NAME_LIKE",
"name" : "N_IBIZSAMPLE0022NAME_LIKE",
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/IBIZSAMPLE0022NAME/psdefsearchmodes/N_IBIZSAMPLE0022NAME_LIKE",
"stdDataType" : 25,
"valueOP" : "LIKE"
} ],
"getAllPSDEFUIModes" : [ {
"codeName" : "MobileDefault",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/IBIZSAMPLE0022NAME/psdefuimodes/MobileDefault",
"name" : "[IBIZSAMPLE0022NAME][数组属性名称]移动端默认",
"getPSDEFFormItem" : {
"getCapPSLanguageRes" : {
"defaultContent" : "数组属性名称",
"lanResTag" : "DEF.LNAME.IBIZSAMPLE0022NAME",
"lanResType" : "DEF.LNAME",
"name" : "属性逻辑名称(DEF.LNAME.*)[IBIZSAMPLE0022NAME]",
"refFlag" : true
},
"codeName" : "MobileDefault",
"editorType" : "MOBTEXT",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/IBIZSAMPLE0022NAME/psdefformitems/MobileDefault",
"name" : "[IBIZSAMPLE0022NAME][数组属性名称]移动端默认",
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/IBIZSAMPLE0022NAME/psdefformitems/MobileDefault",
"stringLength" : 200,
"uIMode" : "MOBILEDEFAULT",
"mobileMode" : true
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/IBIZSAMPLE0022NAME/psdefuimodes/MobileDefault",
"type" : "MOBILEDEFAULT",
"mobileMode" : true
}, {
"codeName" : "Default",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/IBIZSAMPLE0022NAME/psdefuimodes/Default",
"name" : "[IBIZSAMPLE0022NAME][数组属性名称]",
"getPSDEFFormItem" : {
"getCapPSLanguageRes" : {
"defaultContent" : "数组属性名称",
"lanResTag" : "DEF.LNAME.IBIZSAMPLE0022NAME",
"lanResType" : "DEF.LNAME",
"name" : "属性逻辑名称(DEF.LNAME.*)[IBIZSAMPLE0022NAME]",
"refFlag" : true
},
"codeName" : "Default",
"editorType" : "TEXTBOX",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/IBIZSAMPLE0022NAME/psdefformitems/Default",
"name" : "[IBIZSAMPLE0022NAME][数组属性名称]",
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/IBIZSAMPLE0022NAME/psdefformitems/Default",
"stringLength" : 200,
"uIMode" : "DEFAULT"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/IBIZSAMPLE0022NAME/psdefuimodes/Default",
"type" : "DEFAULT"
} ],
"getAllPSDEFValueRules" : [ {
"codeName" : "Default",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/IBIZSAMPLE0022NAME/psdefvaluerules/Default",
"name" : "默认规则",
"getPSDEFVRGroupCondition" : {
"condOp" : "AND",
"condType" : "GROUP",
"name" : "默认组",
"getPSDEFVRConditions" : [ {
"condType" : "STRINGLENGTH",
"dEFName" : "IBIZSAMPLE0022NAME",
"maxValue" : 200,
"name" : "默认字符串长度",
"ruleInfo" : "内容长度必须小于等于[200]",
"includeMaxValue" : true,
"includeMinValue" : false,
"keyCond" : true
} ],
"ruleInfo" : "内容长度必须小于等于[200]"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/IBIZSAMPLE0022NAME/psdefvaluerules/Default",
"ruleInfo" : "内容长度必须小于等于[200]",
"checkDefault" : true,
"defaultMode" : true,
"enableBackend" : true,
"enableFront" : true
} ],
"codeName" : "IBIZSample0022Name",
"dEFType" : 1,
"dataType" : "TEXT",
"importOrder" : 1000,
"getLNPSLanguageRes" : {
"defaultContent" : "数组属性名称",
"lanResTag" : "DEF.LNAME.IBIZSAMPLE0022NAME",
"lanResType" : "DEF.LNAME",
"name" : "属性逻辑名称(DEF.LNAME.*)[IBIZSAMPLE0022NAME]",
"refFlag" : true
},
"length" : 200,
"logicName" : "数组属性名称",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/IBIZSAMPLE0022NAME",
"name" : "IBIZSAMPLE0022NAME",
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/IBIZSAMPLE0022NAME",
"serviceCodeName" : "IBIZSample0022Name",
"stdDataType" : 25,
"stringLength" : 200,
"valueFormat" : "%1$s",
"enableQuickSearch" : true,
"majorDEField" : true
}, {
"getAllPSDEFDTColumns" : [ {
"columnName" : "IBIZSAMPLE0022ID",
"dBType" : "MYSQL5",
"name" : "IBIZSAMPLE0022ID",
"queryCodeExp" : "t1.`IBIZSAMPLE0022ID`",
"standardColumnName" : "`IBIZSAMPLE0022ID`"
} ],
"getAllPSDEFSearchModes" : [ {
"codeName" : "N_IBIZSAMPLE0022ID_EQ",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/IBIZSAMPLE0022ID/psdefsfitems/N_IBIZSAMPLE0022ID_EQ",
"name" : "N_IBIZSAMPLE0022ID_EQ",
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/IBIZSAMPLE0022ID/psdefsearchmodes/N_IBIZSAMPLE0022ID_EQ",
"stdDataType" : 25,
"valueOP" : "EQ"
} ],
"getAllPSDEFUIModes" : [ {
"codeName" : "Default",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/IBIZSAMPLE0022ID/psdefuimodes/Default",
"name" : "[IBIZSAMPLE0022ID][数组属性标识]",
"getPSDEFFormItem" : {
"getCapPSLanguageRes" : {
"defaultContent" : "数组属性标识",
"lanResTag" : "DEF.LNAME.IBIZSAMPLE0022ID",
"lanResType" : "DEF.LNAME",
"name" : "属性逻辑名称(DEF.LNAME.*)[IBIZSAMPLE0022ID]",
"refFlag" : true
},
"codeName" : "Default",
"editorType" : "SPAN",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/IBIZSAMPLE0022ID/psdefformitems/Default",
"name" : "[IBIZSAMPLE0022ID][数组属性标识]",
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/IBIZSAMPLE0022ID/psdefformitems/Default",
"stringLength" : 100,
"uIMode" : "DEFAULT",
"allowEmpty" : false
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/IBIZSAMPLE0022ID/psdefuimodes/Default",
"type" : "DEFAULT"
}, {
"codeName" : "MobileDefault",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/IBIZSAMPLE0022ID/psdefuimodes/MobileDefault",
"name" : "[IBIZSAMPLE0022ID][数组属性标识]移动端默认",
"getPSDEFFormItem" : {
"getCapPSLanguageRes" : {
"defaultContent" : "数组属性标识",
"lanResTag" : "DEF.LNAME.IBIZSAMPLE0022ID",
"lanResType" : "DEF.LNAME",
"name" : "属性逻辑名称(DEF.LNAME.*)[IBIZSAMPLE0022ID]",
"refFlag" : true
},
"codeName" : "MobileDefault",
"editorType" : "SPAN",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/IBIZSAMPLE0022ID/psdefformitems/MobileDefault",
"name" : "[IBIZSAMPLE0022ID][数组属性标识]移动端默认",
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/IBIZSAMPLE0022ID/psdefformitems/MobileDefault",
"stringLength" : 100,
"uIMode" : "MOBILEDEFAULT",
"allowEmpty" : false,
"mobileMode" : true
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/IBIZSAMPLE0022ID/psdefuimodes/MobileDefault",
"type" : "MOBILEDEFAULT",
"mobileMode" : true
} ],
"getAllPSDEFValueRules" : [ {
"codeName" : "Default",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/IBIZSAMPLE0022ID/psdefvaluerules/Default",
"name" : "默认规则",
"getPSDEFVRGroupCondition" : {
"condOp" : "AND",
"condType" : "GROUP",
"name" : "默认组",
"getPSDEFVRConditions" : [ {
"condType" : "STRINGLENGTH",
"dEFName" : "IBIZSAMPLE0022ID",
"maxValue" : 100,
"name" : "默认字符串长度",
"ruleInfo" : "内容长度必须小于等于[100]",
"includeMaxValue" : true,
"includeMinValue" : false,
"keyCond" : true
} ],
"ruleInfo" : "内容长度必须小于等于[100]"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/IBIZSAMPLE0022ID/psdefvaluerules/Default",
"ruleInfo" : "内容长度必须小于等于[100]",
"checkDefault" : true,
"defaultMode" : true,
"enableBackend" : true,
"enableFront" : true
} ],
"codeName" : "IBIZSample0022Id",
"dEFType" : 1,
"dataType" : "GUID",
"importOrder" : 1000,
"getLNPSLanguageRes" : {
"defaultContent" : "数组属性标识",
"lanResTag" : "DEF.LNAME.IBIZSAMPLE0022ID",
"lanResType" : "DEF.LNAME",
"name" : "属性逻辑名称(DEF.LNAME.*)[IBIZSAMPLE0022ID]",
"refFlag" : true
},
"length" : 100,
"logicName" : "数组属性标识",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/IBIZSAMPLE0022ID",
"name" : "IBIZSAMPLE0022ID",
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/IBIZSAMPLE0022ID",
"serviceCodeName" : "IBIZSample0022Id",
"stdDataType" : 25,
"stringLength" : 100,
"valueFormat" : "%1$s",
"allowEmpty" : false,
"keyDEField" : true,
"pasteReset" : true
}, {
"getAllPSDEFDTColumns" : [ {
"columnName" : "CREATEMAN",
"dBType" : "MYSQL5",
"name" : "CREATEMAN",
"queryCodeExp" : "t1.`CREATEMAN`",
"standardColumnName" : "`CREATEMAN`"
} ],
"getAllPSDEFUIModes" : [ {
"codeName" : "MobileDefault",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/CREATEMAN/psdefuimodes/MobileDefault",
"name" : "[CREATEMAN][建立人]移动端默认",
"getPSDEFFormItem" : {
"getCapPSLanguageRes" : {
"defaultContent" : "建立人",
"lanResTag" : "DEF.LNAME.CREATEMAN",
"lanResType" : "DEF.LNAME",
"mOSFilePath" : "pslanguageres/Auto859",
"name" : "属性逻辑名称(DEF.LNAME.*)[CREATEMAN]",
"rTMOSFilePath" : "pslanguageres/Auto859",
"refFlag" : true
},
"codeName" : "MobileDefault",
"editorType" : "SPAN",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/CREATEMAN/psdefformitems/MobileDefault",
"name" : "[CREATEMAN][建立人]移动端默认",
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/CREATEMAN/psdefformitems/MobileDefault",
"stringLength" : 60,
"uIMode" : "MOBILEDEFAULT",
"allowEmpty" : false,
"mobileMode" : true
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/CREATEMAN/psdefuimodes/MobileDefault",
"type" : "MOBILEDEFAULT",
"mobileMode" : true
}, {
"codeName" : "Default",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/CREATEMAN/psdefuimodes/Default",
"name" : "[CREATEMAN][建立人]",
"getPSDEFFormItem" : {
"getCapPSLanguageRes" : {
"defaultContent" : "建立人",
"lanResTag" : "DEF.LNAME.CREATEMAN",
"lanResType" : "DEF.LNAME",
"mOSFilePath" : "pslanguageres/Auto859",
"name" : "属性逻辑名称(DEF.LNAME.*)[CREATEMAN]",
"rTMOSFilePath" : "pslanguageres/Auto859",
"refFlag" : true
},
"codeName" : "Default",
"editorType" : "SPAN",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/CREATEMAN/psdefformitems/Default",
"name" : "[CREATEMAN][建立人]",
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/CREATEMAN/psdefformitems/Default",
"stringLength" : 60,
"uIMode" : "DEFAULT",
"allowEmpty" : false
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/CREATEMAN/psdefuimodes/Default",
"type" : "DEFAULT"
} ],
"getAllPSDEFValueRules" : [ {
"codeName" : "Default",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/CREATEMAN/psdefvaluerules/Default",
"name" : "默认规则",
"getPSDEFVRGroupCondition" : {
"condOp" : "AND",
"condType" : "GROUP",
"name" : "默认组",
"getPSDEFVRConditions" : [ {
"condType" : "STRINGLENGTH",
"dEFName" : "CREATEMAN",
"maxValue" : 60,
"name" : "默认字符串长度",
"ruleInfo" : "内容长度必须小于等于[60]",
"includeMaxValue" : true,
"includeMinValue" : false,
"keyCond" : true
} ],
"ruleInfo" : "内容长度必须小于等于[60]"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/CREATEMAN/psdefvaluerules/Default",
"ruleInfo" : "内容长度必须小于等于[60]",
"checkDefault" : true,
"defaultMode" : true,
"enableBackend" : true,
"enableFront" : true
} ],
"codeName" : "CreateMan",
"dEFType" : 1,
"dataType" : "TEXT",
"importOrder" : 1000,
"getLNPSLanguageRes" : {
"defaultContent" : "建立人",
"lanResTag" : "DEF.LNAME.CREATEMAN",
"lanResType" : "DEF.LNAME",
"mOSFilePath" : "pslanguageres/Auto859",
"name" : "属性逻辑名称(DEF.LNAME.*)[CREATEMAN]",
"rTMOSFilePath" : "pslanguageres/Auto859",
"refFlag" : true
},
"length" : 60,
"logicName" : "建立人",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/CREATEMAN",
"name" : "CREATEMAN",
"getPSCodeList" : {
"modelref" : true,
"path" : "PSMODULES/Sample/PSCODELISTS/SysOperator.json"
},
"predefinedType" : "CREATEMAN",
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/CREATEMAN",
"serviceCodeName" : "CreateMan",
"stdDataType" : 25,
"stringLength" : 60,
"valueFormat" : "%1$s",
"allowEmpty" : false,
"systemReserver" : true
}, {
"getAllPSDEFDTColumns" : [ {
"columnName" : "UPDATEMAN",
"dBType" : "MYSQL5",
"name" : "UPDATEMAN",
"queryCodeExp" : "t1.`UPDATEMAN`",
"standardColumnName" : "`UPDATEMAN`"
} ],
"getAllPSDEFUIModes" : [ {
"codeName" : "Default",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/UPDATEMAN/psdefuimodes/Default",
"name" : "[UPDATEMAN][更新人]",
"getPSDEFFormItem" : {
"getCapPSLanguageRes" : {
"defaultContent" : "更新人",
"lanResTag" : "DEF.LNAME.UPDATEMAN",
"lanResType" : "DEF.LNAME",
"mOSFilePath" : "pslanguageres/Auto202",
"name" : "属性逻辑名称(DEF.LNAME.*)[UPDATEMAN]",
"rTMOSFilePath" : "pslanguageres/Auto202",
"refFlag" : true
},
"codeName" : "Default",
"editorType" : "SPAN",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/UPDATEMAN/psdefformitems/Default",
"name" : "[UPDATEMAN][更新人]",
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/UPDATEMAN/psdefformitems/Default",
"stringLength" : 60,
"uIMode" : "DEFAULT",
"allowEmpty" : false
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/UPDATEMAN/psdefuimodes/Default",
"type" : "DEFAULT"
}, {
"codeName" : "MobileDefault",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/UPDATEMAN/psdefuimodes/MobileDefault",
"name" : "[UPDATEMAN][更新人]移动端默认",
"getPSDEFFormItem" : {
"getCapPSLanguageRes" : {
"defaultContent" : "更新人",
"lanResTag" : "DEF.LNAME.UPDATEMAN",
"lanResType" : "DEF.LNAME",
"mOSFilePath" : "pslanguageres/Auto202",
"name" : "属性逻辑名称(DEF.LNAME.*)[UPDATEMAN]",
"rTMOSFilePath" : "pslanguageres/Auto202",
"refFlag" : true
},
"codeName" : "MobileDefault",
"editorType" : "SPAN",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/UPDATEMAN/psdefformitems/MobileDefault",
"name" : "[UPDATEMAN][更新人]移动端默认",
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/UPDATEMAN/psdefformitems/MobileDefault",
"stringLength" : 60,
"uIMode" : "MOBILEDEFAULT",
"allowEmpty" : false,
"mobileMode" : true
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/UPDATEMAN/psdefuimodes/MobileDefault",
"type" : "MOBILEDEFAULT",
"mobileMode" : true
} ],
"getAllPSDEFValueRules" : [ {
"codeName" : "Default",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/UPDATEMAN/psdefvaluerules/Default",
"name" : "默认规则",
"getPSDEFVRGroupCondition" : {
"condOp" : "AND",
"condType" : "GROUP",
"name" : "默认组",
"getPSDEFVRConditions" : [ {
"condType" : "STRINGLENGTH",
"dEFName" : "UPDATEMAN",
"maxValue" : 60,
"name" : "默认字符串长度",
"ruleInfo" : "内容长度必须小于等于[60]",
"includeMaxValue" : true,
"includeMinValue" : false,
"keyCond" : true
} ],
"ruleInfo" : "内容长度必须小于等于[60]"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/UPDATEMAN/psdefvaluerules/Default",
"ruleInfo" : "内容长度必须小于等于[60]",
"checkDefault" : true,
"defaultMode" : true,
"enableBackend" : true,
"enableFront" : true
} ],
"codeName" : "UpdateMan",
"dEFType" : 1,
"dataType" : "TEXT",
"importOrder" : 1000,
"getLNPSLanguageRes" : {
"defaultContent" : "更新人",
"lanResTag" : "DEF.LNAME.UPDATEMAN",
"lanResType" : "DEF.LNAME",
"mOSFilePath" : "pslanguageres/Auto202",
"name" : "属性逻辑名称(DEF.LNAME.*)[UPDATEMAN]",
"rTMOSFilePath" : "pslanguageres/Auto202",
"refFlag" : true
},
"length" : 60,
"logicName" : "更新人",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/UPDATEMAN",
"name" : "UPDATEMAN",
"getPSCodeList" : {
"modelref" : true,
"path" : "PSMODULES/Sample/PSCODELISTS/SysOperator.json"
},
"predefinedType" : "UPDATEMAN",
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/UPDATEMAN",
"serviceCodeName" : "UpdateMan",
"stdDataType" : 25,
"stringLength" : 60,
"valueFormat" : "%1$s",
"allowEmpty" : false,
"systemReserver" : true
}, {
"getAllPSDEFDTColumns" : [ {
"columnName" : "CREATEDATE",
"dBType" : "MYSQL5",
"name" : "CREATEDATE",
"queryCodeExp" : "t1.`CREATEDATE`",
"standardColumnName" : "`CREATEDATE`"
} ],
"getAllPSDEFUIModes" : [ {
"codeName" : "MobileDefault",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/CREATEDATE/psdefuimodes/MobileDefault",
"name" : "[CREATEDATE][建立时间]移动端默认",
"getPSDEFFormItem" : {
"getCapPSLanguageRes" : {
"defaultContent" : "建立时间",
"lanResTag" : "DEF.LNAME.CREATEDATE",
"lanResType" : "DEF.LNAME",
"mOSFilePath" : "pslanguageres/Auto964",
"name" : "属性逻辑名称(DEF.LNAME.*)[CREATEDATE]",
"rTMOSFilePath" : "pslanguageres/Auto964",
"refFlag" : true
},
"codeName" : "MobileDefault",
"editorType" : "SPAN",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/CREATEDATE/psdefformitems/MobileDefault",
"name" : "[CREATEDATE][建立时间]移动端默认",
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/CREATEDATE/psdefformitems/MobileDefault",
"uIMode" : "MOBILEDEFAULT",
"valueFormat" : "%1$tY-%1$tm-%1$td %1$tH:%1$tM:%1$tS",
"allowEmpty" : false,
"mobileMode" : true
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/CREATEDATE/psdefuimodes/MobileDefault",
"type" : "MOBILEDEFAULT",
"mobileMode" : true
}, {
"codeName" : "Default",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/CREATEDATE/psdefuimodes/Default",
"name" : "[CREATEDATE][建立时间]",
"getPSDEFFormItem" : {
"getCapPSLanguageRes" : {
"defaultContent" : "建立时间",
"lanResTag" : "DEF.LNAME.CREATEDATE",
"lanResType" : "DEF.LNAME",
"mOSFilePath" : "pslanguageres/Auto964",
"name" : "属性逻辑名称(DEF.LNAME.*)[CREATEDATE]",
"rTMOSFilePath" : "pslanguageres/Auto964",
"refFlag" : true
},
"codeName" : "Default",
"editorType" : "SPAN",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/CREATEDATE/psdefformitems/Default",
"name" : "[CREATEDATE][建立时间]",
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/CREATEDATE/psdefformitems/Default",
"uIMode" : "DEFAULT",
"valueFormat" : "%1$tY-%1$tm-%1$td %1$tH:%1$tM:%1$tS",
"allowEmpty" : false
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/CREATEDATE/psdefuimodes/Default",
"type" : "DEFAULT"
} ],
"getAllPSDEFValueRules" : [ {
"codeName" : "Default",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/CREATEDATE/psdefvaluerules/Default",
"name" : "默认规则",
"getPSDEFVRGroupCondition" : {
"condOp" : "AND",
"condType" : "GROUP",
"name" : "默认组"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/CREATEDATE/psdefvaluerules/Default",
"ruleInfo" : "默认规则",
"checkDefault" : true,
"defaultMode" : true,
"enableBackend" : true,
"enableFront" : true
} ],
"codeName" : "CreateDate",
"dEFType" : 1,
"dataType" : "DATETIME",
"importOrder" : 1000,
"getLNPSLanguageRes" : {
"defaultContent" : "建立时间",
"lanResTag" : "DEF.LNAME.CREATEDATE",
"lanResType" : "DEF.LNAME",
"mOSFilePath" : "pslanguageres/Auto964",
"name" : "属性逻辑名称(DEF.LNAME.*)[CREATEDATE]",
"rTMOSFilePath" : "pslanguageres/Auto964",
"refFlag" : true
},
"length" : 8,
"logicName" : "建立时间",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/CREATEDATE",
"name" : "CREATEDATE",
"predefinedType" : "CREATEDATE",
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/CREATEDATE",
"serviceCodeName" : "CreateDate",
"stdDataType" : 5,
"valueFormat" : "%1$tY-%1$tm-%1$td %1$tH:%1$tM:%1$tS",
"allowEmpty" : false,
"systemReserver" : true
}, {
"getAllPSDEFDTColumns" : [ {
"columnName" : "UPDATEDATE",
"dBType" : "MYSQL5",
"name" : "UPDATEDATE",
"queryCodeExp" : "t1.`UPDATEDATE`",
"standardColumnName" : "`UPDATEDATE`"
} ],
"getAllPSDEFUIModes" : [ {
"codeName" : "MobileDefault",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/UPDATEDATE/psdefuimodes/MobileDefault",
"name" : "[UPDATEDATE][更新时间]移动端默认",
"getPSDEFFormItem" : {
"getCapPSLanguageRes" : {
"defaultContent" : "更新时间",
"lanResTag" : "DEF.LNAME.UPDATEDATE",
"lanResType" : "DEF.LNAME",
"mOSFilePath" : "pslanguageres/Auto1074",
"name" : "属性逻辑名称(DEF.LNAME.*)[UPDATEDATE]",
"rTMOSFilePath" : "pslanguageres/Auto1074",
"refFlag" : true
},
"codeName" : "MobileDefault",
"editorType" : "SPAN",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/UPDATEDATE/psdefformitems/MobileDefault",
"name" : "[UPDATEDATE][更新时间]移动端默认",
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/UPDATEDATE/psdefformitems/MobileDefault",
"uIMode" : "MOBILEDEFAULT",
"valueFormat" : "%1$tY-%1$tm-%1$td %1$tH:%1$tM:%1$tS",
"allowEmpty" : false,
"mobileMode" : true
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/UPDATEDATE/psdefuimodes/MobileDefault",
"type" : "MOBILEDEFAULT",
"mobileMode" : true
}, {
"codeName" : "Default",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/UPDATEDATE/psdefuimodes/Default",
"name" : "[UPDATEDATE][更新时间]",
"getPSDEFFormItem" : {
"getCapPSLanguageRes" : {
"defaultContent" : "更新时间",
"lanResTag" : "DEF.LNAME.UPDATEDATE",
"lanResType" : "DEF.LNAME",
"mOSFilePath" : "pslanguageres/Auto1074",
"name" : "属性逻辑名称(DEF.LNAME.*)[UPDATEDATE]",
"rTMOSFilePath" : "pslanguageres/Auto1074",
"refFlag" : true
},
"codeName" : "Default",
"editorType" : "SPAN",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/UPDATEDATE/psdefformitems/Default",
"name" : "[UPDATEDATE][更新时间]",
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/UPDATEDATE/psdefformitems/Default",
"uIMode" : "DEFAULT",
"valueFormat" : "%1$tY-%1$tm-%1$td %1$tH:%1$tM:%1$tS",
"allowEmpty" : false
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/UPDATEDATE/psdefuimodes/Default",
"type" : "DEFAULT"
} ],
"getAllPSDEFValueRules" : [ {
"codeName" : "Default",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/UPDATEDATE/psdefvaluerules/Default",
"name" : "默认规则",
"getPSDEFVRGroupCondition" : {
"condOp" : "AND",
"condType" : "GROUP",
"name" : "默认组"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/UPDATEDATE/psdefvaluerules/Default",
"ruleInfo" : "默认规则",
"checkDefault" : true,
"defaultMode" : true,
"enableBackend" : true,
"enableFront" : true
} ],
"codeName" : "UpdateDate",
"dEFType" : 1,
"dataType" : "DATETIME",
"importOrder" : 1000,
"getLNPSLanguageRes" : {
"defaultContent" : "更新时间",
"lanResTag" : "DEF.LNAME.UPDATEDATE",
"lanResType" : "DEF.LNAME",
"mOSFilePath" : "pslanguageres/Auto1074",
"name" : "属性逻辑名称(DEF.LNAME.*)[UPDATEDATE]",
"rTMOSFilePath" : "pslanguageres/Auto1074",
"refFlag" : true
},
"length" : 8,
"logicName" : "更新时间",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/UPDATEDATE",
"name" : "UPDATEDATE",
"predefinedType" : "UPDATEDATE",
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/UPDATEDATE",
"serviceCodeName" : "UpdateDate",
"stdDataType" : 5,
"valueFormat" : "%1$tY-%1$tm-%1$td %1$tH:%1$tM:%1$tS",
"allowEmpty" : false,
"systemReserver" : true
}, {
"getAllPSDEFDTColumns" : [ {
"columnName" : "TEXTARRAY",
"dBType" : "MYSQL5",
"name" : "TEXTARRAY",
"queryCodeExp" : "t1.`TEXTARRAY`",
"standardColumnName" : "`TEXTARRAY`"
} ],
"getAllPSDEFUIModes" : [ {
"codeName" : "MobileDefault",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/TEXTARRAY/psdefuimodes/MobileDefault",
"name" : "[TEXTARRAY][文本数组]移动端默认",
"getPSDEFFormItem" : {
"codeName" : "MobileDefault",
"editorType" : "MOBARRAY",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/TEXTARRAY/psdefformitems/MobileDefault",
"name" : "[TEXTARRAY][文本数组]移动端默认",
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/TEXTARRAY/psdefformitems/MobileDefault",
"stringLength" : 1000,
"uIMode" : "MOBILEDEFAULT",
"mobileMode" : true
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/TEXTARRAY/psdefuimodes/MobileDefault",
"type" : "MOBILEDEFAULT",
"mobileMode" : true
}, {
"codeName" : "Default",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/TEXTARRAY/psdefuimodes/Default",
"name" : "[TEXTARRAY][文本数组]",
"getPSDEFFormItem" : {
"codeName" : "Default",
"editorType" : "ARRAY",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/TEXTARRAY/psdefformitems/Default",
"name" : "[TEXTARRAY][文本数组]",
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/TEXTARRAY/psdefformitems/Default",
"stringLength" : 1000,
"uIMode" : "DEFAULT"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/TEXTARRAY/psdefuimodes/Default",
"type" : "DEFAULT"
} ],
"getAllPSDEFValueRules" : [ {
"codeName" : "Default",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/TEXTARRAY/psdefvaluerules/Default",
"name" : "默认规则",
"getPSDEFVRGroupCondition" : {
"condOp" : "AND",
"condType" : "GROUP",
"name" : "默认组",
"getPSDEFVRConditions" : [ {
"condType" : "STRINGLENGTH",
"dEFName" : "TEXTARRAY",
"maxValue" : 1000,
"name" : "默认字符串长度",
"ruleInfo" : "内容长度必须小于等于[1000]",
"includeMaxValue" : true,
"includeMinValue" : false,
"keyCond" : true
} ],
"ruleInfo" : "内容长度必须小于等于[1000]"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/TEXTARRAY/psdefvaluerules/Default",
"ruleInfo" : "内容长度必须小于等于[1000]",
"checkDefault" : true,
"defaultMode" : true,
"enableBackend" : true,
"enableFront" : true
} ],
"codeName" : "Textarray",
"dEFType" : 1,
"dataType" : "TEXTARRAY",
"importOrder" : 1000,
"length" : 1000,
"logicName" : "文本数组",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/TEXTARRAY",
"name" : "TEXTARRAY",
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/TEXTARRAY",
"serviceCodeName" : "Textarray",
"stdDataType" : 25,
"stringLength" : 1000,
"valueFormat" : "%1$s"
}, {
"getAllPSDEFDTColumns" : [ {
"columnName" : "INTARRAY",
"dBType" : "MYSQL5",
"name" : "INTARRAY",
"queryCodeExp" : "t1.`INTARRAY`",
"standardColumnName" : "`INTARRAY`"
} ],
"getAllPSDEFUIModes" : [ {
"codeName" : "Default",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/INTARRAY/psdefuimodes/Default",
"name" : "[INTARRAY][整形数组]",
"getPSDEFFormItem" : {
"codeName" : "Default",
"editorType" : "ARRAY",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/INTARRAY/psdefformitems/Default",
"name" : "[INTARRAY][整形数组]",
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/INTARRAY/psdefformitems/Default",
"stringLength" : 1000,
"uIMode" : "DEFAULT"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/INTARRAY/psdefuimodes/Default",
"type" : "DEFAULT"
}, {
"codeName" : "MobileDefault",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/INTARRAY/psdefuimodes/MobileDefault",
"name" : "[INTARRAY][整形数组]移动端默认",
"getPSDEFFormItem" : {
"codeName" : "MobileDefault",
"editorType" : "MOBARRAY",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/INTARRAY/psdefformitems/MobileDefault",
"name" : "[INTARRAY][整形数组]移动端默认",
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/INTARRAY/psdefformitems/MobileDefault",
"stringLength" : 1000,
"uIMode" : "MOBILEDEFAULT",
"mobileMode" : true
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/INTARRAY/psdefuimodes/MobileDefault",
"type" : "MOBILEDEFAULT",
"mobileMode" : true
} ],
"getAllPSDEFValueRules" : [ {
"codeName" : "Default",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/INTARRAY/psdefvaluerules/Default",
"name" : "默认规则",
"getPSDEFVRGroupCondition" : {
"condOp" : "AND",
"condType" : "GROUP",
"name" : "默认组",
"getPSDEFVRConditions" : [ {
"condType" : "STRINGLENGTH",
"dEFName" : "INTARRAY",
"maxValue" : 1000,
"name" : "默认字符串长度",
"ruleInfo" : "内容长度必须小于等于[1000]",
"includeMaxValue" : true,
"includeMinValue" : false,
"keyCond" : true
} ],
"ruleInfo" : "内容长度必须小于等于[1000]"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/INTARRAY/psdefvaluerules/Default",
"ruleInfo" : "内容长度必须小于等于[1000]",
"checkDefault" : true,
"defaultMode" : true,
"enableBackend" : true,
"enableFront" : true
} ],
"codeName" : "Intarray",
"dEFType" : 1,
"dataType" : "INTARRAY",
"importOrder" : 1000,
"length" : 1000,
"logicName" : "整形数组",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/INTARRAY",
"name" : "INTARRAY",
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/INTARRAY",
"serviceCodeName" : "Intarray",
"stdDataType" : 25,
"stringLength" : 1000,
"valueFormat" : "%1$s"
}, {
"getAllPSDEFDTColumns" : [ {
"columnName" : "BIGINTARRAY",
"dBType" : "MYSQL5",
"name" : "BIGINTARRAY",
"queryCodeExp" : "t1.`BIGINTARRAY`",
"standardColumnName" : "`BIGINTARRAY`"
} ],
"getAllPSDEFUIModes" : [ {
"codeName" : "MobileDefault",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/BIGINTARRAY/psdefuimodes/MobileDefault",
"name" : "[BIGINTARRAY][大整形数组]移动端默认",
"getPSDEFFormItem" : {
"codeName" : "MobileDefault",
"editorType" : "MOBARRAY",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/BIGINTARRAY/psdefformitems/MobileDefault",
"name" : "[BIGINTARRAY][大整形数组]移动端默认",
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/BIGINTARRAY/psdefformitems/MobileDefault",
"stringLength" : 1000,
"uIMode" : "MOBILEDEFAULT",
"mobileMode" : true
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/BIGINTARRAY/psdefuimodes/MobileDefault",
"type" : "MOBILEDEFAULT",
"mobileMode" : true
}, {
"codeName" : "Default",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/BIGINTARRAY/psdefuimodes/Default",
"name" : "[BIGINTARRAY][大整形数组]",
"getPSDEFFormItem" : {
"codeName" : "Default",
"editorType" : "ARRAY",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/BIGINTARRAY/psdefformitems/Default",
"name" : "[BIGINTARRAY][大整形数组]",
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/BIGINTARRAY/psdefformitems/Default",
"stringLength" : 1000,
"uIMode" : "DEFAULT"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/BIGINTARRAY/psdefuimodes/Default",
"type" : "DEFAULT"
} ],
"getAllPSDEFValueRules" : [ {
"codeName" : "Default",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/BIGINTARRAY/psdefvaluerules/Default",
"name" : "默认规则",
"getPSDEFVRGroupCondition" : {
"condOp" : "AND",
"condType" : "GROUP",
"name" : "默认组",
"getPSDEFVRConditions" : [ {
"condType" : "STRINGLENGTH",
"dEFName" : "BIGINTARRAY",
"maxValue" : 1000,
"name" : "默认字符串长度",
"ruleInfo" : "内容长度必须小于等于[1000]",
"includeMaxValue" : true,
"includeMinValue" : false,
"keyCond" : true
} ],
"ruleInfo" : "内容长度必须小于等于[1000]"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/BIGINTARRAY/psdefvaluerules/Default",
"ruleInfo" : "内容长度必须小于等于[1000]",
"checkDefault" : true,
"defaultMode" : true,
"enableBackend" : true,
"enableFront" : true
} ],
"codeName" : "Bigintarray",
"dEFType" : 1,
"dataType" : "BIGINTARRAY",
"importOrder" : 1000,
"length" : 1000,
"logicName" : "大整形数组",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/BIGINTARRAY",
"name" : "BIGINTARRAY",
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/BIGINTARRAY",
"serviceCodeName" : "Bigintarray",
"stdDataType" : 25,
"stringLength" : 1000,
"valueFormat" : "%1$s"
}, {
"getAllPSDEFDTColumns" : [ {
"columnName" : "FLOATARRAY",
"dBType" : "MYSQL5",
"name" : "FLOATARRAY",
"queryCodeExp" : "t1.`FLOATARRAY`",
"standardColumnName" : "`FLOATARRAY`"
} ],
"getAllPSDEFUIModes" : [ {
"codeName" : "Default",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/FLOATARRAY/psdefuimodes/Default",
"name" : "[FLOATARRAY][浮点数组]",
"getPSDEFFormItem" : {
"codeName" : "Default",
"editorType" : "ARRAY",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/FLOATARRAY/psdefformitems/Default",
"name" : "[FLOATARRAY][浮点数组]",
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/FLOATARRAY/psdefformitems/Default",
"stringLength" : 1000,
"uIMode" : "DEFAULT"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/FLOATARRAY/psdefuimodes/Default",
"type" : "DEFAULT"
}, {
"codeName" : "MobileDefault",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/FLOATARRAY/psdefuimodes/MobileDefault",
"name" : "[FLOATARRAY][浮点数组]移动端默认",
"getPSDEFFormItem" : {
"codeName" : "MobileDefault",
"editorType" : "MOBARRAY",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/FLOATARRAY/psdefformitems/MobileDefault",
"name" : "[FLOATARRAY][浮点数组]移动端默认",
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/FLOATARRAY/psdefformitems/MobileDefault",
"stringLength" : 1000,
"uIMode" : "MOBILEDEFAULT",
"mobileMode" : true
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/FLOATARRAY/psdefuimodes/MobileDefault",
"type" : "MOBILEDEFAULT",
"mobileMode" : true
} ],
"getAllPSDEFValueRules" : [ {
"codeName" : "Default",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/FLOATARRAY/psdefvaluerules/Default",
"name" : "默认规则",
"getPSDEFVRGroupCondition" : {
"condOp" : "AND",
"condType" : "GROUP",
"name" : "默认组",
"getPSDEFVRConditions" : [ {
"condType" : "STRINGLENGTH",
"dEFName" : "FLOATARRAY",
"maxValue" : 1000,
"name" : "默认字符串长度",
"ruleInfo" : "内容长度必须小于等于[1000]",
"includeMaxValue" : true,
"includeMinValue" : false,
"keyCond" : true
} ],
"ruleInfo" : "内容长度必须小于等于[1000]"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/FLOATARRAY/psdefvaluerules/Default",
"ruleInfo" : "内容长度必须小于等于[1000]",
"checkDefault" : true,
"defaultMode" : true,
"enableBackend" : true,
"enableFront" : true
} ],
"codeName" : "Floatarray",
"dEFType" : 1,
"dataType" : "FLOATARRAY",
"importOrder" : 1000,
"length" : 1000,
"logicName" : "浮点数组",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/FLOATARRAY",
"name" : "FLOATARRAY",
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/FLOATARRAY",
"serviceCodeName" : "Floatarray",
"stdDataType" : 25,
"stringLength" : 1000,
"valueFormat" : "%1$s"
}, {
"getAllPSDEFDTColumns" : [ {
"columnName" : "DECIMALARRAY",
"dBType" : "MYSQL5",
"name" : "DECIMALARRAY",
"queryCodeExp" : "t1.`DECIMALARRAY`",
"standardColumnName" : "`DECIMALARRAY`"
} ],
"getAllPSDEFUIModes" : [ {
"codeName" : "Default",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/DECIMALARRAY/psdefuimodes/Default",
"name" : "[DECIMALARRAY][数值数组]",
"getPSDEFFormItem" : {
"codeName" : "Default",
"editorType" : "ARRAY",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/DECIMALARRAY/psdefformitems/Default",
"name" : "[DECIMALARRAY][数值数组]",
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/DECIMALARRAY/psdefformitems/Default",
"stringLength" : 1000,
"uIMode" : "DEFAULT"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/DECIMALARRAY/psdefuimodes/Default",
"type" : "DEFAULT"
}, {
"codeName" : "MobileDefault",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/DECIMALARRAY/psdefuimodes/MobileDefault",
"name" : "[DECIMALARRAY][数值数组]移动端默认",
"getPSDEFFormItem" : {
"codeName" : "MobileDefault",
"editorType" : "MOBARRAY",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/DECIMALARRAY/psdefformitems/MobileDefault",
"name" : "[DECIMALARRAY][数值数组]移动端默认",
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/DECIMALARRAY/psdefformitems/MobileDefault",
"stringLength" : 1000,
"uIMode" : "MOBILEDEFAULT",
"mobileMode" : true
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/DECIMALARRAY/psdefuimodes/MobileDefault",
"type" : "MOBILEDEFAULT",
"mobileMode" : true
} ],
"getAllPSDEFValueRules" : [ {
"codeName" : "Default",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/DECIMALARRAY/psdefvaluerules/Default",
"name" : "默认规则",
"getPSDEFVRGroupCondition" : {
"condOp" : "AND",
"condType" : "GROUP",
"name" : "默认组",
"getPSDEFVRConditions" : [ {
"condType" : "STRINGLENGTH",
"dEFName" : "DECIMALARRAY",
"maxValue" : 1000,
"name" : "默认字符串长度",
"ruleInfo" : "内容长度必须小于等于[1000]",
"includeMaxValue" : true,
"includeMinValue" : false,
"keyCond" : true
} ],
"ruleInfo" : "内容长度必须小于等于[1000]"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/DECIMALARRAY/psdefvaluerules/Default",
"ruleInfo" : "内容长度必须小于等于[1000]",
"checkDefault" : true,
"defaultMode" : true,
"enableBackend" : true,
"enableFront" : true
} ],
"codeName" : "Decimalarray",
"dEFType" : 1,
"dataType" : "DECIMALARRAY",
"importOrder" : 1000,
"length" : 1000,
"logicName" : "数值数组",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/DECIMALARRAY",
"name" : "DECIMALARRAY",
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdefields/DECIMALARRAY",
"serviceCodeName" : "Decimalarray",
"stdDataType" : 25,
"stringLength" : 1000,
"valueFormat" : "%1$s"
} ],
"getAllPSDEMethodDTOs" : [ {
"name" : "IBIZSample0022DTO",
"getPSDEMethodDTOFields" : [ {
"logicName" : "大整形数组",
"name" : "Bigintarray",
"getPSDEField" : {
"name" : "BIGINTARRAY",
"codeName" : "Bigintarray"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdemethoddtos/IBIZSample0022DTO/psdemethoddtofields/Bigintarray",
"sourceType" : "DEFIELD",
"stdDataType" : 1,
"stringLength" : 1000,
"type" : "SIMPLES"
}, {
"logicName" : "建立时间",
"name" : "CreateDate",
"getPSDEField" : {
"name" : "CREATEDATE",
"codeName" : "CreateDate"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdemethoddtos/IBIZSample0022DTO/psdemethoddtofields/CreateDate",
"sourceType" : "DEFIELD",
"stdDataType" : 5,
"type" : "SIMPLE",
"allowEmpty" : false,
"readOnly" : true
}, {
"logicName" : "建立人",
"name" : "CreateMan",
"getPSDEField" : {
"name" : "CREATEMAN",
"codeName" : "CreateMan"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdemethoddtos/IBIZSample0022DTO/psdemethoddtofields/CreateMan",
"sourceType" : "DEFIELD",
"stdDataType" : 25,
"stringLength" : 60,
"type" : "SIMPLE",
"allowEmpty" : false,
"readOnly" : true
}, {
"logicName" : "数值数组",
"name" : "Decimalarray",
"getPSDEField" : {
"name" : "DECIMALARRAY",
"codeName" : "Decimalarray"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdemethoddtos/IBIZSample0022DTO/psdemethoddtofields/Decimalarray",
"sourceType" : "DEFIELD",
"stdDataType" : 6,
"stringLength" : 1000,
"type" : "SIMPLES"
}, {
"logicName" : "浮点数组",
"name" : "Floatarray",
"getPSDEField" : {
"name" : "FLOATARRAY",
"codeName" : "Floatarray"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdemethoddtos/IBIZSample0022DTO/psdemethoddtofields/Floatarray",
"sourceType" : "DEFIELD",
"stdDataType" : 7,
"stringLength" : 1000,
"type" : "SIMPLES"
}, {
"logicName" : "数组属性标识",
"name" : "IBIZSample0022Id",
"getPSDEField" : {
"name" : "IBIZSAMPLE0022ID",
"codeName" : "IBIZSample0022Id"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdemethoddtos/IBIZSample0022DTO/psdemethoddtofields/IBIZSample0022Id",
"sourceType" : "DEFIELD",
"stdDataType" : 25,
"stringLength" : 100,
"type" : "SIMPLE",
"allowEmpty" : false
}, {
"logicName" : "数组属性名称",
"name" : "IBIZSample0022Name",
"getPSDEField" : {
"name" : "IBIZSAMPLE0022NAME",
"codeName" : "IBIZSample0022Name"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdemethoddtos/IBIZSample0022DTO/psdemethoddtofields/IBIZSample0022Name",
"sourceType" : "DEFIELD",
"stdDataType" : 25,
"stringLength" : 200,
"type" : "SIMPLE"
}, {
"logicName" : "整形数组",
"name" : "Intarray",
"getPSDEField" : {
"name" : "INTARRAY",
"codeName" : "Intarray"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdemethoddtos/IBIZSample0022DTO/psdemethoddtofields/Intarray",
"sourceType" : "DEFIELD",
"stdDataType" : 9,
"stringLength" : 1000,
"type" : "SIMPLES"
}, {
"logicName" : "文本数组",
"name" : "Textarray",
"getPSDEField" : {
"name" : "TEXTARRAY",
"codeName" : "Textarray"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdemethoddtos/IBIZSample0022DTO/psdemethoddtofields/Textarray",
"sourceType" : "DEFIELD",
"stdDataType" : 25,
"stringLength" : 1000,
"type" : "SIMPLES"
}, {
"logicName" : "更新时间",
"name" : "UpdateDate",
"getPSDEField" : {
"name" : "UPDATEDATE",
"codeName" : "UpdateDate"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdemethoddtos/IBIZSample0022DTO/psdemethoddtofields/UpdateDate",
"sourceType" : "DEFIELD",
"stdDataType" : 5,
"type" : "SIMPLE",
"allowEmpty" : false,
"readOnly" : true
}, {
"logicName" : "更新人",
"name" : "UpdateMan",
"getPSDEField" : {
"name" : "UPDATEMAN",
"codeName" : "UpdateMan"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdemethoddtos/IBIZSample0022DTO/psdemethoddtofields/UpdateMan",
"sourceType" : "DEFIELD",
"stdDataType" : 25,
"stringLength" : 60,
"type" : "SIMPLE",
"allowEmpty" : false,
"readOnly" : true
} ],
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdemethoddtos/IBIZSample0022DTO",
"sourceType" : "DE",
"type" : "DEFAULT",
"defaultMode" : true
}, {
"name" : "IBIZSample0022FilterDTO",
"getPSDEFilterDTOFields" : [ {
"logicName" : "数组属性标识",
"name" : "N_IBIZSAMPLE0022ID_EQ",
"getPSDEFSearchMode" : {
"modelref" : true,
"id" : "N_IBIZSAMPLE0022ID_EQ"
},
"getPSDEField" : {
"name" : "IBIZSAMPLE0022ID",
"codeName" : "IBIZSample0022Id"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdemethoddtos/IBIZSample0022FilterDTO/psdemethoddtofields/N_IBIZSAMPLE0022ID_EQ",
"sourceType" : "DEFSEARCHMODE",
"stdDataType" : 25,
"stringLength" : 100,
"type" : "SIMPLE"
}, {
"logicName" : "数组属性名称",
"name" : "N_IBIZSAMPLE0022NAME_LIKE",
"getPSDEFSearchMode" : {
"modelref" : true,
"id" : "N_IBIZSAMPLE0022NAME_LIKE"
},
"getPSDEField" : {
"name" : "IBIZSAMPLE0022NAME",
"codeName" : "IBIZSample0022Name"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdemethoddtos/IBIZSample0022FilterDTO/psdemethoddtofields/N_IBIZSAMPLE0022NAME_LIKE",
"sourceType" : "DEFSEARCHMODE",
"stdDataType" : 25,
"stringLength" : 200,
"type" : "SIMPLE"
} ],
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdemethoddtos/IBIZSample0022FilterDTO",
"sourceType" : "DE",
"type" : "DEFILTER",
"defaultMode" : true
} ],
"getAllPSDEOPPrivs" : [ {
"logicName" : "建立",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdeopprivs/CREATE",
"name" : "CREATE",
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdeopprivs/CREATE"
}, {
"logicName" : "删除",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdeopprivs/DELETE",
"name" : "DELETE",
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdeopprivs/DELETE"
}, {
"logicName" : "读取",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdeopprivs/READ",
"name" : "READ",
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdeopprivs/READ"
}, {
"logicName" : "更新",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdeopprivs/UPDATE",
"name" : "UPDATE",
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdeopprivs/UPDATE"
} ],
"getAllPSModelDatas" : [ {
"codeName" : "MPickupView",
"logicName" : "数组属性实体数据多项选择视图",
"mOSFilePath" : "psmodeldata$psdataentities/MPickupView",
"modelTag" : "MPICKUPVIEW",
"name" : "数组属性实体数据多项选择视图",
"rTMOSFilePath" : "psmodeldata$psdataentities/MPickupView",
"realModelSubType" : "DEMPICKUPVIEW",
"realModelType" : "PSDEVIEWBASE"
}, {
"codeName" : "PickupGridView",
"logicName" : "数组属性实体选择表格视图(部件视图)",
"mOSFilePath" : "psmodeldata$psdataentities/PickupGridView",
"name" : "数组属性实体选择表格视图(部件视图)",
"rTMOSFilePath" : "psmodeldata$psdataentities/PickupGridView",
"realModelSubType" : "DEPICKUPGRIDVIEW",
"realModelType" : "PSDEVIEWBASE"
}, {
"codeName" : "GridView",
"logicName" : "数组属性实体表格视图",
"mOSFilePath" : "psmodeldata$psdataentities/GridView",
"modelTag" : "MDATAVIEW",
"name" : "数组属性实体表格视图",
"rTMOSFilePath" : "psmodeldata$psdataentities/GridView",
"realModelSubType" : "DEGRIDVIEW",
"realModelType" : "PSDEVIEWBASE"
}, {
"codeName" : "EditView2",
"logicName" : "数组属性实体编辑视图(左右关系)",
"mOSFilePath" : "psmodeldata$psdataentities/EditView2",
"name" : "数组属性实体编辑视图(左右关系)",
"rTMOSFilePath" : "psmodeldata$psdataentities/EditView2",
"realModelSubType" : "DEEDITVIEW2",
"realModelType" : "PSDEVIEWBASE"
}, {
"codeName" : "EditView",
"logicName" : "数组属性实体编辑视图",
"mOSFilePath" : "psmodeldata$psdataentities/EditView",
"modelTag" : "EDITVIEW",
"name" : "数组属性实体编辑视图",
"rTMOSFilePath" : "psmodeldata$psdataentities/EditView",
"realModelSubType" : "DEEDITVIEW",
"realModelType" : "PSDEVIEWBASE"
}, {
"codeName" : "RedirectView",
"logicName" : "数组属性实体数据重定向视图",
"mOSFilePath" : "psmodeldata$psdataentities/RedirectView",
"modelTag" : "REDIRECTVIEW",
"name" : "数组属性实体数据重定向视图",
"rTMOSFilePath" : "psmodeldata$psdataentities/RedirectView",
"realModelSubType" : "DEREDIRECTVIEW",
"realModelType" : "PSDEVIEWBASE"
}, {
"codeName" : "PickupView",
"logicName" : "数组属性实体数据选择视图",
"mOSFilePath" : "psmodeldata$psdataentities/PickupView",
"modelTag" : "PICKUPVIEW",
"name" : "数组属性实体数据选择视图",
"rTMOSFilePath" : "psmodeldata$psdataentities/PickupView",
"realModelSubType" : "DEPICKUPVIEW",
"realModelType" : "PSDEVIEWBASE"
}, {
"codeName" : "Main",
"logicName" : "主编辑表单",
"mOSFilePath" : "psmodeldata$psdataentities/Main",
"modelTag2" : "0",
"name" : "主编辑表单",
"rTMOSFilePath" : "psmodeldata$psdataentities/Main",
"realModelSubType" : "EDITFORM",
"realModelType" : "PSDEFORM"
} ],
"codeName" : "IBIZSample0022",
"dEType" : 1,
"dSLink" : "DEFAULT",
"dataAccCtrlArch" : 1,
"dataAccCtrlMode" : 1,
"dataChangeLogMode" : 0,
"dataImpExpMode" : 3,
"getDefaultPSDEDataQuery" : {
"modelref" : true,
"id" : "Default"
},
"getDefaultPSDEDataSet" : {
"modelref" : true,
"id" : "Default"
},
"getDefaultPSDEFilterDTO" : {
"modelref" : true,
"id" : "IBIZSample0022FilterDTO"
},
"getDefaultPSDEMethodDTO" : {
"modelref" : true,
"id" : "IBIZSample0022DTO"
},
"dynaInstMode" : 0,
"dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZSample0022.json",
"enableActions" : 7,
"enableUIActions" : 15,
"enableViewLevel" : 0,
"extendMode" : 0,
"getKeyPSDEField" : {
"name" : "IBIZSAMPLE0022ID",
"codeName" : "IBIZSample0022Id"
},
"getLNPSLanguageRes" : {
"defaultContent" : "数组属性",
"lanResTag" : "DE.LNAME.IBIZSAMPLE0022",
"lanResType" : "DE.LNAME",
"name" : "实体逻辑名称(DE.LNAME.*)[IBIZSAMPLE0022]",
"refFlag" : true
},
"logicName" : "数组属性",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022",
"getMajorPSDEField" : {
"name" : "IBIZSAMPLE0022NAME",
"codeName" : "IBIZSample0022Name"
},
"memo" : "演示数组属性相关",
"name" : "IBIZSAMPLE0022",
"getPSSystemModule" : {
"modelref" : true,
"path" : "PSMODULES/Sample.json"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022",
"saaSMode" : 0,
"serviceAPIMode" : 0,
"serviceCodeName" : "IBIZSample0022",
"storageMode" : 1,
"systemTag" : "DemoSys",
"tableName" : "T_IBIZSAMPLE0022",
"enableAPIStorage" : false,
"enableCreate" : true,
"enableDataVer" : false,
"enableEntityCache" : false,
"enableModify" : true,
"enableMultiDS" : false,
"enableMultiForm" : false,
"enableMultiStorage" : false,
"enableNoSQLStorage" : false,
"enableRemove" : true,
"enableSQLStorage" : true,
"logicValid" : false,
"subSysAsCloud" : false
}
\ No newline at end of file
{
"actionMode" : "CHECKKEY",
"actionType" : "BUILTIN",
"codeName" : "CheckKey",
"dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZSample0022/PSDEACTIONS/CheckKey.json",
"logicName" : "CheckKey",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdeactions/CheckKey",
"name" : "CheckKey",
"getPSDEActionInput" : {
"name" : "CheckKeyInput",
"getPSDEMethodDTO" : {
"modelref" : true,
"id" : "IBIZSample0022DTO"
},
"type" : "DTO"
},
"getPSDEActionReturn" : {
"name" : "CheckKeyResult",
"stdDataType" : 9,
"type" : "SIMPLE"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdeactions/CheckKey",
"builtinAction" : true
}
\ No newline at end of file
{
"actionMode" : "CREATE",
"actionType" : "BUILTIN",
"codeName" : "Create",
"dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZSample0022/PSDEACTIONS/Create.json",
"logicName" : "Create",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdeactions/Create",
"name" : "Create",
"orderValue" : 1,
"getPSDEActionInput" : {
"name" : "CreateInput",
"getPSDEMethodDTO" : {
"modelref" : true,
"id" : "IBIZSample0022DTO"
},
"type" : "DTO",
"output" : true
},
"getPSDEActionReturn" : {
"name" : "CreateResult",
"type" : "VOID"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdeactions/Create",
"builtinAction" : true
}
\ No newline at end of file
{
"actionMode" : "READ",
"actionType" : "BUILTIN",
"codeName" : "Get",
"dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZSample0022/PSDEACTIONS/Get.json",
"logicName" : "Get",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdeactions/Get",
"name" : "Get",
"orderValue" : 31,
"getPSDEActionInput" : {
"getKeyPSDEField" : {
"name" : "IBIZSAMPLE0022ID",
"codeName" : "IBIZSample0022Id"
},
"name" : "GetInput",
"type" : "KEYFIELD"
},
"getPSDEActionReturn" : {
"name" : "GetResult",
"getPSDEMethodDTO" : {
"modelref" : true,
"id" : "IBIZSample0022DTO"
},
"type" : "DTO"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdeactions/Get",
"builtinAction" : true
}
\ No newline at end of file
{
"actionMode" : "GETDRAFT",
"actionType" : "BUILTIN",
"codeName" : "GetDraft",
"dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZSample0022/PSDEACTIONS/GetDraft.json",
"logicName" : "GetDraft",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdeactions/GetDraft",
"name" : "GetDraft",
"orderValue" : 41,
"getPSDEActionInput" : {
"name" : "GetDraftInput",
"getPSDEMethodDTO" : {
"modelref" : true,
"id" : "IBIZSample0022DTO"
},
"type" : "DTO"
},
"getPSDEActionReturn" : {
"name" : "GetDraftResult",
"getPSDEMethodDTO" : {
"modelref" : true,
"id" : "IBIZSample0022DTO"
},
"type" : "DTO"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdeactions/GetDraft",
"builtinAction" : true
}
\ No newline at end of file
{
"actionMode" : "DELETE",
"actionType" : "BUILTIN",
"batchActionMode" : 1,
"codeName" : "Remove",
"dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZSample0022/PSDEACTIONS/Remove.json",
"logicName" : "Remove",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdeactions/Remove",
"name" : "Remove",
"orderValue" : 21,
"getPSDEActionInput" : {
"getKeyPSDEField" : {
"name" : "IBIZSAMPLE0022ID",
"codeName" : "IBIZSample0022Id"
},
"name" : "RemoveInput",
"type" : "KEYFIELDS"
},
"getPSDEActionReturn" : {
"name" : "RemoveResult",
"type" : "VOID"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdeactions/Remove",
"batchAction" : true,
"builtinAction" : true
}
\ No newline at end of file
{
"actionMode" : "UNKNOWN",
"actionType" : "BUILTIN",
"codeName" : "Save",
"dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZSample0022/PSDEACTIONS/Save.json",
"logicName" : "Save",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdeactions/Save",
"name" : "Save",
"getPSDEActionInput" : {
"name" : "SaveInput",
"getPSDEMethodDTO" : {
"modelref" : true,
"id" : "IBIZSample0022DTO"
},
"type" : "DTO"
},
"getPSDEActionReturn" : {
"name" : "SaveResult",
"type" : "VOID"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdeactions/Save",
"builtinAction" : true
}
\ No newline at end of file
{
"actionMode" : "UPDATE",
"actionType" : "BUILTIN",
"codeName" : "Update",
"dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZSample0022/PSDEACTIONS/Update.json",
"logicName" : "Update",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdeactions/Update",
"name" : "Update",
"orderValue" : 11,
"getPSDEActionInput" : {
"name" : "UpdateInput",
"getPSDEMethodDTO" : {
"modelref" : true,
"id" : "IBIZSample0022DTO"
},
"type" : "DTO",
"output" : true
},
"getPSDEActionReturn" : {
"name" : "UpdateResult",
"type" : "VOID"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdeactions/Update",
"builtinAction" : true
}
\ No newline at end of file
{
"dBType" : "MYSQL5",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdedataqueries/DEFAULT/psdedqcodes/MYSQL5",
"name" : "MySQL5",
"getPSDEDataQueryCodeExps" : [ {
"expression" : "t1.`BIGINTARRAY`",
"name" : "BIGINTARRAY"
}, {
"expression" : "t1.`CREATEDATE`",
"name" : "CREATEDATE"
}, {
"expression" : "t1.`CREATEMAN`",
"name" : "CREATEMAN"
}, {
"expression" : "t1.`DECIMALARRAY`",
"name" : "DECIMALARRAY"
}, {
"expression" : "t1.`FLOATARRAY`",
"name" : "FLOATARRAY"
}, {
"expression" : "t1.`IBIZSAMPLE0022ID`",
"name" : "IBIZSAMPLE0022ID"
}, {
"expression" : "t1.`IBIZSAMPLE0022NAME`",
"name" : "IBIZSAMPLE0022NAME"
}, {
"expression" : "t1.`INTARRAY`",
"name" : "INTARRAY"
}, {
"expression" : "t1.`TEXTARRAY`",
"name" : "TEXTARRAY"
}, {
"expression" : "t1.`UPDATEDATE`",
"name" : "UPDATEDATE"
}, {
"expression" : "t1.`UPDATEMAN`",
"name" : "UPDATEMAN"
} ],
"queryCode" : "SELECT\nt1.`BIGINTARRAY`,\nt1.`CREATEDATE`,\nt1.`CREATEMAN`,\nt1.`DECIMALARRAY`,\nt1.`FLOATARRAY`,\nt1.`IBIZSAMPLE0022ID`,\nt1.`IBIZSAMPLE0022NAME`,\nt1.`INTARRAY`,\nt1.`TEXTARRAY`,\nt1.`UPDATEDATE`,\nt1.`UPDATEMAN`\nFROM `T_IBIZSAMPLE0022` t1 \n",
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdedataqueries/DEFAULT/psdedqcodes/MYSQL5",
"id" : "PSMODULES/Sample/PSDATAENTITIES/IBIZSample0022/PSDEDATAQUERIES/Default/PSDEDQCODES/MYSQL5.json"
}
\ No newline at end of file
{
"dBType" : "MYSQL5",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdedataqueries/VIEW/psdedqcodes/MYSQL5",
"name" : "MySQL5",
"getPSDEDataQueryCodeExps" : [ {
"expression" : "t1.`BIGINTARRAY`",
"name" : "BIGINTARRAY"
}, {
"expression" : "t1.`CREATEDATE`",
"name" : "CREATEDATE"
}, {
"expression" : "t1.`CREATEMAN`",
"name" : "CREATEMAN"
}, {
"expression" : "t1.`DECIMALARRAY`",
"name" : "DECIMALARRAY"
}, {
"expression" : "t1.`FLOATARRAY`",
"name" : "FLOATARRAY"
}, {
"expression" : "t1.`IBIZSAMPLE0022ID`",
"name" : "IBIZSAMPLE0022ID"
}, {
"expression" : "t1.`IBIZSAMPLE0022NAME`",
"name" : "IBIZSAMPLE0022NAME"
}, {
"expression" : "t1.`INTARRAY`",
"name" : "INTARRAY"
}, {
"expression" : "t1.`TEXTARRAY`",
"name" : "TEXTARRAY"
}, {
"expression" : "t1.`UPDATEDATE`",
"name" : "UPDATEDATE"
}, {
"expression" : "t1.`UPDATEMAN`",
"name" : "UPDATEMAN"
} ],
"queryCode" : "SELECT\nt1.`BIGINTARRAY`,\nt1.`CREATEDATE`,\nt1.`CREATEMAN`,\nt1.`DECIMALARRAY`,\nt1.`FLOATARRAY`,\nt1.`IBIZSAMPLE0022ID`,\nt1.`IBIZSAMPLE0022NAME`,\nt1.`INTARRAY`,\nt1.`TEXTARRAY`,\nt1.`UPDATEDATE`,\nt1.`UPDATEMAN`\nFROM `T_IBIZSAMPLE0022` t1 \n",
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdedataqueries/VIEW/psdedqcodes/MYSQL5",
"id" : "PSMODULES/Sample/PSDATAENTITIES/IBIZSample0022/PSDEDATAQUERIES/View/PSDEDQCODES/MYSQL5.json"
}
\ No newline at end of file
{
"getAllPSDEACModes" : [ {
"codeName" : "Default",
"logicName" : "DEFAULT",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdeacmodes/DEFAULT",
"name" : "DEFAULT",
"getPSDEACModeDataItems" : [ {
"dataType" : 25,
"name" : "value"
}, {
"dataType" : 25,
"name" : "text"
} ],
"pagingSize" : 50,
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdeacmodes/DEFAULT",
"defaultMode" : true,
"enablePagingBar" : false,
"id" : "PSMODULES/Sample/PSDATAENTITIES/IBIZSample0023/PSDEACMODES/Default.json"
} ],
"getAllPSDEActions" : [ {
"actionMode" : "CREATE",
"actionType" : "BUILTIN",
"codeName" : "Create",
"dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZSample0023/PSDEACTIONS/Create.json",
"logicName" : "Create",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdeactions/Create",
"name" : "Create",
"orderValue" : 1,
"getPSDEActionInput" : {
"name" : "CreateInput",
"getPSDEMethodDTO" : {
"modelref" : true,
"id" : "IBIZSample0023DTO"
},
"type" : "DTO",
"output" : true
},
"getPSDEActionReturn" : {
"name" : "CreateResult",
"type" : "VOID"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdeactions/Create",
"builtinAction" : true
}, {
"actionMode" : "UPDATE",
"actionType" : "BUILTIN",
"codeName" : "Update",
"dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZSample0023/PSDEACTIONS/Update.json",
"logicName" : "Update",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdeactions/Update",
"name" : "Update",
"orderValue" : 11,
"getPSDEActionInput" : {
"name" : "UpdateInput",
"getPSDEMethodDTO" : {
"modelref" : true,
"id" : "IBIZSample0023DTO"
},
"type" : "DTO",
"output" : true
},
"getPSDEActionReturn" : {
"name" : "UpdateResult",
"type" : "VOID"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdeactions/Update",
"builtinAction" : true
}, {
"actionMode" : "DELETE",
"actionType" : "BUILTIN",
"batchActionMode" : 1,
"codeName" : "Remove",
"dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZSample0023/PSDEACTIONS/Remove.json",
"logicName" : "Remove",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdeactions/Remove",
"name" : "Remove",
"orderValue" : 21,
"getPSDEActionInput" : {
"getKeyPSDEField" : {
"name" : "IBIZSAMPLE0023ID",
"codeName" : "IBIZSample0023Id"
},
"name" : "RemoveInput",
"type" : "KEYFIELDS"
},
"getPSDEActionReturn" : {
"name" : "RemoveResult",
"type" : "VOID"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdeactions/Remove",
"batchAction" : true,
"builtinAction" : true
}, {
"actionMode" : "READ",
"actionType" : "BUILTIN",
"codeName" : "Get",
"dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZSample0023/PSDEACTIONS/Get.json",
"logicName" : "Get",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdeactions/Get",
"name" : "Get",
"orderValue" : 31,
"getPSDEActionInput" : {
"getKeyPSDEField" : {
"name" : "IBIZSAMPLE0023ID",
"codeName" : "IBIZSample0023Id"
},
"name" : "GetInput",
"type" : "KEYFIELD"
},
"getPSDEActionReturn" : {
"name" : "GetResult",
"getPSDEMethodDTO" : {
"modelref" : true,
"id" : "IBIZSample0023DTO"
},
"type" : "DTO"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdeactions/Get",
"builtinAction" : true
}, {
"actionMode" : "GETDRAFT",
"actionType" : "BUILTIN",
"codeName" : "GetDraft",
"dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZSample0023/PSDEACTIONS/GetDraft.json",
"logicName" : "GetDraft",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdeactions/GetDraft",
"name" : "GetDraft",
"orderValue" : 41,
"getPSDEActionInput" : {
"name" : "GetDraftInput",
"getPSDEMethodDTO" : {
"modelref" : true,
"id" : "IBIZSample0023DTO"
},
"type" : "DTO"
},
"getPSDEActionReturn" : {
"name" : "GetDraftResult",
"getPSDEMethodDTO" : {
"modelref" : true,
"id" : "IBIZSample0023DTO"
},
"type" : "DTO"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdeactions/GetDraft",
"builtinAction" : true
}, {
"actionMode" : "CHECKKEY",
"actionType" : "BUILTIN",
"codeName" : "CheckKey",
"dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZSample0023/PSDEACTIONS/CheckKey.json",
"logicName" : "CheckKey",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdeactions/CheckKey",
"name" : "CheckKey",
"getPSDEActionInput" : {
"name" : "CheckKeyInput",
"getPSDEMethodDTO" : {
"modelref" : true,
"id" : "IBIZSample0023DTO"
},
"type" : "DTO"
},
"getPSDEActionReturn" : {
"name" : "CheckKeyResult",
"stdDataType" : 9,
"type" : "SIMPLE"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdeactions/CheckKey",
"builtinAction" : true
}, {
"actionMode" : "UNKNOWN",
"actionType" : "BUILTIN",
"codeName" : "Save",
"dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZSample0023/PSDEACTIONS/Save.json",
"logicName" : "Save",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdeactions/Save",
"name" : "Save",
"getPSDEActionInput" : {
"name" : "SaveInput",
"getPSDEMethodDTO" : {
"modelref" : true,
"id" : "IBIZSample0023DTO"
},
"type" : "DTO"
},
"getPSDEActionReturn" : {
"name" : "SaveResult",
"type" : "VOID"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdeactions/Save",
"builtinAction" : true
} ],
"getAllPSDEDBConfigs" : [ {
"dBType" : "MYSQL5",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdedbcfgs/MYSQL5",
"name" : "MYSQL5",
"objNameCase" : "DEFAULT",
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdedbcfgs/MYSQL5",
"standardTableName" : "`T_IBIZSAMPLE0023`",
"tableName" : "T_IBIZSAMPLE0023",
"valid" : true
} ],
"getAllPSDEDataQueries" : [ {
"getAllPSDEDataQueryCodes" : [ {
"modelref" : true,
"path" : "PSMODULES/Sample/PSDATAENTITIES/IBIZSample0023/PSDEDATAQUERIES/Default/PSDEDQCODES/MYSQL5.json"
} ],
"codeName" : "Default",
"logicName" : "数据查询",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdedataqueries/DEFAULT",
"name" : "DEFAULT",
"getPSDEDQMain" : {
"getJoinPSDataEntity" : {
"modelref" : true,
"path" : "PSMODULES/Sample/PSDATAENTITIES/IBIZSample0023.json"
},
"joinType" : "MAIN",
"name" : "IBIZSAMPLE0023"
},
"getPSDEDataQueryInput" : {
"name" : "DefaultInput",
"getPSDEFilterDTO" : {
"modelref" : true,
"id" : "IBIZSample0023FilterDTO"
},
"type" : "DTO"
},
"getPSDEDataQueryReturn" : {
"name" : "DefaultResult",
"getPSDEMethodDTO" : {
"modelref" : true,
"id" : "IBIZSample0023DTO"
},
"type" : "DTOS"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdedataqueries/DEFAULT",
"defaultMode" : true
}, {
"getAllPSDEDataQueryCodes" : [ {
"modelref" : true,
"path" : "PSMODULES/Sample/PSDATAENTITIES/IBIZSample0023/PSDEDATAQUERIES/View/PSDEDQCODES/MYSQL5.json"
} ],
"codeName" : "View",
"logicName" : "默认(全部数据)",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdedataqueries/VIEW",
"name" : "VIEW",
"getPSDEDQMain" : {
"getJoinPSDataEntity" : {
"modelref" : true,
"path" : "PSMODULES/Sample/PSDATAENTITIES/IBIZSample0023.json"
},
"joinType" : "MAIN",
"name" : "IBIZSAMPLE0023"
},
"getPSDEDataQueryInput" : {
"name" : "ViewInput",
"getPSDEFilterDTO" : {
"modelref" : true,
"id" : "IBIZSample0023FilterDTO"
},
"type" : "DTO"
},
"getPSDEDataQueryReturn" : {
"name" : "ViewResult",
"getPSDEMethodDTO" : {
"modelref" : true,
"id" : "IBIZSample0023DTO"
},
"type" : "DTOS"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdedataqueries/VIEW",
"viewLevel" : 0
} ],
"getAllPSDEDataSets" : [ {
"codeName" : "Default",
"logicName" : "数据集",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdedatasets/DEFAULT",
"name" : "DEFAULT",
"getPSDEDataQueries" : [ {
"modelref" : true,
"id" : "Default"
} ],
"getPSDEDataSetInput" : {
"name" : "DefaultInput",
"getPSDEFilterDTO" : {
"modelref" : true,
"id" : "IBIZSample0023FilterDTO"
},
"type" : "DTO"
},
"getPSDEDataSetReturn" : {
"name" : "DefaultResult",
"getPSDEMethodDTO" : {
"modelref" : true,
"id" : "IBIZSample0023DTO"
},
"type" : "PAGE"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdedatasets/DEFAULT",
"defaultMode" : true,
"enableBackend" : true,
"enableFront" : true
} ],
"getAllPSDEFields" : [ {
"getAllPSDEFDTColumns" : [ {
"columnName" : "IBIZSAMPLE0023ID",
"dBType" : "MYSQL5",
"name" : "IBIZSAMPLE0023ID",
"queryCodeExp" : "t1.`IBIZSAMPLE0023ID`",
"standardColumnName" : "`IBIZSAMPLE0023ID`"
} ],
"getAllPSDEFSearchModes" : [ {
"codeName" : "N_IBIZSAMPLE0023ID_EQ",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdefields/IBIZSAMPLE0023ID/psdefsfitems/N_IBIZSAMPLE0023ID_EQ",
"name" : "N_IBIZSAMPLE0023ID_EQ",
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdefields/IBIZSAMPLE0023ID/psdefsearchmodes/N_IBIZSAMPLE0023ID_EQ",
"stdDataType" : 25,
"valueOP" : "EQ"
} ],
"getAllPSDEFUIModes" : [ {
"codeName" : "Default",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdefields/IBIZSAMPLE0023ID/psdefuimodes/Default",
"name" : "[IBIZSAMPLE0023ID][头数据标识]",
"getPSDEFFormItem" : {
"getCapPSLanguageRes" : {
"defaultContent" : "头数据标识",
"lanResTag" : "DEF.LNAME.IBIZSAMPLE0023ID",
"lanResType" : "DEF.LNAME",
"name" : "属性逻辑名称(DEF.LNAME.*)[IBIZSAMPLE0023ID]",
"refFlag" : true
},
"codeName" : "Default",
"editorType" : "SPAN",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdefields/IBIZSAMPLE0023ID/psdefformitems/Default",
"name" : "[IBIZSAMPLE0023ID][头数据标识]",
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdefields/IBIZSAMPLE0023ID/psdefformitems/Default",
"stringLength" : 100,
"uIMode" : "DEFAULT",
"allowEmpty" : false
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdefields/IBIZSAMPLE0023ID/psdefuimodes/Default",
"type" : "DEFAULT"
}, {
"codeName" : "MobileDefault",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdefields/IBIZSAMPLE0023ID/psdefuimodes/MobileDefault",
"name" : "[IBIZSAMPLE0023ID][头数据标识]移动端默认",
"getPSDEFFormItem" : {
"getCapPSLanguageRes" : {
"defaultContent" : "头数据标识",
"lanResTag" : "DEF.LNAME.IBIZSAMPLE0023ID",
"lanResType" : "DEF.LNAME",
"name" : "属性逻辑名称(DEF.LNAME.*)[IBIZSAMPLE0023ID]",
"refFlag" : true
},
"codeName" : "MobileDefault",
"editorType" : "SPAN",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdefields/IBIZSAMPLE0023ID/psdefformitems/MobileDefault",
"name" : "[IBIZSAMPLE0023ID][头数据标识]移动端默认",
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdefields/IBIZSAMPLE0023ID/psdefformitems/MobileDefault",
"stringLength" : 100,
"uIMode" : "MOBILEDEFAULT",
"allowEmpty" : false,
"mobileMode" : true
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdefields/IBIZSAMPLE0023ID/psdefuimodes/MobileDefault",
"type" : "MOBILEDEFAULT",
"mobileMode" : true
} ],
"getAllPSDEFValueRules" : [ {
"codeName" : "Default",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdefields/IBIZSAMPLE0023ID/psdefvaluerules/Default",
"name" : "默认规则",
"getPSDEFVRGroupCondition" : {
"condOp" : "AND",
"condType" : "GROUP",
"name" : "默认组",
"getPSDEFVRConditions" : [ {
"condType" : "STRINGLENGTH",
"dEFName" : "IBIZSAMPLE0023ID",
"maxValue" : 100,
"name" : "默认字符串长度",
"ruleInfo" : "内容长度必须小于等于[100]",
"includeMaxValue" : true,
"includeMinValue" : false,
"keyCond" : true
} ],
"ruleInfo" : "内容长度必须小于等于[100]"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdefields/IBIZSAMPLE0023ID/psdefvaluerules/Default",
"ruleInfo" : "内容长度必须小于等于[100]",
"checkDefault" : true,
"defaultMode" : true,
"enableBackend" : true,
"enableFront" : true
} ],
"codeName" : "IBIZSample0023Id",
"dEFType" : 1,
"dataType" : "GUID",
"importOrder" : 1000,
"getLNPSLanguageRes" : {
"defaultContent" : "头数据标识",
"lanResTag" : "DEF.LNAME.IBIZSAMPLE0023ID",
"lanResType" : "DEF.LNAME",
"name" : "属性逻辑名称(DEF.LNAME.*)[IBIZSAMPLE0023ID]",
"refFlag" : true
},
"length" : 100,
"logicName" : "头数据标识",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdefields/IBIZSAMPLE0023ID",
"name" : "IBIZSAMPLE0023ID",
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdefields/IBIZSAMPLE0023ID",
"serviceCodeName" : "IBIZSample0023Id",
"stdDataType" : 25,
"stringLength" : 100,
"valueFormat" : "%1$s",
"allowEmpty" : false,
"keyDEField" : true,
"pasteReset" : true
}, {
"getAllPSDEFDTColumns" : [ {
"columnName" : "UPDATEDATE",
"dBType" : "MYSQL5",
"name" : "UPDATEDATE",
"queryCodeExp" : "t1.`UPDATEDATE`",
"standardColumnName" : "`UPDATEDATE`"
} ],
"getAllPSDEFUIModes" : [ {
"codeName" : "Default",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdefields/UPDATEDATE/psdefuimodes/Default",
"name" : "[UPDATEDATE][更新时间]",
"getPSDEFFormItem" : {
"getCapPSLanguageRes" : {
"defaultContent" : "更新时间",
"lanResTag" : "DEF.LNAME.UPDATEDATE",
"lanResType" : "DEF.LNAME",
"mOSFilePath" : "pslanguageres/Auto1074",
"name" : "属性逻辑名称(DEF.LNAME.*)[UPDATEDATE]",
"rTMOSFilePath" : "pslanguageres/Auto1074",
"refFlag" : true
},
"codeName" : "Default",
"editorType" : "SPAN",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdefields/UPDATEDATE/psdefformitems/Default",
"name" : "[UPDATEDATE][更新时间]",
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdefields/UPDATEDATE/psdefformitems/Default",
"uIMode" : "DEFAULT",
"valueFormat" : "%1$tY-%1$tm-%1$td %1$tH:%1$tM:%1$tS",
"allowEmpty" : false
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdefields/UPDATEDATE/psdefuimodes/Default",
"type" : "DEFAULT"
}, {
"codeName" : "MobileDefault",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdefields/UPDATEDATE/psdefuimodes/MobileDefault",
"name" : "[UPDATEDATE][更新时间]移动端默认",
"getPSDEFFormItem" : {
"getCapPSLanguageRes" : {
"defaultContent" : "更新时间",
"lanResTag" : "DEF.LNAME.UPDATEDATE",
"lanResType" : "DEF.LNAME",
"mOSFilePath" : "pslanguageres/Auto1074",
"name" : "属性逻辑名称(DEF.LNAME.*)[UPDATEDATE]",
"rTMOSFilePath" : "pslanguageres/Auto1074",
"refFlag" : true
},
"codeName" : "MobileDefault",
"editorType" : "SPAN",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdefields/UPDATEDATE/psdefformitems/MobileDefault",
"name" : "[UPDATEDATE][更新时间]移动端默认",
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdefields/UPDATEDATE/psdefformitems/MobileDefault",
"uIMode" : "MOBILEDEFAULT",
"valueFormat" : "%1$tY-%1$tm-%1$td %1$tH:%1$tM:%1$tS",
"allowEmpty" : false,
"mobileMode" : true
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdefields/UPDATEDATE/psdefuimodes/MobileDefault",
"type" : "MOBILEDEFAULT",
"mobileMode" : true
} ],
"getAllPSDEFValueRules" : [ {
"codeName" : "Default",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdefields/UPDATEDATE/psdefvaluerules/Default",
"name" : "默认规则",
"getPSDEFVRGroupCondition" : {
"condOp" : "AND",
"condType" : "GROUP",
"name" : "默认组"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdefields/UPDATEDATE/psdefvaluerules/Default",
"ruleInfo" : "默认规则",
"checkDefault" : true,
"defaultMode" : true,
"enableBackend" : true,
"enableFront" : true
} ],
"codeName" : "UpdateDate",
"dEFType" : 1,
"dataType" : "DATETIME",
"importOrder" : 1000,
"getLNPSLanguageRes" : {
"defaultContent" : "更新时间",
"lanResTag" : "DEF.LNAME.UPDATEDATE",
"lanResType" : "DEF.LNAME",
"mOSFilePath" : "pslanguageres/Auto1074",
"name" : "属性逻辑名称(DEF.LNAME.*)[UPDATEDATE]",
"rTMOSFilePath" : "pslanguageres/Auto1074",
"refFlag" : true
},
"length" : 8,
"logicName" : "更新时间",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdefields/UPDATEDATE",
"name" : "UPDATEDATE",
"predefinedType" : "UPDATEDATE",
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdefields/UPDATEDATE",
"serviceCodeName" : "UpdateDate",
"stdDataType" : 5,
"valueFormat" : "%1$tY-%1$tm-%1$td %1$tH:%1$tM:%1$tS",
"allowEmpty" : false,
"systemReserver" : true
}, {
"getAllPSDEFDTColumns" : [ {
"columnName" : "CREATEMAN",
"dBType" : "MYSQL5",
"name" : "CREATEMAN",
"queryCodeExp" : "t1.`CREATEMAN`",
"standardColumnName" : "`CREATEMAN`"
} ],
"getAllPSDEFUIModes" : [ {
"codeName" : "Default",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdefields/CREATEMAN/psdefuimodes/Default",
"name" : "[CREATEMAN][建立人]",
"getPSDEFFormItem" : {
"getCapPSLanguageRes" : {
"defaultContent" : "建立人",
"lanResTag" : "DEF.LNAME.CREATEMAN",
"lanResType" : "DEF.LNAME",
"mOSFilePath" : "pslanguageres/Auto859",
"name" : "属性逻辑名称(DEF.LNAME.*)[CREATEMAN]",
"rTMOSFilePath" : "pslanguageres/Auto859",
"refFlag" : true
},
"codeName" : "Default",
"editorType" : "SPAN",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdefields/CREATEMAN/psdefformitems/Default",
"name" : "[CREATEMAN][建立人]",
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdefields/CREATEMAN/psdefformitems/Default",
"stringLength" : 60,
"uIMode" : "DEFAULT",
"allowEmpty" : false
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdefields/CREATEMAN/psdefuimodes/Default",
"type" : "DEFAULT"
}, {
"codeName" : "MobileDefault",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdefields/CREATEMAN/psdefuimodes/MobileDefault",
"name" : "[CREATEMAN][建立人]移动端默认",
"getPSDEFFormItem" : {
"getCapPSLanguageRes" : {
"defaultContent" : "建立人",
"lanResTag" : "DEF.LNAME.CREATEMAN",
"lanResType" : "DEF.LNAME",
"mOSFilePath" : "pslanguageres/Auto859",
"name" : "属性逻辑名称(DEF.LNAME.*)[CREATEMAN]",
"rTMOSFilePath" : "pslanguageres/Auto859",
"refFlag" : true
},
"codeName" : "MobileDefault",
"editorType" : "SPAN",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdefields/CREATEMAN/psdefformitems/MobileDefault",
"name" : "[CREATEMAN][建立人]移动端默认",
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdefields/CREATEMAN/psdefformitems/MobileDefault",
"stringLength" : 60,
"uIMode" : "MOBILEDEFAULT",
"allowEmpty" : false,
"mobileMode" : true
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdefields/CREATEMAN/psdefuimodes/MobileDefault",
"type" : "MOBILEDEFAULT",
"mobileMode" : true
} ],
"getAllPSDEFValueRules" : [ {
"codeName" : "Default",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdefields/CREATEMAN/psdefvaluerules/Default",
"name" : "默认规则",
"getPSDEFVRGroupCondition" : {
"condOp" : "AND",
"condType" : "GROUP",
"name" : "默认组",
"getPSDEFVRConditions" : [ {
"condType" : "STRINGLENGTH",
"dEFName" : "CREATEMAN",
"maxValue" : 60,
"name" : "默认字符串长度",
"ruleInfo" : "内容长度必须小于等于[60]",
"includeMaxValue" : true,
"includeMinValue" : false,
"keyCond" : true
} ],
"ruleInfo" : "内容长度必须小于等于[60]"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdefields/CREATEMAN/psdefvaluerules/Default",
"ruleInfo" : "内容长度必须小于等于[60]",
"checkDefault" : true,
"defaultMode" : true,
"enableBackend" : true,
"enableFront" : true
} ],
"codeName" : "CreateMan",
"dEFType" : 1,
"dataType" : "TEXT",
"importOrder" : 1000,
"getLNPSLanguageRes" : {
"defaultContent" : "建立人",
"lanResTag" : "DEF.LNAME.CREATEMAN",
"lanResType" : "DEF.LNAME",
"mOSFilePath" : "pslanguageres/Auto859",
"name" : "属性逻辑名称(DEF.LNAME.*)[CREATEMAN]",
"rTMOSFilePath" : "pslanguageres/Auto859",
"refFlag" : true
},
"length" : 60,
"logicName" : "建立人",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdefields/CREATEMAN",
"name" : "CREATEMAN",
"getPSCodeList" : {
"modelref" : true,
"path" : "PSMODULES/Sample/PSCODELISTS/SysOperator.json"
},
"predefinedType" : "CREATEMAN",
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdefields/CREATEMAN",
"serviceCodeName" : "CreateMan",
"stdDataType" : 25,
"stringLength" : 60,
"valueFormat" : "%1$s",
"allowEmpty" : false,
"systemReserver" : true
}, {
"getAllPSDEFDTColumns" : [ {
"columnName" : "UPDATEMAN",
"dBType" : "MYSQL5",
"name" : "UPDATEMAN",
"queryCodeExp" : "t1.`UPDATEMAN`",
"standardColumnName" : "`UPDATEMAN`"
} ],
"getAllPSDEFUIModes" : [ {
"codeName" : "Default",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdefields/UPDATEMAN/psdefuimodes/Default",
"name" : "[UPDATEMAN][更新人]",
"getPSDEFFormItem" : {
"getCapPSLanguageRes" : {
"defaultContent" : "更新人",
"lanResTag" : "DEF.LNAME.UPDATEMAN",
"lanResType" : "DEF.LNAME",
"mOSFilePath" : "pslanguageres/Auto202",
"name" : "属性逻辑名称(DEF.LNAME.*)[UPDATEMAN]",
"rTMOSFilePath" : "pslanguageres/Auto202",
"refFlag" : true
},
"codeName" : "Default",
"editorType" : "SPAN",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdefields/UPDATEMAN/psdefformitems/Default",
"name" : "[UPDATEMAN][更新人]",
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdefields/UPDATEMAN/psdefformitems/Default",
"stringLength" : 60,
"uIMode" : "DEFAULT",
"allowEmpty" : false
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdefields/UPDATEMAN/psdefuimodes/Default",
"type" : "DEFAULT"
}, {
"codeName" : "MobileDefault",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdefields/UPDATEMAN/psdefuimodes/MobileDefault",
"name" : "[UPDATEMAN][更新人]移动端默认",
"getPSDEFFormItem" : {
"getCapPSLanguageRes" : {
"defaultContent" : "更新人",
"lanResTag" : "DEF.LNAME.UPDATEMAN",
"lanResType" : "DEF.LNAME",
"mOSFilePath" : "pslanguageres/Auto202",
"name" : "属性逻辑名称(DEF.LNAME.*)[UPDATEMAN]",
"rTMOSFilePath" : "pslanguageres/Auto202",
"refFlag" : true
},
"codeName" : "MobileDefault",
"editorType" : "SPAN",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdefields/UPDATEMAN/psdefformitems/MobileDefault",
"name" : "[UPDATEMAN][更新人]移动端默认",
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdefields/UPDATEMAN/psdefformitems/MobileDefault",
"stringLength" : 60,
"uIMode" : "MOBILEDEFAULT",
"allowEmpty" : false,
"mobileMode" : true
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdefields/UPDATEMAN/psdefuimodes/MobileDefault",
"type" : "MOBILEDEFAULT",
"mobileMode" : true
} ],
"getAllPSDEFValueRules" : [ {
"codeName" : "Default",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdefields/UPDATEMAN/psdefvaluerules/Default",
"name" : "默认规则",
"getPSDEFVRGroupCondition" : {
"condOp" : "AND",
"condType" : "GROUP",
"name" : "默认组",
"getPSDEFVRConditions" : [ {
"condType" : "STRINGLENGTH",
"dEFName" : "UPDATEMAN",
"maxValue" : 60,
"name" : "默认字符串长度",
"ruleInfo" : "内容长度必须小于等于[60]",
"includeMaxValue" : true,
"includeMinValue" : false,
"keyCond" : true
} ],
"ruleInfo" : "内容长度必须小于等于[60]"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdefields/UPDATEMAN/psdefvaluerules/Default",
"ruleInfo" : "内容长度必须小于等于[60]",
"checkDefault" : true,
"defaultMode" : true,
"enableBackend" : true,
"enableFront" : true
} ],
"codeName" : "UpdateMan",
"dEFType" : 1,
"dataType" : "TEXT",
"importOrder" : 1000,
"getLNPSLanguageRes" : {
"defaultContent" : "更新人",
"lanResTag" : "DEF.LNAME.UPDATEMAN",
"lanResType" : "DEF.LNAME",
"mOSFilePath" : "pslanguageres/Auto202",
"name" : "属性逻辑名称(DEF.LNAME.*)[UPDATEMAN]",
"rTMOSFilePath" : "pslanguageres/Auto202",
"refFlag" : true
},
"length" : 60,
"logicName" : "更新人",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdefields/UPDATEMAN",
"name" : "UPDATEMAN",
"getPSCodeList" : {
"modelref" : true,
"path" : "PSMODULES/Sample/PSCODELISTS/SysOperator.json"
},
"predefinedType" : "UPDATEMAN",
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdefields/UPDATEMAN",
"serviceCodeName" : "UpdateMan",
"stdDataType" : 25,
"stringLength" : 60,
"valueFormat" : "%1$s",
"allowEmpty" : false,
"systemReserver" : true
}, {
"getAllPSDEFDTColumns" : [ {
"columnName" : "CREATEDATE",
"dBType" : "MYSQL5",
"name" : "CREATEDATE",
"queryCodeExp" : "t1.`CREATEDATE`",
"standardColumnName" : "`CREATEDATE`"
} ],
"getAllPSDEFUIModes" : [ {
"codeName" : "Default",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdefields/CREATEDATE/psdefuimodes/Default",
"name" : "[CREATEDATE][建立时间]",
"getPSDEFFormItem" : {
"getCapPSLanguageRes" : {
"defaultContent" : "建立时间",
"lanResTag" : "DEF.LNAME.CREATEDATE",
"lanResType" : "DEF.LNAME",
"mOSFilePath" : "pslanguageres/Auto964",
"name" : "属性逻辑名称(DEF.LNAME.*)[CREATEDATE]",
"rTMOSFilePath" : "pslanguageres/Auto964",
"refFlag" : true
},
"codeName" : "Default",
"editorType" : "SPAN",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdefields/CREATEDATE/psdefformitems/Default",
"name" : "[CREATEDATE][建立时间]",
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdefields/CREATEDATE/psdefformitems/Default",
"uIMode" : "DEFAULT",
"valueFormat" : "%1$tY-%1$tm-%1$td %1$tH:%1$tM:%1$tS",
"allowEmpty" : false
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdefields/CREATEDATE/psdefuimodes/Default",
"type" : "DEFAULT"
}, {
"codeName" : "MobileDefault",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdefields/CREATEDATE/psdefuimodes/MobileDefault",
"name" : "[CREATEDATE][建立时间]移动端默认",
"getPSDEFFormItem" : {
"getCapPSLanguageRes" : {
"defaultContent" : "建立时间",
"lanResTag" : "DEF.LNAME.CREATEDATE",
"lanResType" : "DEF.LNAME",
"mOSFilePath" : "pslanguageres/Auto964",
"name" : "属性逻辑名称(DEF.LNAME.*)[CREATEDATE]",
"rTMOSFilePath" : "pslanguageres/Auto964",
"refFlag" : true
},
"codeName" : "MobileDefault",
"editorType" : "SPAN",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdefields/CREATEDATE/psdefformitems/MobileDefault",
"name" : "[CREATEDATE][建立时间]移动端默认",
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdefields/CREATEDATE/psdefformitems/MobileDefault",
"uIMode" : "MOBILEDEFAULT",
"valueFormat" : "%1$tY-%1$tm-%1$td %1$tH:%1$tM:%1$tS",
"allowEmpty" : false,
"mobileMode" : true
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdefields/CREATEDATE/psdefuimodes/MobileDefault",
"type" : "MOBILEDEFAULT",
"mobileMode" : true
} ],
"getAllPSDEFValueRules" : [ {
"codeName" : "Default",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdefields/CREATEDATE/psdefvaluerules/Default",
"name" : "默认规则",
"getPSDEFVRGroupCondition" : {
"condOp" : "AND",
"condType" : "GROUP",
"name" : "默认组"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdefields/CREATEDATE/psdefvaluerules/Default",
"ruleInfo" : "默认规则",
"checkDefault" : true,
"defaultMode" : true,
"enableBackend" : true,
"enableFront" : true
} ],
"codeName" : "CreateDate",
"dEFType" : 1,
"dataType" : "DATETIME",
"importOrder" : 1000,
"getLNPSLanguageRes" : {
"defaultContent" : "建立时间",
"lanResTag" : "DEF.LNAME.CREATEDATE",
"lanResType" : "DEF.LNAME",
"mOSFilePath" : "pslanguageres/Auto964",
"name" : "属性逻辑名称(DEF.LNAME.*)[CREATEDATE]",
"rTMOSFilePath" : "pslanguageres/Auto964",
"refFlag" : true
},
"length" : 8,
"logicName" : "建立时间",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdefields/CREATEDATE",
"name" : "CREATEDATE",
"predefinedType" : "CREATEDATE",
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdefields/CREATEDATE",
"serviceCodeName" : "CreateDate",
"stdDataType" : 5,
"valueFormat" : "%1$tY-%1$tm-%1$td %1$tH:%1$tM:%1$tS",
"allowEmpty" : false,
"systemReserver" : true
}, {
"getAllPSDEFDTColumns" : [ {
"columnName" : "IBIZSAMPLE0023NAME",
"dBType" : "MYSQL5",
"name" : "IBIZSAMPLE0023NAME",
"queryCodeExp" : "t1.`IBIZSAMPLE0023NAME`",
"standardColumnName" : "`IBIZSAMPLE0023NAME`"
} ],
"getAllPSDEFSearchModes" : [ {
"codeName" : "N_IBIZSAMPLE0023NAME_LIKE",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdefields/IBIZSAMPLE0023NAME/psdefsfitems/N_IBIZSAMPLE0023NAME_LIKE",
"name" : "N_IBIZSAMPLE0023NAME_LIKE",
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdefields/IBIZSAMPLE0023NAME/psdefsearchmodes/N_IBIZSAMPLE0023NAME_LIKE",
"stdDataType" : 25,
"valueOP" : "LIKE"
} ],
"getAllPSDEFUIModes" : [ {
"codeName" : "MobileDefault",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdefields/IBIZSAMPLE0023NAME/psdefuimodes/MobileDefault",
"name" : "[IBIZSAMPLE0023NAME][头数据名称]移动端默认",
"getPSDEFFormItem" : {
"getCapPSLanguageRes" : {
"defaultContent" : "头数据名称",
"lanResTag" : "DEF.LNAME.IBIZSAMPLE0023NAME",
"lanResType" : "DEF.LNAME",
"name" : "属性逻辑名称(DEF.LNAME.*)[IBIZSAMPLE0023NAME]",
"refFlag" : true
},
"codeName" : "MobileDefault",
"editorType" : "MOBTEXT",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdefields/IBIZSAMPLE0023NAME/psdefformitems/MobileDefault",
"name" : "[IBIZSAMPLE0023NAME][头数据名称]移动端默认",
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdefields/IBIZSAMPLE0023NAME/psdefformitems/MobileDefault",
"stringLength" : 200,
"uIMode" : "MOBILEDEFAULT",
"mobileMode" : true
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdefields/IBIZSAMPLE0023NAME/psdefuimodes/MobileDefault",
"type" : "MOBILEDEFAULT",
"mobileMode" : true
}, {
"codeName" : "Default",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdefields/IBIZSAMPLE0023NAME/psdefuimodes/Default",
"name" : "[IBIZSAMPLE0023NAME][头数据名称]",
"getPSDEFFormItem" : {
"getCapPSLanguageRes" : {
"defaultContent" : "头数据名称",
"lanResTag" : "DEF.LNAME.IBIZSAMPLE0023NAME",
"lanResType" : "DEF.LNAME",
"name" : "属性逻辑名称(DEF.LNAME.*)[IBIZSAMPLE0023NAME]",
"refFlag" : true
},
"codeName" : "Default",
"editorType" : "TEXTBOX",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdefields/IBIZSAMPLE0023NAME/psdefformitems/Default",
"name" : "[IBIZSAMPLE0023NAME][头数据名称]",
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdefields/IBIZSAMPLE0023NAME/psdefformitems/Default",
"stringLength" : 200,
"uIMode" : "DEFAULT"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdefields/IBIZSAMPLE0023NAME/psdefuimodes/Default",
"type" : "DEFAULT"
} ],
"getAllPSDEFValueRules" : [ {
"codeName" : "Default",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdefields/IBIZSAMPLE0023NAME/psdefvaluerules/Default",
"name" : "默认规则",
"getPSDEFVRGroupCondition" : {
"condOp" : "AND",
"condType" : "GROUP",
"name" : "默认组",
"getPSDEFVRConditions" : [ {
"condType" : "STRINGLENGTH",
"dEFName" : "IBIZSAMPLE0023NAME",
"maxValue" : 200,
"name" : "默认字符串长度",
"ruleInfo" : "内容长度必须小于等于[200]",
"includeMaxValue" : true,
"includeMinValue" : false,
"keyCond" : true
} ],
"ruleInfo" : "内容长度必须小于等于[200]"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdefields/IBIZSAMPLE0023NAME/psdefvaluerules/Default",
"ruleInfo" : "内容长度必须小于等于[200]",
"checkDefault" : true,
"defaultMode" : true,
"enableBackend" : true,
"enableFront" : true
} ],
"codeName" : "IBIZSample0023Name",
"dEFType" : 1,
"dataType" : "TEXT",
"importOrder" : 1000,
"getLNPSLanguageRes" : {
"defaultContent" : "头数据名称",
"lanResTag" : "DEF.LNAME.IBIZSAMPLE0023NAME",
"lanResType" : "DEF.LNAME",
"name" : "属性逻辑名称(DEF.LNAME.*)[IBIZSAMPLE0023NAME]",
"refFlag" : true
},
"length" : 200,
"logicName" : "头数据名称",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdefields/IBIZSAMPLE0023NAME",
"name" : "IBIZSAMPLE0023NAME",
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdefields/IBIZSAMPLE0023NAME",
"serviceCodeName" : "IBIZSample0023Name",
"stdDataType" : 25,
"stringLength" : 200,
"valueFormat" : "%1$s",
"enableQuickSearch" : true,
"majorDEField" : true
} ],
"getAllPSDEMethodDTOs" : [ {
"name" : "IBIZSample0023DTO",
"getPSDEMethodDTOFields" : [ {
"logicName" : "建立时间",
"name" : "CreateDate",
"getPSDEField" : {
"name" : "CREATEDATE",
"codeName" : "CreateDate"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdemethoddtos/IBIZSample0023DTO/psdemethoddtofields/CreateDate",
"sourceType" : "DEFIELD",
"stdDataType" : 5,
"type" : "SIMPLE",
"allowEmpty" : false,
"readOnly" : true
}, {
"logicName" : "建立人",
"name" : "CreateMan",
"getPSDEField" : {
"name" : "CREATEMAN",
"codeName" : "CreateMan"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdemethoddtos/IBIZSample0023DTO/psdemethoddtofields/CreateMan",
"sourceType" : "DEFIELD",
"stdDataType" : 25,
"stringLength" : 60,
"type" : "SIMPLE",
"allowEmpty" : false,
"readOnly" : true
}, {
"logicName" : "头数据标识",
"name" : "IBIZSample0023Id",
"getPSDEField" : {
"name" : "IBIZSAMPLE0023ID",
"codeName" : "IBIZSample0023Id"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdemethoddtos/IBIZSample0023DTO/psdemethoddtofields/IBIZSample0023Id",
"sourceType" : "DEFIELD",
"stdDataType" : 25,
"stringLength" : 100,
"type" : "SIMPLE",
"allowEmpty" : false
}, {
"logicName" : "头数据名称",
"name" : "IBIZSample0023Name",
"getPSDEField" : {
"name" : "IBIZSAMPLE0023NAME",
"codeName" : "IBIZSample0023Name"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdemethoddtos/IBIZSample0023DTO/psdemethoddtofields/IBIZSample0023Name",
"sourceType" : "DEFIELD",
"stdDataType" : 25,
"stringLength" : 200,
"type" : "SIMPLE"
}, {
"logicName" : "更新时间",
"name" : "UpdateDate",
"getPSDEField" : {
"name" : "UPDATEDATE",
"codeName" : "UpdateDate"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdemethoddtos/IBIZSample0023DTO/psdemethoddtofields/UpdateDate",
"sourceType" : "DEFIELD",
"stdDataType" : 5,
"type" : "SIMPLE",
"allowEmpty" : false,
"readOnly" : true
}, {
"logicName" : "更新人",
"name" : "UpdateMan",
"getPSDEField" : {
"name" : "UPDATEMAN",
"codeName" : "UpdateMan"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdemethoddtos/IBIZSample0023DTO/psdemethoddtofields/UpdateMan",
"sourceType" : "DEFIELD",
"stdDataType" : 25,
"stringLength" : 60,
"type" : "SIMPLE",
"allowEmpty" : false,
"readOnly" : true
} ],
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdemethoddtos/IBIZSample0023DTO",
"sourceType" : "DE",
"type" : "DEFAULT",
"defaultMode" : true
}, {
"name" : "IBIZSample0023FilterDTO",
"getPSDEFilterDTOFields" : [ {
"logicName" : "头数据标识",
"name" : "N_IBIZSAMPLE0023ID_EQ",
"getPSDEFSearchMode" : {
"modelref" : true,
"id" : "N_IBIZSAMPLE0023ID_EQ"
},
"getPSDEField" : {
"name" : "IBIZSAMPLE0023ID",
"codeName" : "IBIZSample0023Id"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdemethoddtos/IBIZSample0023FilterDTO/psdemethoddtofields/N_IBIZSAMPLE0023ID_EQ",
"sourceType" : "DEFSEARCHMODE",
"stdDataType" : 25,
"stringLength" : 100,
"type" : "SIMPLE"
}, {
"logicName" : "头数据名称",
"name" : "N_IBIZSAMPLE0023NAME_LIKE",
"getPSDEFSearchMode" : {
"modelref" : true,
"id" : "N_IBIZSAMPLE0023NAME_LIKE"
},
"getPSDEField" : {
"name" : "IBIZSAMPLE0023NAME",
"codeName" : "IBIZSample0023Name"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdemethoddtos/IBIZSample0023FilterDTO/psdemethoddtofields/N_IBIZSAMPLE0023NAME_LIKE",
"sourceType" : "DEFSEARCHMODE",
"stdDataType" : 25,
"stringLength" : 200,
"type" : "SIMPLE"
} ],
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdemethoddtos/IBIZSample0023FilterDTO",
"sourceType" : "DE",
"type" : "DEFILTER",
"defaultMode" : true
} ],
"getAllPSDEOPPrivs" : [ {
"logicName" : "建立",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdeopprivs/CREATE",
"name" : "CREATE",
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdeopprivs/CREATE"
}, {
"logicName" : "删除",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdeopprivs/DELETE",
"name" : "DELETE",
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdeopprivs/DELETE"
}, {
"logicName" : "读取",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdeopprivs/READ",
"name" : "READ",
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdeopprivs/READ"
}, {
"logicName" : "更新",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdeopprivs/UPDATE",
"name" : "UPDATE",
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdeopprivs/UPDATE"
} ],
"getAllPSModelDatas" : [ {
"codeName" : "EditView2",
"logicName" : "头数据实体编辑视图(左右关系)",
"mOSFilePath" : "psmodeldata$psdataentities/EditView2",
"name" : "头数据实体编辑视图(左右关系)",
"rTMOSFilePath" : "psmodeldata$psdataentities/EditView2",
"realModelSubType" : "DEEDITVIEW2",
"realModelType" : "PSDEVIEWBASE"
}, {
"codeName" : "MPickupView",
"logicName" : "头数据实体数据多项选择视图",
"mOSFilePath" : "psmodeldata$psdataentities/MPickupView",
"modelTag" : "MPICKUPVIEW",
"name" : "头数据实体数据多项选择视图",
"rTMOSFilePath" : "psmodeldata$psdataentities/MPickupView",
"realModelSubType" : "DEMPICKUPVIEW",
"realModelType" : "PSDEVIEWBASE"
}, {
"codeName" : "PickupGridView",
"logicName" : "头数据实体选择表格视图(部件视图)",
"mOSFilePath" : "psmodeldata$psdataentities/PickupGridView",
"name" : "头数据实体选择表格视图(部件视图)",
"rTMOSFilePath" : "psmodeldata$psdataentities/PickupGridView",
"realModelSubType" : "DEPICKUPGRIDVIEW",
"realModelType" : "PSDEVIEWBASE"
}, {
"codeName" : "PickupView",
"logicName" : "头数据实体数据选择视图",
"mOSFilePath" : "psmodeldata$psdataentities/PickupView",
"modelTag" : "PICKUPVIEW",
"name" : "头数据实体数据选择视图",
"rTMOSFilePath" : "psmodeldata$psdataentities/PickupView",
"realModelSubType" : "DEPICKUPVIEW",
"realModelType" : "PSDEVIEWBASE"
}, {
"codeName" : "EditView",
"logicName" : "头数据实体编辑视图",
"mOSFilePath" : "psmodeldata$psdataentities/EditView",
"modelTag" : "EDITVIEW",
"name" : "头数据实体编辑视图",
"rTMOSFilePath" : "psmodeldata$psdataentities/EditView",
"realModelSubType" : "DEEDITVIEW",
"realModelType" : "PSDEVIEWBASE"
}, {
"codeName" : "RedirectView",
"logicName" : "头数据实体数据重定向视图",
"mOSFilePath" : "psmodeldata$psdataentities/RedirectView",
"modelTag" : "REDIRECTVIEW",
"name" : "头数据实体数据重定向视图",
"rTMOSFilePath" : "psmodeldata$psdataentities/RedirectView",
"realModelSubType" : "DEREDIRECTVIEW",
"realModelType" : "PSDEVIEWBASE"
}, {
"codeName" : "GridView",
"logicName" : "头数据实体表格视图",
"mOSFilePath" : "psmodeldata$psdataentities/GridView",
"modelTag" : "MDATAVIEW",
"name" : "头数据实体表格视图",
"rTMOSFilePath" : "psmodeldata$psdataentities/GridView",
"realModelSubType" : "DEGRIDVIEW",
"realModelType" : "PSDEVIEWBASE"
}, {
"codeName" : "Main",
"logicName" : "主编辑表单",
"mOSFilePath" : "psmodeldata$psdataentities/Main",
"modelTag2" : "0",
"name" : "主编辑表单",
"rTMOSFilePath" : "psmodeldata$psdataentities/Main",
"realModelSubType" : "EDITFORM",
"realModelType" : "PSDEFORM"
} ],
"codeName" : "IBIZSample0023",
"dEType" : 1,
"dSLink" : "DEFAULT",
"dataAccCtrlArch" : 1,
"dataAccCtrlMode" : 1,
"dataChangeLogMode" : 0,
"dataImpExpMode" : 3,
"getDefaultPSDEDataQuery" : {
"modelref" : true,
"id" : "Default"
},
"getDefaultPSDEDataSet" : {
"modelref" : true,
"id" : "Default"
},
"getDefaultPSDEFilterDTO" : {
"modelref" : true,
"id" : "IBIZSample0023FilterDTO"
},
"getDefaultPSDEMethodDTO" : {
"modelref" : true,
"id" : "IBIZSample0023DTO"
},
"dynaInstMode" : 0,
"dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZSample0023.json",
"enableActions" : 7,
"enableUIActions" : 15,
"enableViewLevel" : 0,
"extendMode" : 0,
"getKeyPSDEField" : {
"name" : "IBIZSAMPLE0023ID",
"codeName" : "IBIZSample0023Id"
},
"getLNPSLanguageRes" : {
"defaultContent" : "头数据",
"lanResTag" : "DE.LNAME.IBIZSAMPLE0023",
"lanResType" : "DE.LNAME",
"name" : "实体逻辑名称(DE.LNAME.*)[IBIZSAMPLE0023]",
"refFlag" : true
},
"logicName" : "头数据",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023",
"getMajorPSDEField" : {
"name" : "IBIZSAMPLE0023NAME",
"codeName" : "IBIZSample0023Name"
},
"memo" : "演示嵌套数据包",
"name" : "IBIZSAMPLE0023",
"getPSSystemModule" : {
"modelref" : true,
"path" : "PSMODULES/Sample.json"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023",
"saaSMode" : 0,
"serviceAPIMode" : 0,
"serviceCodeName" : "IBIZSample0023",
"storageMode" : 1,
"systemTag" : "DemoSys",
"tableName" : "T_IBIZSAMPLE0023",
"enableAPIStorage" : false,
"enableCreate" : true,
"enableDataVer" : false,
"enableEntityCache" : false,
"enableModify" : true,
"enableMultiDS" : false,
"enableMultiForm" : false,
"enableMultiStorage" : false,
"enableNoSQLStorage" : false,
"enableRemove" : true,
"enableSQLStorage" : true,
"logicValid" : false,
"subSysAsCloud" : false
}
\ No newline at end of file
{
"actionMode" : "CHECKKEY",
"actionType" : "BUILTIN",
"codeName" : "CheckKey",
"dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZSample0023/PSDEACTIONS/CheckKey.json",
"logicName" : "CheckKey",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdeactions/CheckKey",
"name" : "CheckKey",
"getPSDEActionInput" : {
"name" : "CheckKeyInput",
"getPSDEMethodDTO" : {
"modelref" : true,
"id" : "IBIZSample0023DTO"
},
"type" : "DTO"
},
"getPSDEActionReturn" : {
"name" : "CheckKeyResult",
"stdDataType" : 9,
"type" : "SIMPLE"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdeactions/CheckKey",
"builtinAction" : true
}
\ No newline at end of file
{
"actionMode" : "CREATE",
"actionType" : "BUILTIN",
"codeName" : "Create",
"dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZSample0023/PSDEACTIONS/Create.json",
"logicName" : "Create",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdeactions/Create",
"name" : "Create",
"orderValue" : 1,
"getPSDEActionInput" : {
"name" : "CreateInput",
"getPSDEMethodDTO" : {
"modelref" : true,
"id" : "IBIZSample0023DTO"
},
"type" : "DTO",
"output" : true
},
"getPSDEActionReturn" : {
"name" : "CreateResult",
"type" : "VOID"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdeactions/Create",
"builtinAction" : true
}
\ No newline at end of file
{
"actionMode" : "READ",
"actionType" : "BUILTIN",
"codeName" : "Get",
"dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZSample0023/PSDEACTIONS/Get.json",
"logicName" : "Get",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdeactions/Get",
"name" : "Get",
"orderValue" : 31,
"getPSDEActionInput" : {
"getKeyPSDEField" : {
"name" : "IBIZSAMPLE0023ID",
"codeName" : "IBIZSample0023Id"
},
"name" : "GetInput",
"type" : "KEYFIELD"
},
"getPSDEActionReturn" : {
"name" : "GetResult",
"getPSDEMethodDTO" : {
"modelref" : true,
"id" : "IBIZSample0023DTO"
},
"type" : "DTO"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdeactions/Get",
"builtinAction" : true
}
\ No newline at end of file
{
"actionMode" : "GETDRAFT",
"actionType" : "BUILTIN",
"codeName" : "GetDraft",
"dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZSample0023/PSDEACTIONS/GetDraft.json",
"logicName" : "GetDraft",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdeactions/GetDraft",
"name" : "GetDraft",
"orderValue" : 41,
"getPSDEActionInput" : {
"name" : "GetDraftInput",
"getPSDEMethodDTO" : {
"modelref" : true,
"id" : "IBIZSample0023DTO"
},
"type" : "DTO"
},
"getPSDEActionReturn" : {
"name" : "GetDraftResult",
"getPSDEMethodDTO" : {
"modelref" : true,
"id" : "IBIZSample0023DTO"
},
"type" : "DTO"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdeactions/GetDraft",
"builtinAction" : true
}
\ No newline at end of file
{
"actionMode" : "DELETE",
"actionType" : "BUILTIN",
"batchActionMode" : 1,
"codeName" : "Remove",
"dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZSample0023/PSDEACTIONS/Remove.json",
"logicName" : "Remove",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdeactions/Remove",
"name" : "Remove",
"orderValue" : 21,
"getPSDEActionInput" : {
"getKeyPSDEField" : {
"name" : "IBIZSAMPLE0023ID",
"codeName" : "IBIZSample0023Id"
},
"name" : "RemoveInput",
"type" : "KEYFIELDS"
},
"getPSDEActionReturn" : {
"name" : "RemoveResult",
"type" : "VOID"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdeactions/Remove",
"batchAction" : true,
"builtinAction" : true
}
\ No newline at end of file
{
"actionMode" : "UNKNOWN",
"actionType" : "BUILTIN",
"codeName" : "Save",
"dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZSample0023/PSDEACTIONS/Save.json",
"logicName" : "Save",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdeactions/Save",
"name" : "Save",
"getPSDEActionInput" : {
"name" : "SaveInput",
"getPSDEMethodDTO" : {
"modelref" : true,
"id" : "IBIZSample0023DTO"
},
"type" : "DTO"
},
"getPSDEActionReturn" : {
"name" : "SaveResult",
"type" : "VOID"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdeactions/Save",
"builtinAction" : true
}
\ No newline at end of file
{
"actionMode" : "UPDATE",
"actionType" : "BUILTIN",
"codeName" : "Update",
"dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZSample0023/PSDEACTIONS/Update.json",
"logicName" : "Update",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdeactions/Update",
"name" : "Update",
"orderValue" : 11,
"getPSDEActionInput" : {
"name" : "UpdateInput",
"getPSDEMethodDTO" : {
"modelref" : true,
"id" : "IBIZSample0023DTO"
},
"type" : "DTO",
"output" : true
},
"getPSDEActionReturn" : {
"name" : "UpdateResult",
"type" : "VOID"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdeactions/Update",
"builtinAction" : true
}
\ No newline at end of file
{
"dBType" : "MYSQL5",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdedataqueries/DEFAULT/psdedqcodes/MYSQL5",
"name" : "MySQL5",
"getPSDEDataQueryCodeExps" : [ {
"expression" : "t1.`CREATEDATE`",
"name" : "CREATEDATE"
}, {
"expression" : "t1.`CREATEMAN`",
"name" : "CREATEMAN"
}, {
"expression" : "t1.`IBIZSAMPLE0023ID`",
"name" : "IBIZSAMPLE0023ID"
}, {
"expression" : "t1.`IBIZSAMPLE0023NAME`",
"name" : "IBIZSAMPLE0023NAME"
}, {
"expression" : "t1.`UPDATEDATE`",
"name" : "UPDATEDATE"
}, {
"expression" : "t1.`UPDATEMAN`",
"name" : "UPDATEMAN"
} ],
"queryCode" : "SELECT\nt1.`CREATEDATE`,\nt1.`CREATEMAN`,\nt1.`IBIZSAMPLE0023ID`,\nt1.`IBIZSAMPLE0023NAME`,\nt1.`UPDATEDATE`,\nt1.`UPDATEMAN`\nFROM `T_IBIZSAMPLE0023` t1 \n",
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdedataqueries/DEFAULT/psdedqcodes/MYSQL5",
"id" : "PSMODULES/Sample/PSDATAENTITIES/IBIZSample0023/PSDEDATAQUERIES/Default/PSDEDQCODES/MYSQL5.json"
}
\ No newline at end of file
{
"dBType" : "MYSQL5",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdedataqueries/VIEW/psdedqcodes/MYSQL5",
"name" : "MySQL5",
"getPSDEDataQueryCodeExps" : [ {
"expression" : "t1.`CREATEDATE`",
"name" : "CREATEDATE"
}, {
"expression" : "t1.`CREATEMAN`",
"name" : "CREATEMAN"
}, {
"expression" : "t1.`IBIZSAMPLE0023ID`",
"name" : "IBIZSAMPLE0023ID"
}, {
"expression" : "t1.`IBIZSAMPLE0023NAME`",
"name" : "IBIZSAMPLE0023NAME"
}, {
"expression" : "t1.`UPDATEDATE`",
"name" : "UPDATEDATE"
}, {
"expression" : "t1.`UPDATEMAN`",
"name" : "UPDATEMAN"
} ],
"queryCode" : "SELECT\nt1.`CREATEDATE`,\nt1.`CREATEMAN`,\nt1.`IBIZSAMPLE0023ID`,\nt1.`IBIZSAMPLE0023NAME`,\nt1.`UPDATEDATE`,\nt1.`UPDATEMAN`\nFROM `T_IBIZSAMPLE0023` t1 \n",
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdedataqueries/VIEW/psdedqcodes/MYSQL5",
"id" : "PSMODULES/Sample/PSDATAENTITIES/IBIZSample0023/PSDEDATAQUERIES/View/PSDEDQCODES/MYSQL5.json"
}
\ No newline at end of file
{
"getAllPSDEACModes" : [ {
"codeName" : "Default",
"logicName" : "DEFAULT",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0024/psdeacmodes/DEFAULT",
"name" : "DEFAULT",
"getPSDEACModeDataItems" : [ {
"dataType" : 25,
"name" : "value"
}, {
"dataType" : 25,
"name" : "text"
} ],
"pagingSize" : 50,
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0024/psdeacmodes/DEFAULT",
"defaultMode" : true,
"enablePagingBar" : false,
"id" : "PSMODULES/Sample/PSDATAENTITIES/IBIZSample0024/PSDEACMODES/Default.json"
} ],
"getAllPSDEActions" : [ {
"actionMode" : "CREATE",
"actionType" : "BUILTIN",
"codeName" : "Create",
"dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZSample0024/PSDEACTIONS/Create.json",
"logicName" : "Create",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0024/psdeactions/Create",
"name" : "Create",
"orderValue" : 1,
"getPSDEActionInput" : {
"name" : "CreateInput",
"getPSDEMethodDTO" : {
"modelref" : true,
"id" : "IBIZSample0024DTO"
},
"type" : "DTO",
"output" : true
},
"getPSDEActionReturn" : {
"name" : "CreateResult",
"type" : "VOID"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0024/psdeactions/Create",
"builtinAction" : true
}, {
"actionMode" : "UPDATE",
"actionType" : "BUILTIN",
"codeName" : "Update",
"dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZSample0024/PSDEACTIONS/Update.json",
"logicName" : "Update",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0024/psdeactions/Update",
"name" : "Update",
"orderValue" : 11,
"getPSDEActionInput" : {
"name" : "UpdateInput",
"getPSDEMethodDTO" : {
"modelref" : true,
"id" : "IBIZSample0024DTO"
},
"type" : "DTO",
"output" : true
},
"getPSDEActionReturn" : {
"name" : "UpdateResult",
"type" : "VOID"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0024/psdeactions/Update",
"builtinAction" : true
}, {
"actionMode" : "DELETE",
"actionType" : "BUILTIN",
"batchActionMode" : 1,
"codeName" : "Remove",
"dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZSample0024/PSDEACTIONS/Remove.json",
"logicName" : "Remove",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0024/psdeactions/Remove",
"name" : "Remove",
"orderValue" : 21,
"getPSDEActionInput" : {
"getKeyPSDEField" : {
"name" : "NAME",
"codeName" : "Name"
},
"name" : "RemoveInput",
"type" : "KEYFIELDS"
},
"getPSDEActionReturn" : {
"name" : "RemoveResult",
"type" : "VOID"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0024/psdeactions/Remove",
"batchAction" : true,
"builtinAction" : true
}, {
"actionMode" : "READ",
"actionType" : "BUILTIN",
"codeName" : "Get",
"dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZSample0024/PSDEACTIONS/Get.json",
"logicName" : "Get",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0024/psdeactions/Get",
"name" : "Get",
"orderValue" : 31,
"getPSDEActionInput" : {
"getKeyPSDEField" : {
"name" : "NAME",
"codeName" : "Name"
},
"name" : "GetInput",
"type" : "KEYFIELD"
},
"getPSDEActionReturn" : {
"name" : "GetResult",
"getPSDEMethodDTO" : {
"modelref" : true,
"id" : "IBIZSample0024DTO"
},
"type" : "DTO"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0024/psdeactions/Get",
"builtinAction" : true
}, {
"actionMode" : "GETDRAFT",
"actionType" : "BUILTIN",
"codeName" : "GetDraft",
"dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZSample0024/PSDEACTIONS/GetDraft.json",
"logicName" : "GetDraft",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0024/psdeactions/GetDraft",
"name" : "GetDraft",
"orderValue" : 41,
"getPSDEActionInput" : {
"name" : "GetDraftInput",
"getPSDEMethodDTO" : {
"modelref" : true,
"id" : "IBIZSample0024DTO"
},
"type" : "DTO"
},
"getPSDEActionReturn" : {
"name" : "GetDraftResult",
"getPSDEMethodDTO" : {
"modelref" : true,
"id" : "IBIZSample0024DTO"
},
"type" : "DTO"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0024/psdeactions/GetDraft",
"builtinAction" : true
}, {
"actionMode" : "CHECKKEY",
"actionType" : "BUILTIN",
"codeName" : "CheckKey",
"dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZSample0024/PSDEACTIONS/CheckKey.json",
"logicName" : "CheckKey",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0024/psdeactions/CheckKey",
"name" : "CheckKey",
"getPSDEActionInput" : {
"name" : "CheckKeyInput",
"getPSDEMethodDTO" : {
"modelref" : true,
"id" : "IBIZSample0024DTO"
},
"type" : "DTO"
},
"getPSDEActionReturn" : {
"name" : "CheckKeyResult",
"stdDataType" : 9,
"type" : "SIMPLE"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0024/psdeactions/CheckKey",
"builtinAction" : true
}, {
"actionMode" : "UNKNOWN",
"actionType" : "BUILTIN",
"codeName" : "Save",
"dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZSample0024/PSDEACTIONS/Save.json",
"logicName" : "Save",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0024/psdeactions/Save",
"name" : "Save",
"getPSDEActionInput" : {
"name" : "SaveInput",
"getPSDEMethodDTO" : {
"modelref" : true,
"id" : "IBIZSample0024DTO"
},
"type" : "DTO"
},
"getPSDEActionReturn" : {
"name" : "SaveResult",
"type" : "VOID"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0024/psdeactions/Save",
"builtinAction" : true
} ],
"getAllPSDEDBConfigs" : [ {
"dBType" : "MYSQL5",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0024/psdedbcfgs/MYSQL5",
"name" : "MYSQL5",
"objNameCase" : "DEFAULT",
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0024/psdedbcfgs/MYSQL5",
"valid" : true
} ],
"getAllPSDEDataQueries" : [ {
"getAllPSDEDataQueryCodes" : [ {
"modelref" : true,
"path" : "PSMODULES/Sample/PSDATAENTITIES/IBIZSample0024/PSDEDATAQUERIES/Default/PSDEDQCODES/MYSQL5.json"
} ],
"codeName" : "Default",
"logicName" : "数据查询",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0024/psdedataqueries/DEFAULT",
"name" : "DEFAULT",
"getPSDEDQMain" : {
"getJoinPSDataEntity" : {
"modelref" : true,
"path" : "PSMODULES/Sample/PSDATAENTITIES/IBIZSample0024.json"
},
"joinType" : "MAIN",
"name" : "IBIZSAMPLE0024"
},
"getPSDEDataQueryInput" : {
"name" : "DefaultInput",
"getPSDEFilterDTO" : {
"modelref" : true,
"id" : "IBIZSample0024FilterDTO"
},
"type" : "DTO"
},
"getPSDEDataQueryReturn" : {
"name" : "DefaultResult",
"getPSDEMethodDTO" : {
"modelref" : true,
"id" : "IBIZSample0024DTO"
},
"type" : "DTOS"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0024/psdedataqueries/DEFAULT",
"defaultMode" : true
}, {
"getAllPSDEDataQueryCodes" : [ {
"modelref" : true,
"path" : "PSMODULES/Sample/PSDATAENTITIES/IBIZSample0024/PSDEDATAQUERIES/View/PSDEDQCODES/MYSQL5.json"
} ],
"codeName" : "View",
"logicName" : "默认(全部数据)",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0024/psdedataqueries/VIEW",
"name" : "VIEW",
"getPSDEDQMain" : {
"getJoinPSDataEntity" : {
"modelref" : true,
"path" : "PSMODULES/Sample/PSDATAENTITIES/IBIZSample0024.json"
},
"joinType" : "MAIN",
"name" : "IBIZSAMPLE0024"
},
"getPSDEDataQueryInput" : {
"name" : "ViewInput",
"getPSDEFilterDTO" : {
"modelref" : true,
"id" : "IBIZSample0024FilterDTO"
},
"type" : "DTO"
},
"getPSDEDataQueryReturn" : {
"name" : "ViewResult",
"getPSDEMethodDTO" : {
"modelref" : true,
"id" : "IBIZSample0024DTO"
},
"type" : "DTOS"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0024/psdedataqueries/VIEW",
"viewLevel" : 0
} ],
"getAllPSDEDataSets" : [ {
"codeName" : "Default",
"logicName" : "数据集",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0024/psdedatasets/DEFAULT",
"name" : "DEFAULT",
"getPSDEDataQueries" : [ {
"modelref" : true,
"id" : "Default"
} ],
"getPSDEDataSetInput" : {
"name" : "DefaultInput",
"getPSDEFilterDTO" : {
"modelref" : true,
"id" : "IBIZSample0024FilterDTO"
},
"type" : "DTO"
},
"getPSDEDataSetReturn" : {
"name" : "DefaultResult",
"getPSDEMethodDTO" : {
"modelref" : true,
"id" : "IBIZSample0024DTO"
},
"type" : "PAGE"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0024/psdedatasets/DEFAULT",
"defaultMode" : true,
"enableBackend" : true,
"enableFront" : true
} ],
"getAllPSDEFields" : [ {
"getAllPSDEFDTColumns" : [ {
"columnName" : "NAME",
"dBType" : "MYSQL5",
"name" : "NAME",
"queryCodeExp" : "t1.`NAME`",
"standardColumnName" : "`NAME`"
} ],
"getAllPSDEFSearchModes" : [ {
"codeName" : "N_NAME_EQ",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0024/psdefields/NAME/psdefsfitems/N_NAME_EQ",
"name" : "N_NAME_EQ",
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0024/psdefields/NAME/psdefsearchmodes/N_NAME_EQ",
"stdDataType" : 25,
"valueOP" : "EQ"
} ],
"getAllPSDEFUIModes" : [ {
"codeName" : "MobileDefault",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0024/psdefields/NAME/psdefuimodes/MobileDefault",
"name" : "[NAME][名称]移动端默认",
"getPSDEFFormItem" : {
"codeName" : "MobileDefault",
"editorType" : "MOBTEXT",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0024/psdefields/NAME/psdefformitems/MobileDefault",
"name" : "[NAME][名称]移动端默认",
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0024/psdefields/NAME/psdefformitems/MobileDefault",
"stringLength" : 100,
"uIMode" : "MOBILEDEFAULT",
"mobileMode" : true
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0024/psdefields/NAME/psdefuimodes/MobileDefault",
"type" : "MOBILEDEFAULT",
"mobileMode" : true
}, {
"codeName" : "Default",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0024/psdefields/NAME/psdefuimodes/Default",
"name" : "[NAME][名称]",
"getPSDEFFormItem" : {
"codeName" : "Default",
"editorType" : "TEXTBOX",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0024/psdefields/NAME/psdefformitems/Default",
"name" : "[NAME][名称]",
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0024/psdefields/NAME/psdefformitems/Default",
"stringLength" : 100,
"uIMode" : "DEFAULT"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0024/psdefields/NAME/psdefuimodes/Default",
"type" : "DEFAULT"
} ],
"getAllPSDEFValueRules" : [ {
"codeName" : "Default",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0024/psdefields/NAME/psdefvaluerules/Default",
"name" : "默认规则",
"getPSDEFVRGroupCondition" : {
"condOp" : "AND",
"condType" : "GROUP",
"name" : "默认组",
"getPSDEFVRConditions" : [ {
"condType" : "STRINGLENGTH",
"dEFName" : "NAME",
"maxValue" : 100,
"name" : "默认字符串长度",
"ruleInfo" : "内容长度必须小于等于[100]",
"includeMaxValue" : true,
"includeMinValue" : false,
"keyCond" : true
} ],
"ruleInfo" : "内容长度必须小于等于[100]"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0024/psdefields/NAME/psdefvaluerules/Default",
"ruleInfo" : "内容长度必须小于等于[100]",
"checkDefault" : true,
"defaultMode" : true,
"enableBackend" : true,
"enableFront" : true
} ],
"codeName" : "Name",
"dEFType" : 1,
"dataType" : "TEXT",
"importOrder" : 1000,
"length" : 100,
"logicName" : "名称",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0024/psdefields/NAME",
"name" : "NAME",
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0024/psdefields/NAME",
"serviceCodeName" : "Name",
"stdDataType" : 25,
"stringLength" : 100,
"valueFormat" : "%1$s",
"enableQuickSearch" : true,
"keyDEField" : true,
"majorDEField" : true,
"pasteReset" : true
} ],
"getAllPSDEMethodDTOs" : [ {
"name" : "IBIZSample0024DTO",
"getPSDEMethodDTOFields" : [ {
"logicName" : "名称",
"name" : "Name",
"getPSDEField" : {
"name" : "NAME",
"codeName" : "Name"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0024/psdemethoddtos/IBIZSample0024DTO/psdemethoddtofields/Name",
"sourceType" : "DEFIELD",
"stdDataType" : 25,
"stringLength" : 100,
"type" : "SIMPLE"
} ],
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0024/psdemethoddtos/IBIZSample0024DTO",
"sourceType" : "DE",
"type" : "DEFAULT",
"defaultMode" : true
}, {
"name" : "IBIZSample0024FilterDTO",
"getPSDEFilterDTOFields" : [ {
"logicName" : "名称",
"name" : "N_NAME_EQ",
"getPSDEFSearchMode" : {
"modelref" : true,
"id" : "N_NAME_EQ"
},
"getPSDEField" : {
"name" : "NAME",
"codeName" : "Name"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0024/psdemethoddtos/IBIZSample0024FilterDTO/psdemethoddtofields/N_NAME_EQ",
"sourceType" : "DEFSEARCHMODE",
"stdDataType" : 25,
"stringLength" : 100,
"type" : "SIMPLE"
} ],
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0024/psdemethoddtos/IBIZSample0024FilterDTO",
"sourceType" : "DE",
"type" : "DEFILTER",
"defaultMode" : true
} ],
"getAllPSDEOPPrivs" : [ {
"logicName" : "建立",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0024/psdeopprivs/CREATE",
"name" : "CREATE",
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0024/psdeopprivs/CREATE"
}, {
"logicName" : "删除",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0024/psdeopprivs/DELETE",
"name" : "DELETE",
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0024/psdeopprivs/DELETE"
}, {
"logicName" : "读取",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0024/psdeopprivs/READ",
"name" : "READ",
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0024/psdeopprivs/READ"
}, {
"logicName" : "更新",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0024/psdeopprivs/UPDATE",
"name" : "UPDATE",
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0024/psdeopprivs/UPDATE"
} ],
"getAllPSModelDatas" : [ {
"codeName" : "PickupView",
"logicName" : "包数据1实体数据选择视图",
"mOSFilePath" : "psmodeldata$psdataentities/PickupView",
"modelTag" : "PICKUPVIEW",
"name" : "包数据1实体数据选择视图",
"rTMOSFilePath" : "psmodeldata$psdataentities/PickupView",
"realModelSubType" : "DEPICKUPVIEW",
"realModelType" : "PSDEVIEWBASE"
}, {
"codeName" : "RedirectView",
"logicName" : "包数据1实体数据重定向视图",
"mOSFilePath" : "psmodeldata$psdataentities/RedirectView",
"modelTag" : "REDIRECTVIEW",
"name" : "包数据1实体数据重定向视图",
"rTMOSFilePath" : "psmodeldata$psdataentities/RedirectView",
"realModelSubType" : "DEREDIRECTVIEW",
"realModelType" : "PSDEVIEWBASE"
}, {
"codeName" : "EditView",
"logicName" : "包数据1实体编辑视图",
"mOSFilePath" : "psmodeldata$psdataentities/EditView",
"modelTag" : "EDITVIEW",
"name" : "包数据1实体编辑视图",
"rTMOSFilePath" : "psmodeldata$psdataentities/EditView",
"realModelSubType" : "DEEDITVIEW",
"realModelType" : "PSDEVIEWBASE"
}, {
"codeName" : "MPickupView",
"logicName" : "包数据1实体数据多项选择视图",
"mOSFilePath" : "psmodeldata$psdataentities/MPickupView",
"modelTag" : "MPICKUPVIEW",
"name" : "包数据1实体数据多项选择视图",
"rTMOSFilePath" : "psmodeldata$psdataentities/MPickupView",
"realModelSubType" : "DEMPICKUPVIEW",
"realModelType" : "PSDEVIEWBASE"
}, {
"codeName" : "EditView2",
"logicName" : "包数据1实体编辑视图(左右关系)",
"mOSFilePath" : "psmodeldata$psdataentities/EditView2",
"name" : "包数据1实体编辑视图(左右关系)",
"rTMOSFilePath" : "psmodeldata$psdataentities/EditView2",
"realModelSubType" : "DEEDITVIEW2",
"realModelType" : "PSDEVIEWBASE"
}, {
"codeName" : "GridView",
"logicName" : "包数据1实体表格视图",
"mOSFilePath" : "psmodeldata$psdataentities/GridView",
"modelTag" : "MDATAVIEW",
"name" : "包数据1实体表格视图",
"rTMOSFilePath" : "psmodeldata$psdataentities/GridView",
"realModelSubType" : "DEGRIDVIEW",
"realModelType" : "PSDEVIEWBASE"
}, {
"codeName" : "PickupGridView",
"logicName" : "包数据1实体选择表格视图(部件视图)",
"mOSFilePath" : "psmodeldata$psdataentities/PickupGridView",
"name" : "包数据1实体选择表格视图(部件视图)",
"rTMOSFilePath" : "psmodeldata$psdataentities/PickupGridView",
"realModelSubType" : "DEPICKUPGRIDVIEW",
"realModelType" : "PSDEVIEWBASE"
}, {
"codeName" : "Main",
"logicName" : "主编辑表单",
"mOSFilePath" : "psmodeldata$psdataentities/Main",
"modelTag2" : "0",
"name" : "主编辑表单",
"rTMOSFilePath" : "psmodeldata$psdataentities/Main",
"realModelSubType" : "EDITFORM",
"realModelType" : "PSDEFORM"
} ],
"codeName" : "IBIZSample0024",
"dEType" : 1,
"dSLink" : "DEFAULT",
"dataAccCtrlArch" : 1,
"dataAccCtrlMode" : 1,
"dataChangeLogMode" : 0,
"dataImpExpMode" : 3,
"getDefaultPSDEDataQuery" : {
"modelref" : true,
"id" : "Default"
},
"getDefaultPSDEDataSet" : {
"modelref" : true,
"id" : "Default"
},
"getDefaultPSDEFilterDTO" : {
"modelref" : true,
"id" : "IBIZSample0024FilterDTO"
},
"getDefaultPSDEMethodDTO" : {
"modelref" : true,
"id" : "IBIZSample0024DTO"
},
"dynaInstMode" : 0,
"dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZSample0024.json",
"enableActions" : 7,
"enableUIActions" : 15,
"enableViewLevel" : 0,
"extendMode" : 0,
"getKeyPSDEField" : {
"name" : "NAME",
"codeName" : "Name"
},
"getLNPSLanguageRes" : {
"defaultContent" : "包数据1",
"lanResTag" : "DE.LNAME.IBIZSAMPLE0024",
"lanResType" : "DE.LNAME",
"name" : "实体逻辑名称(DE.LNAME.*)[IBIZSAMPLE0024]",
"refFlag" : true
},
"logicName" : "包数据1",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0024",
"getMajorPSDEField" : {
"name" : "NAME",
"codeName" : "Name"
},
"name" : "IBIZSAMPLE0024",
"getPSSystemModule" : {
"modelref" : true,
"path" : "PSMODULES/Sample.json"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0024",
"saaSMode" : 0,
"serviceAPIMode" : 0,
"serviceCodeName" : "IBIZSample0024",
"storageMode" : 0,
"systemTag" : "DemoSys",
"enableAPIStorage" : false,
"enableCreate" : true,
"enableDataVer" : false,
"enableEntityCache" : false,
"enableModify" : true,
"enableMultiDS" : false,
"enableMultiForm" : false,
"enableMultiStorage" : false,
"enableNoSQLStorage" : false,
"enableRemove" : true,
"enableSQLStorage" : false,
"logicValid" : false,
"subSysAsCloud" : false
}
\ No newline at end of file
{
"actionMode" : "CHECKKEY",
"actionType" : "BUILTIN",
"codeName" : "CheckKey",
"dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZSample0024/PSDEACTIONS/CheckKey.json",
"logicName" : "CheckKey",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0024/psdeactions/CheckKey",
"name" : "CheckKey",
"getPSDEActionInput" : {
"name" : "CheckKeyInput",
"getPSDEMethodDTO" : {
"modelref" : true,
"id" : "IBIZSample0024DTO"
},
"type" : "DTO"
},
"getPSDEActionReturn" : {
"name" : "CheckKeyResult",
"stdDataType" : 9,
"type" : "SIMPLE"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0024/psdeactions/CheckKey",
"builtinAction" : true
}
\ No newline at end of file
{
"actionMode" : "CREATE",
"actionType" : "BUILTIN",
"codeName" : "Create",
"dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZSample0024/PSDEACTIONS/Create.json",
"logicName" : "Create",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0024/psdeactions/Create",
"name" : "Create",
"orderValue" : 1,
"getPSDEActionInput" : {
"name" : "CreateInput",
"getPSDEMethodDTO" : {
"modelref" : true,
"id" : "IBIZSample0024DTO"
},
"type" : "DTO",
"output" : true
},
"getPSDEActionReturn" : {
"name" : "CreateResult",
"type" : "VOID"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0024/psdeactions/Create",
"builtinAction" : true
}
\ No newline at end of file
{
"actionMode" : "READ",
"actionType" : "BUILTIN",
"codeName" : "Get",
"dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZSample0024/PSDEACTIONS/Get.json",
"logicName" : "Get",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0024/psdeactions/Get",
"name" : "Get",
"orderValue" : 31,
"getPSDEActionInput" : {
"getKeyPSDEField" : {
"name" : "NAME",
"codeName" : "Name"
},
"name" : "GetInput",
"type" : "KEYFIELD"
},
"getPSDEActionReturn" : {
"name" : "GetResult",
"getPSDEMethodDTO" : {
"modelref" : true,
"id" : "IBIZSample0024DTO"
},
"type" : "DTO"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0024/psdeactions/Get",
"builtinAction" : true
}
\ No newline at end of file
{
"actionMode" : "GETDRAFT",
"actionType" : "BUILTIN",
"codeName" : "GetDraft",
"dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZSample0024/PSDEACTIONS/GetDraft.json",
"logicName" : "GetDraft",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0024/psdeactions/GetDraft",
"name" : "GetDraft",
"orderValue" : 41,
"getPSDEActionInput" : {
"name" : "GetDraftInput",
"getPSDEMethodDTO" : {
"modelref" : true,
"id" : "IBIZSample0024DTO"
},
"type" : "DTO"
},
"getPSDEActionReturn" : {
"name" : "GetDraftResult",
"getPSDEMethodDTO" : {
"modelref" : true,
"id" : "IBIZSample0024DTO"
},
"type" : "DTO"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0024/psdeactions/GetDraft",
"builtinAction" : true
}
\ No newline at end of file
{
"actionMode" : "DELETE",
"actionType" : "BUILTIN",
"batchActionMode" : 1,
"codeName" : "Remove",
"dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZSample0024/PSDEACTIONS/Remove.json",
"logicName" : "Remove",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0024/psdeactions/Remove",
"name" : "Remove",
"orderValue" : 21,
"getPSDEActionInput" : {
"getKeyPSDEField" : {
"name" : "NAME",
"codeName" : "Name"
},
"name" : "RemoveInput",
"type" : "KEYFIELDS"
},
"getPSDEActionReturn" : {
"name" : "RemoveResult",
"type" : "VOID"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0024/psdeactions/Remove",
"batchAction" : true,
"builtinAction" : true
}
\ No newline at end of file
{
"actionMode" : "UNKNOWN",
"actionType" : "BUILTIN",
"codeName" : "Save",
"dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZSample0024/PSDEACTIONS/Save.json",
"logicName" : "Save",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0024/psdeactions/Save",
"name" : "Save",
"getPSDEActionInput" : {
"name" : "SaveInput",
"getPSDEMethodDTO" : {
"modelref" : true,
"id" : "IBIZSample0024DTO"
},
"type" : "DTO"
},
"getPSDEActionReturn" : {
"name" : "SaveResult",
"type" : "VOID"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0024/psdeactions/Save",
"builtinAction" : true
}
\ No newline at end of file
{
"actionMode" : "UPDATE",
"actionType" : "BUILTIN",
"codeName" : "Update",
"dynaModelFilePath" : "PSMODULES/Sample/PSDATAENTITIES/IBIZSample0024/PSDEACTIONS/Update.json",
"logicName" : "Update",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0024/psdeactions/Update",
"name" : "Update",
"orderValue" : 11,
"getPSDEActionInput" : {
"name" : "UpdateInput",
"getPSDEMethodDTO" : {
"modelref" : true,
"id" : "IBIZSample0024DTO"
},
"type" : "DTO",
"output" : true
},
"getPSDEActionReturn" : {
"name" : "UpdateResult",
"type" : "VOID"
},
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0024/psdeactions/Update",
"builtinAction" : true
}
\ No newline at end of file
{
"dBType" : "MYSQL5",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0024/psdedataqueries/DEFAULT/psdedqcodes/MYSQL5",
"name" : "MySQL5",
"getPSDEDataQueryCodeExps" : [ {
"expression" : "t1.`NAME`",
"name" : "NAME"
} ],
"queryCode" : "SELECT\nt1.`NAME`\nFROM `` t1 \n",
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0024/psdedataqueries/DEFAULT/psdedqcodes/MYSQL5",
"id" : "PSMODULES/Sample/PSDATAENTITIES/IBIZSample0024/PSDEDATAQUERIES/Default/PSDEDQCODES/MYSQL5.json"
}
\ No newline at end of file
{
"dBType" : "MYSQL5",
"mOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0024/psdedataqueries/VIEW/psdedqcodes/MYSQL5",
"name" : "MySQL5",
"getPSDEDataQueryCodeExps" : [ {
"expression" : "t1.`NAME`",
"name" : "NAME"
} ],
"queryCode" : "SELECT\nt1.`NAME`\nFROM `` t1 \n",
"rTMOSFilePath" : "psmodules/Sample/psdataentities/IBIZSAMPLE0024/psdedataqueries/VIEW/psdedqcodes/MYSQL5",
"id" : "PSMODULES/Sample/PSDATAENTITIES/IBIZSample0024/PSDEDATAQUERIES/View/PSDEDQCODES/MYSQL5.json"
}
\ No newline at end of file
......@@ -12,6 +12,18 @@
"path" : "PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZBOOK.json"
},
"getPSDETreeColumns" : [ {
"caption" : "图书名称",
"codeName" : "ibizbookname",
"columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "ibizbookname",
"mOSFilePath" : "psdetreecols/ibizbookname",
"name" : "ibizbookname",
"rTMOSFilePath" : "psdetreecols/ibizbookname",
"width" : 200,
"widthUnit" : "px",
"enableExpand" : false,
"enableSort" : false
}, {
"caption" : "归还日期",
"codeName" : "returntime",
"columnType" : "DEFGRIDCOLUMN",
......@@ -35,18 +47,6 @@
"widthUnit" : "px",
"enableExpand" : false,
"enableSort" : false
}, {
"caption" : "作者",
"codeName" : "author",
"columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "author",
"mOSFilePath" : "psdetreecols/author",
"name" : "author",
"rTMOSFilePath" : "psdetreecols/author",
"width" : 200,
"widthUnit" : "px",
"enableExpand" : false,
"enableSort" : false
}, {
"caption" : "借出日期",
"codeName" : "lendouttime",
......@@ -60,13 +60,13 @@
"enableExpand" : false,
"enableSort" : false
}, {
"caption" : "图书名称",
"codeName" : "ibizbookname",
"caption" : "作者",
"codeName" : "author",
"columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "ibizbookname",
"mOSFilePath" : "psdetreecols/ibizbookname",
"name" : "ibizbookname",
"rTMOSFilePath" : "psdetreecols/ibizbookname",
"dataItemName" : "author",
"mOSFilePath" : "psdetreecols/author",
"name" : "author",
"rTMOSFilePath" : "psdetreecols/author",
"width" : 200,
"widthUnit" : "px",
"enableExpand" : false,
......
......@@ -31,18 +31,6 @@
"widthUnit" : "px",
"enableExpand" : false,
"enableSort" : false
}, {
"caption" : "作者",
"codeName" : "author",
"columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "author",
"mOSFilePath" : "psdetreecols/author",
"name" : "author",
"rTMOSFilePath" : "psdetreecols/author",
"width" : 50,
"widthUnit" : "px",
"enableExpand" : false,
"enableSort" : false
}, {
"caption" : "图书名称",
"codeName" : "ibizbookname",
......@@ -55,6 +43,18 @@
"widthUnit" : "px",
"enableExpand" : false,
"enableSort" : false
}, {
"caption" : "作者",
"codeName" : "author",
"columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "author",
"mOSFilePath" : "psdetreecols/author",
"name" : "author",
"rTMOSFilePath" : "psdetreecols/author",
"width" : 50,
"widthUnit" : "px",
"enableExpand" : false,
"enableSort" : false
} ],
"getPSDETreeNodeRSs" : [ {
"getChildPSDETreeNode" : {
......
......@@ -46,6 +46,18 @@
"id" : "GANTT"
},
"getPSDETreeColumns" : [ {
"caption" : "图书名称",
"codeName" : "ibizbookname",
"columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "ibizbookname",
"mOSFilePath" : "psdetreecols/ibizbookname",
"name" : "ibizbookname",
"rTMOSFilePath" : "psdetreecols/ibizbookname",
"width" : 200,
"widthUnit" : "px",
"enableExpand" : false,
"enableSort" : false
}, {
"caption" : "归还日期",
"codeName" : "returntime",
"columnType" : "DEFGRIDCOLUMN",
......@@ -69,18 +81,6 @@
"widthUnit" : "px",
"enableExpand" : false,
"enableSort" : false
}, {
"caption" : "作者",
"codeName" : "author",
"columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "author",
"mOSFilePath" : "psdetreecols/author",
"name" : "author",
"rTMOSFilePath" : "psdetreecols/author",
"width" : 200,
"widthUnit" : "px",
"enableExpand" : false,
"enableSort" : false
}, {
"caption" : "借出日期",
"codeName" : "lendouttime",
......@@ -94,13 +94,13 @@
"enableExpand" : false,
"enableSort" : false
}, {
"caption" : "图书名称",
"codeName" : "ibizbookname",
"caption" : "作者",
"codeName" : "author",
"columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "ibizbookname",
"mOSFilePath" : "psdetreecols/ibizbookname",
"name" : "ibizbookname",
"rTMOSFilePath" : "psdetreecols/ibizbookname",
"dataItemName" : "author",
"mOSFilePath" : "psdetreecols/author",
"name" : "author",
"rTMOSFilePath" : "psdetreecols/author",
"width" : 200,
"widthUnit" : "px",
"enableExpand" : false,
......
......@@ -111,18 +111,6 @@
"widthUnit" : "px",
"enableExpand" : false,
"enableSort" : false
}, {
"caption" : "作者",
"codeName" : "author",
"columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "author",
"mOSFilePath" : "psdetreecols/author",
"name" : "author",
"rTMOSFilePath" : "psdetreecols/author",
"width" : 50,
"widthUnit" : "px",
"enableExpand" : false,
"enableSort" : false
}, {
"caption" : "图书名称",
"codeName" : "ibizbookname",
......@@ -135,6 +123,18 @@
"widthUnit" : "px",
"enableExpand" : false,
"enableSort" : false
}, {
"caption" : "作者",
"codeName" : "author",
"columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "author",
"mOSFilePath" : "psdetreecols/author",
"name" : "author",
"rTMOSFilePath" : "psdetreecols/author",
"width" : 50,
"widthUnit" : "px",
"enableExpand" : false,
"enableSort" : false
} ],
"getPSDETreeNodeRSs" : [ {
"getChildPSDETreeNode" : {
......
{
"getAllPSLanguageReses" : [ {
"defaultContent" : "数组属性",
"lanResTag" : "DE.LNAME.IBIZSAMPLE0022",
"lanResType" : "DE.LNAME",
"name" : "实体逻辑名称(DE.LNAME.*)[IBIZSAMPLE0022]",
"refFlag" : true
}, {
"defaultContent" : "头数据",
"lanResTag" : "DE.LNAME.IBIZSAMPLE0023",
"lanResType" : "DE.LNAME",
"name" : "实体逻辑名称(DE.LNAME.*)[IBIZSAMPLE0023]",
"refFlag" : true
}, {
"defaultContent" : "包数据1",
"lanResTag" : "DE.LNAME.IBIZSAMPLE0024",
"lanResType" : "DE.LNAME",
"name" : "实体逻辑名称(DE.LNAME.*)[IBIZSAMPLE0024]",
"refFlag" : true
}, {
"defaultContent" : "数组属性标识",
"lanResTag" : "DEF.LNAME.IBIZSAMPLE0022ID",
"lanResType" : "DEF.LNAME",
"name" : "属性逻辑名称(DEF.LNAME.*)[IBIZSAMPLE0022ID]",
"refFlag" : true
}, {
"defaultContent" : "数组属性名称",
"lanResTag" : "DEF.LNAME.IBIZSAMPLE0022NAME",
"lanResType" : "DEF.LNAME",
"name" : "属性逻辑名称(DEF.LNAME.*)[IBIZSAMPLE0022NAME]",
"refFlag" : true
}, {
"defaultContent" : "头数据标识",
"lanResTag" : "DEF.LNAME.IBIZSAMPLE0023ID",
"lanResType" : "DEF.LNAME",
"name" : "属性逻辑名称(DEF.LNAME.*)[IBIZSAMPLE0023ID]",
"refFlag" : true
}, {
"defaultContent" : "头数据名称",
"lanResTag" : "DEF.LNAME.IBIZSAMPLE0023NAME",
"lanResType" : "DEF.LNAME",
"name" : "属性逻辑名称(DEF.LNAME.*)[IBIZSAMPLE0023NAME]",
"refFlag" : true
}, {
"lanResTag" : "OTHER.BUTTONTSET",
"lanResType" : "OTHER",
"name" : "按钮测试",
"refFlag" : true
}, {
"defaultContent" : "常规条件",
"lanResTag" : "CONTROL.DEFORM.IBIZSAMPLE0022.DEFAULT.FORMPAGE.FORMPAGE1",
"lanResType" : "CONTROL",
"name" : "控件文本(CONTROL.*)[DEFORM.IBIZSAMPLE0022.DEFAULT.FORMPAGE.FORMPAGE1]"
}, {
"defaultContent" : "基本信息",
"lanResTag" : "CONTROL.DEFORM.IBIZSAMPLE0022.MAIN.FORMPAGE.FORMPAGE1",
"lanResType" : "CONTROL",
"name" : "控件文本(CONTROL.*)[DEFORM.IBIZSAMPLE0022.MAIN.FORMPAGE.FORMPAGE1]"
}, {
"defaultContent" : "其它",
"lanResTag" : "CONTROL.DEFORM.IBIZSAMPLE0022.MAIN.FORMPAGE.FORMPAGE2",
"lanResType" : "CONTROL",
"name" : "控件文本(CONTROL.*)[DEFORM.IBIZSAMPLE0022.MAIN.FORMPAGE.FORMPAGE2]"
}, {
"defaultContent" : "数组属性基本信息",
"lanResTag" : "CONTROL.DEFORM.IBIZSAMPLE0022.MAIN.GROUPPANEL.GROUP1",
"lanResType" : "CONTROL",
"name" : "控件文本(CONTROL.*)[DEFORM.IBIZSAMPLE0022.MAIN.GROUPPANEL.GROUP1]"
}, {
"defaultContent" : "操作信息",
"lanResTag" : "CONTROL.DEFORM.IBIZSAMPLE0022.MAIN.GROUPPANEL.GROUP2",
"lanResType" : "CONTROL",
"name" : "控件文本(CONTROL.*)[DEFORM.IBIZSAMPLE0022.MAIN.GROUPPANEL.GROUP2]"
}, {
"defaultContent" : "常规条件",
"lanResTag" : "CONTROL.DEFORM.IBIZSAMPLE0023.DEFAULT.FORMPAGE.FORMPAGE1",
"lanResType" : "CONTROL",
"name" : "控件文本(CONTROL.*)[DEFORM.IBIZSAMPLE0023.DEFAULT.FORMPAGE.FORMPAGE1]"
}, {
"defaultContent" : "基本信息",
"lanResTag" : "CONTROL.DEFORM.IBIZSAMPLE0023.MAIN.FORMPAGE.FORMPAGE1",
"lanResType" : "CONTROL",
"name" : "控件文本(CONTROL.*)[DEFORM.IBIZSAMPLE0023.MAIN.FORMPAGE.FORMPAGE1]"
}, {
"defaultContent" : "其它",
"lanResTag" : "CONTROL.DEFORM.IBIZSAMPLE0023.MAIN.FORMPAGE.FORMPAGE2",
"lanResType" : "CONTROL",
"name" : "控件文本(CONTROL.*)[DEFORM.IBIZSAMPLE0023.MAIN.FORMPAGE.FORMPAGE2]"
}, {
"defaultContent" : "头数据基本信息",
"lanResTag" : "CONTROL.DEFORM.IBIZSAMPLE0023.MAIN.GROUPPANEL.GROUP1",
"lanResType" : "CONTROL",
"name" : "控件文本(CONTROL.*)[DEFORM.IBIZSAMPLE0023.MAIN.GROUPPANEL.GROUP1]"
}, {
"defaultContent" : "操作信息",
"lanResTag" : "CONTROL.DEFORM.IBIZSAMPLE0023.MAIN.GROUPPANEL.GROUP2",
"lanResType" : "CONTROL",
"name" : "控件文本(CONTROL.*)[DEFORM.IBIZSAMPLE0023.MAIN.GROUPPANEL.GROUP2]"
}, {
"defaultContent" : "常规条件",
"lanResTag" : "CONTROL.DEFORM.IBIZSAMPLE0024.DEFAULT.FORMPAGE.FORMPAGE1",
"lanResType" : "CONTROL",
"name" : "控件文本(CONTROL.*)[DEFORM.IBIZSAMPLE0024.DEFAULT.FORMPAGE.FORMPAGE1]"
}, {
"defaultContent" : "基本信息",
"lanResTag" : "CONTROL.DEFORM.IBIZSAMPLE0024.MAIN.FORMPAGE.FORMPAGE1",
"lanResType" : "CONTROL",
"name" : "控件文本(CONTROL.*)[DEFORM.IBIZSAMPLE0024.MAIN.FORMPAGE.FORMPAGE1]"
}, {
"defaultContent" : "其它",
"lanResTag" : "CONTROL.DEFORM.IBIZSAMPLE0024.MAIN.FORMPAGE.FORMPAGE2",
"lanResType" : "CONTROL",
"name" : "控件文本(CONTROL.*)[DEFORM.IBIZSAMPLE0024.MAIN.FORMPAGE.FORMPAGE2]"
}, {
"defaultContent" : "包数据1基本信息",
"lanResTag" : "CONTROL.DEFORM.IBIZSAMPLE0024.MAIN.GROUPPANEL.GROUP1",
"lanResType" : "CONTROL",
"name" : "控件文本(CONTROL.*)[DEFORM.IBIZSAMPLE0024.MAIN.GROUPPANEL.GROUP1]"
}, {
"defaultContent" : "操作信息",
"lanResTag" : "CONTROL.DEFORM.IBIZSAMPLE0024.MAIN.GROUPPANEL.GROUP2",
"lanResType" : "CONTROL",
"name" : "控件文本(CONTROL.*)[DEFORM.IBIZSAMPLE0024.MAIN.GROUPPANEL.GROUP2]"
}, {
"lanResTag" : "CONTROL.DEFSFITEM.IBIZSAMPLE0022.N_IBIZSAMPLE0022NAME_LIKE",
"lanResType" : "CONTROL",
"name" : "控件文本(CONTROL.*)[DEFSFITEM.IBIZSAMPLE0022.N_IBIZSAMPLE0022NAME_LIKE]",
"refFlag" : true
}, {
"lanResTag" : "CONTROL.DEFSFITEM.IBIZSAMPLE0023.N_IBIZSAMPLE0023NAME_LIKE",
"lanResType" : "CONTROL",
"name" : "控件文本(CONTROL.*)[DEFSFITEM.IBIZSAMPLE0023.N_IBIZSAMPLE0023NAME_LIKE]",
"refFlag" : true
}, {
"lanResTag" : "OTHER.TEST",
"lanResType" : "OTHER",
......@@ -20,6 +147,111 @@
"lanResType" : "PAGE",
"name" : "测试资源",
"refFlag" : true
}, {
"defaultContent" : "数组属性编辑视图",
"lanResTag" : "PAGE.TITLE.IBIZSAMPLE0022.EDITVIEW2",
"lanResType" : "PAGE",
"name" : "界面文本(PAGE.*)[TITLE.IBIZSAMPLE0022.EDITVIEW2]"
}, {
"defaultContent" : "数组属性编辑视图",
"lanResTag" : "PAGE.TITLE.IBIZSAMPLE0022.EDITVIEW",
"lanResType" : "PAGE",
"name" : "界面文本(PAGE.*)[TITLE.IBIZSAMPLE0022.EDITVIEW]"
}, {
"defaultContent" : "数组属性表格视图",
"lanResTag" : "PAGE.TITLE.IBIZSAMPLE0022.GRIDVIEW",
"lanResType" : "PAGE",
"name" : "界面文本(PAGE.*)[TITLE.IBIZSAMPLE0022.GRIDVIEW]"
}, {
"defaultContent" : "数组属性数据多项选择视图",
"lanResTag" : "PAGE.TITLE.IBIZSAMPLE0022.MPICKUPVIEW",
"lanResType" : "PAGE",
"name" : "界面文本(PAGE.*)[TITLE.IBIZSAMPLE0022.MPICKUPVIEW]"
}, {
"defaultContent" : "数组属性选择表格视图",
"lanResTag" : "PAGE.TITLE.IBIZSAMPLE0022.PICKUPGRIDVIEW",
"lanResType" : "PAGE",
"name" : "界面文本(PAGE.*)[TITLE.IBIZSAMPLE0022.PICKUPGRIDVIEW]"
}, {
"defaultContent" : "数组属性数据选择视图",
"lanResTag" : "PAGE.TITLE.IBIZSAMPLE0022.PICKUPVIEW",
"lanResType" : "PAGE",
"name" : "界面文本(PAGE.*)[TITLE.IBIZSAMPLE0022.PICKUPVIEW]"
}, {
"defaultContent" : "数组属性数据重定向视图",
"lanResTag" : "PAGE.TITLE.IBIZSAMPLE0022.REDIRECTVIEW",
"lanResType" : "PAGE",
"name" : "界面文本(PAGE.*)[TITLE.IBIZSAMPLE0022.REDIRECTVIEW]"
}, {
"defaultContent" : "头数据编辑视图",
"lanResTag" : "PAGE.TITLE.IBIZSAMPLE0023.EDITVIEW2",
"lanResType" : "PAGE",
"name" : "界面文本(PAGE.*)[TITLE.IBIZSAMPLE0023.EDITVIEW2]"
}, {
"defaultContent" : "头数据编辑视图",
"lanResTag" : "PAGE.TITLE.IBIZSAMPLE0023.EDITVIEW",
"lanResType" : "PAGE",
"name" : "界面文本(PAGE.*)[TITLE.IBIZSAMPLE0023.EDITVIEW]"
}, {
"defaultContent" : "头数据表格视图",
"lanResTag" : "PAGE.TITLE.IBIZSAMPLE0023.GRIDVIEW",
"lanResType" : "PAGE",
"name" : "界面文本(PAGE.*)[TITLE.IBIZSAMPLE0023.GRIDVIEW]"
}, {
"defaultContent" : "头数据数据多项选择视图",
"lanResTag" : "PAGE.TITLE.IBIZSAMPLE0023.MPICKUPVIEW",
"lanResType" : "PAGE",
"name" : "界面文本(PAGE.*)[TITLE.IBIZSAMPLE0023.MPICKUPVIEW]"
}, {
"defaultContent" : "头数据选择表格视图",
"lanResTag" : "PAGE.TITLE.IBIZSAMPLE0023.PICKUPGRIDVIEW",
"lanResType" : "PAGE",
"name" : "界面文本(PAGE.*)[TITLE.IBIZSAMPLE0023.PICKUPGRIDVIEW]"
}, {
"defaultContent" : "头数据数据选择视图",
"lanResTag" : "PAGE.TITLE.IBIZSAMPLE0023.PICKUPVIEW",
"lanResType" : "PAGE",
"name" : "界面文本(PAGE.*)[TITLE.IBIZSAMPLE0023.PICKUPVIEW]"
}, {
"defaultContent" : "头数据数据重定向视图",
"lanResTag" : "PAGE.TITLE.IBIZSAMPLE0023.REDIRECTVIEW",
"lanResType" : "PAGE",
"name" : "界面文本(PAGE.*)[TITLE.IBIZSAMPLE0023.REDIRECTVIEW]"
}, {
"defaultContent" : "包数据1编辑视图",
"lanResTag" : "PAGE.TITLE.IBIZSAMPLE0024.EDITVIEW2",
"lanResType" : "PAGE",
"name" : "界面文本(PAGE.*)[TITLE.IBIZSAMPLE0024.EDITVIEW2]"
}, {
"defaultContent" : "包数据1编辑视图",
"lanResTag" : "PAGE.TITLE.IBIZSAMPLE0024.EDITVIEW",
"lanResType" : "PAGE",
"name" : "界面文本(PAGE.*)[TITLE.IBIZSAMPLE0024.EDITVIEW]"
}, {
"defaultContent" : "包数据1表格视图",
"lanResTag" : "PAGE.TITLE.IBIZSAMPLE0024.GRIDVIEW",
"lanResType" : "PAGE",
"name" : "界面文本(PAGE.*)[TITLE.IBIZSAMPLE0024.GRIDVIEW]"
}, {
"defaultContent" : "包数据1数据多项选择视图",
"lanResTag" : "PAGE.TITLE.IBIZSAMPLE0024.MPICKUPVIEW",
"lanResType" : "PAGE",
"name" : "界面文本(PAGE.*)[TITLE.IBIZSAMPLE0024.MPICKUPVIEW]"
}, {
"defaultContent" : "包数据1选择表格视图",
"lanResTag" : "PAGE.TITLE.IBIZSAMPLE0024.PICKUPGRIDVIEW",
"lanResType" : "PAGE",
"name" : "界面文本(PAGE.*)[TITLE.IBIZSAMPLE0024.PICKUPGRIDVIEW]"
}, {
"defaultContent" : "包数据1数据选择视图",
"lanResTag" : "PAGE.TITLE.IBIZSAMPLE0024.PICKUPVIEW",
"lanResType" : "PAGE",
"name" : "界面文本(PAGE.*)[TITLE.IBIZSAMPLE0024.PICKUPVIEW]"
}, {
"defaultContent" : "包数据1数据重定向视图",
"lanResTag" : "PAGE.TITLE.IBIZSAMPLE0024.REDIRECTVIEW",
"lanResType" : "PAGE",
"name" : "界面文本(PAGE.*)[TITLE.IBIZSAMPLE0024.REDIRECTVIEW]"
}, {
"defaultContent" : "类型1",
"lanResTag" : "CL.ITEM.LNAME.KIND1",
......
......@@ -663,6 +663,18 @@
"modelref" : true,
"path" : "PSMODULES/Sample/PSDATAENTITIES/IBIZSample0021.json",
"name" : "IBIZSAMPLE0021"
}, {
"modelref" : true,
"path" : "PSMODULES/Sample/PSDATAENTITIES/IBIZSample0022.json",
"name" : "IBIZSAMPLE0022"
}, {
"modelref" : true,
"path" : "PSMODULES/Sample/PSDATAENTITIES/IBIZSample0023.json",
"name" : "IBIZSAMPLE0023"
}, {
"modelref" : true,
"path" : "PSMODULES/Sample/PSDATAENTITIES/IBIZSample0024.json",
"name" : "IBIZSAMPLE0024"
}, {
"modelref" : true,
"path" : "PSMODULES/Sample/PSDATAENTITIES/IBIZSoftwareSuit.json",
......@@ -2194,6 +2206,15 @@
}, {
"modelref" : true,
"path" : "PSMODULES/Sample/PSDATAENTITIES/IBIZSample0021.json"
}, {
"modelref" : true,
"path" : "PSMODULES/Sample/PSDATAENTITIES/IBIZSample0022.json"
}, {
"modelref" : true,
"path" : "PSMODULES/Sample/PSDATAENTITIES/IBIZSample0023.json"
}, {
"modelref" : true,
"path" : "PSMODULES/Sample/PSDATAENTITIES/IBIZSample0024.json"
}, {
"modelref" : true,
"path" : "PSMODULES/Sample/PSDATAENTITIES/IBIZSoftwareSuit.json"
......
......@@ -172,7 +172,7 @@
<!--输出实体[IBIZBOOK]数据结构 -->
<changeSet author="a_LAB01_df847bdfd" id="tab-ibizbook-1581-7">
<changeSet author="a_LAB01_df847bdfd" id="tab-ibizbook-1582-7">
<createTable tableName="T_IBIZBOOK">
<column name="CREATEMAN" remarks="" type="VARCHAR(60)">
</column>
......@@ -1199,8 +1199,60 @@
</changeSet>
<!--输出实体[IBIZSAMPLE0022]数据结构 -->
<changeSet author="a_LAB01_df847bdfd" id="tab-ibizsample0022-10-40">
<createTable tableName="T_IBIZSAMPLE0022">
<column name="IBIZSAMPLE0022NAME" remarks="" type="VARCHAR(200)">
</column>
<column name="IBIZSAMPLE0022ID" remarks="" type="VARCHAR(100)">
<constraints primaryKey="true" primaryKeyName="PK_IBIZSAMPLE0022_IBIZSAMPLE00"/>
</column>
<column name="CREATEMAN" remarks="" type="VARCHAR(60)">
</column>
<column name="UPDATEMAN" remarks="" type="VARCHAR(60)">
</column>
<column name="CREATEDATE" remarks="" type="DATETIME">
</column>
<column name="UPDATEDATE" remarks="" type="DATETIME">
</column>
<column name="TEXTARRAY" remarks="" type="VARCHAR(1000)">
</column>
<column name="INTARRAY" remarks="" type="VARCHAR(1000)">
</column>
<column name="BIGINTARRAY" remarks="" type="VARCHAR(1000)">
</column>
<column name="FLOATARRAY" remarks="" type="VARCHAR(1000)">
</column>
<column name="DECIMALARRAY" remarks="" type="VARCHAR(1000)">
</column>
</createTable>
</changeSet>
<!--输出实体[IBIZSAMPLE0023]数据结构 -->
<changeSet author="a_LAB01_df847bdfd" id="tab-ibizsample0023-3-41">
<createTable tableName="T_IBIZSAMPLE0023">
<column name="IBIZSAMPLE0023ID" remarks="" type="VARCHAR(100)">
<constraints primaryKey="true" primaryKeyName="PK_IBIZSAMPLE0023_IBIZSAMPLE00"/>
</column>
<column name="UPDATEDATE" remarks="" type="DATETIME">
</column>
<column name="CREATEMAN" remarks="" type="VARCHAR(60)">
</column>
<column name="UPDATEMAN" remarks="" type="VARCHAR(60)">
</column>
<column name="CREATEDATE" remarks="" type="DATETIME">
</column>
<column name="IBIZSAMPLE0023NAME" remarks="" type="VARCHAR(200)">
</column>
</createTable>
</changeSet>
<!--输出实体[IBIZSOFTWARESUIT]数据结构 -->
<changeSet author="a_LAB01_df847bdfd" id="tab-ibizsoftwaresuit-1-40">
<changeSet author="a_LAB01_df847bdfd" id="tab-ibizsoftwaresuit-1-42">
<createTable tableName="T_IBIZSOFTWARESUIT">
<column name="CREATEMAN" remarks="" type="VARCHAR(60)">
</column>
......@@ -1220,7 +1272,7 @@
<!--输出实体[IBIZSTORAGE]数据结构 -->
<changeSet author="a_LAB01_df847bdfd" id="tab-ibizstorage-1-41">
<changeSet author="a_LAB01_df847bdfd" id="tab-ibizstorage-1-43">
<createTable tableName="T_IBIZSTORAGE">
<column name="IBIZSTORAGEID" remarks="" type="VARCHAR(100)">
<constraints primaryKey="true" primaryKeyName="PK_IBIZSTORAGE_IBIZSTORAGEID"/>
......@@ -1240,7 +1292,7 @@
<!--输出实体[IBIZSUPPLIER]数据结构 -->
<changeSet author="a_LAB01_df847bdfd" id="tab-ibizsupplier-1-42">
<changeSet author="a_LAB01_df847bdfd" id="tab-ibizsupplier-1-44">
<createTable tableName="t_supplier">
<column name="DELETEFLAG" remarks="" type="VARCHAR(100)">
</column>
......@@ -1266,7 +1318,7 @@
<!--输出实体[IBIZTASK]数据结构 -->
<changeSet author="a_LAB01_df847bdfd" id="tab-ibiztask-1-43">
<changeSet author="a_LAB01_df847bdfd" id="tab-ibiztask-1-45">
<createTable tableName="T_IBIZTASK">
<column name="IBIZTASKID" remarks="" type="VARCHAR(100)">
<constraints primaryKey="true" primaryKeyName="PK_IBIZTASK_IBIZTASKID"/>
......@@ -1288,7 +1340,7 @@
<!--输出实体[IBIZTASKTEAM]数据结构 -->
<changeSet author="a_LAB01_df847bdfd" id="tab-ibiztaskteam-2-44">
<changeSet author="a_LAB01_df847bdfd" id="tab-ibiztaskteam-2-46">
<createTable tableName="T_IBIZTASKTEAM">
<column name="UPDATEMAN" remarks="" type="VARCHAR(60)">
</column>
......@@ -1314,7 +1366,7 @@
<!--输出实体[IBIZUNIPRODUCT]数据结构 -->
<changeSet author="a_LAB01_df847bdfd" id="tab-ibizuniproduct-35-45">
<changeSet author="a_LAB01_df847bdfd" id="tab-ibizuniproduct-35-47">
<createTable tableName="T_IBIZUNIPRODUCT">
<column name="UNITPRICE" remarks="" type="FLOAT">
</column>
......@@ -1340,7 +1392,7 @@
<!--输出实体[IBIZVIEWMSG]数据结构 -->
<changeSet author="a_LAB01_df847bdfd" id="tab-ibizviewmsg-1-46">
<changeSet author="a_LAB01_df847bdfd" id="tab-ibizviewmsg-1-48">
<createTable tableName="T_IBIZVIEWMSG">
<column name="IBIZVIEWMSGID" remarks="" type="VARCHAR(100)">
<constraints primaryKey="true" primaryKeyName="PK_IBIZVIEWMSG_IBIZVIEWMSGID"/>
......@@ -1360,7 +1412,7 @@
<!--输出实体[MICROCOMPONENT]数据结构 -->
<changeSet author="a_LAB01_df847bdfd" id="tab-microcomponent-1-47">
<changeSet author="a_LAB01_df847bdfd" id="tab-microcomponent-1-49">
<createTable tableName="T_MICROCOMPONENT">
<column name="CREATEDATE" remarks="" type="DATETIME">
</column>
......@@ -1477,7 +1529,7 @@
<!--输出实体[IBIZQJ]外键关系 -->
<!--输出实体[IBIZSAMPLE]外键关系 -->
<!--输出实体[IBIZSAMPLE0001]外键关系 -->
<changeSet author="a_LAB01_df847bdfd" id="fk-ibizsample0001-84-48">
<changeSet author="a_LAB01_df847bdfd" id="fk-ibizsample0001-84-50">
<addForeignKeyConstraint baseColumnNames="IBIZSAMPLE0002ID" baseTableName="T_IBIZSAMPLE0001" constraintName="DER1N_IBIZSAMPLE0001_IBIZSAMPL" deferrable="false" initiallyDeferred="false" onDelete="RESTRICT" onUpdate="RESTRICT" referencedColumnNames="IBIZSAMPLE0002ID" referencedTableName="T_IBIZSAMPLE0002" validate="true"/>
</changeSet>
<!--输出实体[IBIZSAMPLE0002]外键关系 -->
......@@ -1486,7 +1538,7 @@
<!--输出实体[IBIZSAMPLE0005]外键关系 -->
<!--输出实体[IBIZSAMPLE0006]外键关系 -->
<!--输出实体[IBIZSAMPLE0007]外键关系 -->
<changeSet author="a_LAB01_df847bdfd" id="fk-ibizsample0007-1-49">
<changeSet author="a_LAB01_df847bdfd" id="fk-ibizsample0007-1-51">
<addForeignKeyConstraint baseColumnNames="IBIZSAMPLE0006ID" baseTableName="T_IBIZSAMPLE0007" constraintName="DER1N_IBIZSAMPLE0007_IBIZSAMPL" deferrable="false" initiallyDeferred="false" onDelete="RESTRICT" onUpdate="RESTRICT" referencedColumnNames="IBIZSAMPLE0006ID" referencedTableName="T_IBIZSAMPLE0006" validate="true"/>
</changeSet>
<!--输出实体[IBIZSAMPLE0008]外键关系 -->
......@@ -1502,16 +1554,18 @@
<!--输出实体[IBIZSAMPLE0018]外键关系 -->
<!--输出实体[IBIZSAMPLE0019]外键关系 -->
<!--输出实体[IBIZSAMPLE0020]外键关系 -->
<changeSet author="a_LAB01_df847bdfd" id="fk-ibizsample0020-1-50">
<changeSet author="a_LAB01_df847bdfd" id="fk-ibizsample0020-1-52">
<addForeignKeyConstraint baseColumnNames="IBIZSAMPLE0019ID" baseTableName="T_IBIZSAMPLE0020" constraintName="DER1N_IBIZSAMPLE0020_IBIZSAMPL" deferrable="false" initiallyDeferred="false" onDelete="RESTRICT" onUpdate="RESTRICT" referencedColumnNames="IBIZSAMPLE0019ID" referencedTableName="T_IBIZSAMPLE0019" validate="true"/>
</changeSet>
<!--输出实体[IBIZSAMPLE0021]外键关系 -->
<!--输出实体[IBIZSAMPLE0022]外键关系 -->
<!--输出实体[IBIZSAMPLE0023]外键关系 -->
<!--输出实体[IBIZSOFTWARESUIT]外键关系 -->
<!--输出实体[IBIZSTORAGE]外键关系 -->
<!--输出实体[IBIZSUPPLIER]外键关系 -->
<!--输出实体[IBIZTASK]外键关系 -->
<!--输出实体[IBIZTASKTEAM]外键关系 -->
<changeSet author="a_LAB01_df847bdfd" id="fk-ibiztaskteam-2-51">
<changeSet author="a_LAB01_df847bdfd" id="fk-ibiztaskteam-2-53">
<addForeignKeyConstraint baseColumnNames="ROOT" baseTableName="T_IBIZTASKTEAM" constraintName="DER1N_IBIZTASKTEAM_IBIZTASK_RO" deferrable="false" initiallyDeferred="false" onDelete="RESTRICT" onUpdate="RESTRICT" referencedColumnNames="IBIZTASKID" referencedTableName="T_IBIZTASK" validate="true"/>
</changeSet>
<!--输出实体[IBIZUNIPRODUCT]外键关系 -->
......
......@@ -8211,6 +8211,321 @@
],
"parentEntitys":[
]
}
,
{
"entity_name":"IBIZSAMPLE0022",
"logic_name":"数组属性",
"code_name":"IBIZSample0022",
"table_name":"T_IBIZSAMPLE0022",
"system_id":"DemoSys",
"system_name":"DemoSys",
"module_id":"Sample",
"module_name":"示例",
"fields":[
{
"fieldname":"IBIZSAMPLE0022NAME" ,
"codename":"IBIZSample0022Name",
"field_logic_name":"数组属性名称",
"entity_name":"IBIZSAMPLE0022",
"field_type":"TEXT",
"nullable":1,
"physical_field":1,
"data_type":"VARCHAR",
"data_length":200,
"key_field":0,
"show_order":1000,
"major_field":1
},
{
"fieldname":"IBIZSAMPLE0022ID" ,
"codename":"IBIZSample0022Id",
"field_logic_name":"数组属性标识",
"entity_name":"IBIZSAMPLE0022",
"field_type":"GUID",
"nullable":0,
"physical_field":1,
"data_type":"VARCHAR",
"data_length":100,
"key_field":1,
"show_order":1000,
"major_field":0
},
{
"fieldname":"CREATEMAN" ,
"codename":"CreateMan",
"field_logic_name":"建立人",
"entity_name":"IBIZSAMPLE0022",
"field_type":"TEXT",
"dict":"SysOperator",
"nullable":0,
"physical_field":1,
"data_type":"VARCHAR",
"data_length":60,
"predefined":"CREATEMAN",
"key_field":0,
"show_order":1000,
"major_field":0
},
{
"fieldname":"UPDATEMAN" ,
"codename":"UpdateMan",
"field_logic_name":"更新人",
"entity_name":"IBIZSAMPLE0022",
"field_type":"TEXT",
"dict":"SysOperator",
"nullable":0,
"physical_field":1,
"data_type":"VARCHAR",
"data_length":60,
"predefined":"UPDATEMAN",
"key_field":0,
"show_order":1000,
"major_field":0
},
{
"fieldname":"CREATEDATE" ,
"codename":"CreateDate",
"field_logic_name":"建立时间",
"entity_name":"IBIZSAMPLE0022",
"field_type":"DATETIME",
"nullable":0,
"physical_field":1,
"data_type":"DATETIME",
"data_length":8,
"predefined":"CREATEDATE",
"key_field":0,
"show_order":1000,
"major_field":0
},
{
"fieldname":"UPDATEDATE" ,
"codename":"UpdateDate",
"field_logic_name":"更新时间",
"entity_name":"IBIZSAMPLE0022",
"field_type":"DATETIME",
"nullable":0,
"physical_field":1,
"data_type":"DATETIME",
"data_length":8,
"predefined":"UPDATEDATE",
"key_field":0,
"show_order":1000,
"major_field":0
},
{
"fieldname":"TEXTARRAY" ,
"codename":"Textarray",
"field_logic_name":"文本数组",
"entity_name":"IBIZSAMPLE0022",
"field_type":"TEXTARRAY",
"nullable":1,
"physical_field":1,
"data_type":"VARCHAR",
"data_length":1000,
"key_field":0,
"show_order":1000,
"major_field":0
},
{
"fieldname":"INTARRAY" ,
"codename":"Intarray",
"field_logic_name":"整形数组",
"entity_name":"IBIZSAMPLE0022",
"field_type":"INTARRAY",
"nullable":1,
"physical_field":1,
"data_type":"VARCHAR",
"data_length":1000,
"key_field":0,
"show_order":1000,
"major_field":0
},
{
"fieldname":"BIGINTARRAY" ,
"codename":"Bigintarray",
"field_logic_name":"大整形数组",
"entity_name":"IBIZSAMPLE0022",
"field_type":"BIGINTARRAY",
"nullable":1,
"physical_field":1,
"data_type":"VARCHAR",
"data_length":1000,
"key_field":0,
"show_order":1000,
"major_field":0
},
{
"fieldname":"FLOATARRAY" ,
"codename":"Floatarray",
"field_logic_name":"浮点数组",
"entity_name":"IBIZSAMPLE0022",
"field_type":"FLOATARRAY",
"nullable":1,
"physical_field":1,
"data_type":"VARCHAR",
"data_length":1000,
"key_field":0,
"show_order":1000,
"major_field":0
},
{
"fieldname":"DECIMALARRAY" ,
"codename":"Decimalarray",
"field_logic_name":"数值数组",
"entity_name":"IBIZSAMPLE0022",
"field_type":"DECIMALARRAY",
"nullable":1,
"physical_field":1,
"data_type":"VARCHAR",
"data_length":1000,
"key_field":0,
"show_order":1000,
"major_field":0
}
],
"subEntitys":[
],
"parentEntitys":[
]
}
,
{
"entity_name":"IBIZSAMPLE0023",
"logic_name":"头数据",
"code_name":"IBIZSample0023",
"table_name":"T_IBIZSAMPLE0023",
"system_id":"DemoSys",
"system_name":"DemoSys",
"module_id":"Sample",
"module_name":"示例",
"fields":[
{
"fieldname":"IBIZSAMPLE0023ID" ,
"codename":"IBIZSample0023Id",
"field_logic_name":"头数据标识",
"entity_name":"IBIZSAMPLE0023",
"field_type":"GUID",
"nullable":0,
"physical_field":1,
"data_type":"VARCHAR",
"data_length":100,
"key_field":1,
"show_order":1000,
"major_field":0
},
{
"fieldname":"UPDATEDATE" ,
"codename":"UpdateDate",
"field_logic_name":"更新时间",
"entity_name":"IBIZSAMPLE0023",
"field_type":"DATETIME",
"nullable":0,
"physical_field":1,
"data_type":"DATETIME",
"data_length":8,
"predefined":"UPDATEDATE",
"key_field":0,
"show_order":1000,
"major_field":0
},
{
"fieldname":"CREATEMAN" ,
"codename":"CreateMan",
"field_logic_name":"建立人",
"entity_name":"IBIZSAMPLE0023",
"field_type":"TEXT",
"dict":"SysOperator",
"nullable":0,
"physical_field":1,
"data_type":"VARCHAR",
"data_length":60,
"predefined":"CREATEMAN",
"key_field":0,
"show_order":1000,
"major_field":0
},
{
"fieldname":"UPDATEMAN" ,
"codename":"UpdateMan",
"field_logic_name":"更新人",
"entity_name":"IBIZSAMPLE0023",
"field_type":"TEXT",
"dict":"SysOperator",
"nullable":0,
"physical_field":1,
"data_type":"VARCHAR",
"data_length":60,
"predefined":"UPDATEMAN",
"key_field":0,
"show_order":1000,
"major_field":0
},
{
"fieldname":"CREATEDATE" ,
"codename":"CreateDate",
"field_logic_name":"建立时间",
"entity_name":"IBIZSAMPLE0023",
"field_type":"DATETIME",
"nullable":0,
"physical_field":1,
"data_type":"DATETIME",
"data_length":8,
"predefined":"CREATEDATE",
"key_field":0,
"show_order":1000,
"major_field":0
},
{
"fieldname":"IBIZSAMPLE0023NAME" ,
"codename":"IBIZSample0023Name",
"field_logic_name":"头数据名称",
"entity_name":"IBIZSAMPLE0023",
"field_type":"TEXT",
"nullable":1,
"physical_field":1,
"data_type":"VARCHAR",
"data_length":200,
"key_field":0,
"show_order":1000,
"major_field":1
}
],
"subEntitys":[
],
"parentEntitys":[
]
}
,
{
"entity_name":"IBIZSAMPLE0024",
"logic_name":"包数据1",
"code_name":"IBIZSample0024",
"table_name":"",
"system_id":"DemoSys",
"system_name":"DemoSys",
"module_id":"Sample",
"module_name":"示例",
"fields":[
{
"fieldname":"NAME" ,
"codename":"Name",
"field_logic_name":"名称",
"entity_name":"IBIZSAMPLE0024",
"field_type":"TEXT",
"nullable":1,
"physical_field":1,
"data_type":"VARCHAR",
"data_length":100,
"key_field":1,
"show_order":1000,
"major_field":1
}
],
"subEntitys":[
],
"parentEntitys":[
]
}
,
{
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册