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

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

上级 446b2a9e
......@@ -12,4 +12,4 @@
**.iml
*.jar
*.log
.DS_Store
\ No newline at end of file
.DS_Store
......@@ -712,7 +712,7 @@ export default class DefaultBase extends Vue implements ControlInterface {
*/
public load(opt: any = {}): void {
if(!this.loadAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKCalendarView' + (this.$t('app.searchForm.notConfig.loadAction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKUsr9GridView' + (this.$t('app.searchForm.notConfig.loadAction') as string) });
return;
}
const arg: any = { ...opt };
......@@ -748,7 +748,7 @@ export default class DefaultBase extends Vue implements ControlInterface {
*/
public async loadDraft(opt: any = {},mode?:string): Promise<any> {
if(!this.loaddraftAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKCalendarView' + (this.$t('app.searchForm.notConfig.loaddraftAction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKUsr9GridView' + (this.$t('app.searchForm.notConfig.loaddraftAction') as string) });
return;
}
const arg: any = { ...opt } ;
......
......@@ -1344,7 +1344,7 @@ export default class GuideReturnFormBase 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: 'IBIZBOOKWizardView_layout' + (this.$t('app.formpage.notconfig.loadaction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView' + (this.$t('app.formpage.notconfig.loadaction') as string) });
return;
}
const arg: any = { ...opt };
......@@ -1391,7 +1391,7 @@ export default class GuideReturnFormBase 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: 'IBIZBOOKWizardView_layout' + (this.$t('app.formpage.notconfig.loaddraftaction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView' + (this.$t('app.formpage.notconfig.loaddraftaction') as string) });
return;
}
const arg: any = { ...opt } ;
......@@ -1461,7 +1461,7 @@ export default class GuideReturnFormBase 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: 'IBIZBOOKWizardView_layout' + (this.$t('app.formpage.notconfig.actionname') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView' + (this.$t('app.formpage.notconfig.actionname') as string) });
return;
}
Object.assign(arg,{viewparams:this.viewparams});
......@@ -1569,7 +1569,7 @@ export default class GuideReturnFormBase 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: 'IBIZBOOKWizardView_layout' + (this.$t('app.formpage.notconfig.actionname') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView' + (this.$t('app.formpage.notconfig.actionname') as string) });
return;
}
Object.assign(arg, { viewparams: this.viewparams });
......@@ -1661,7 +1661,7 @@ export default class GuideReturnFormBase 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: 'IBIZBOOKWizardView_layout' + (this.$t('app.formpage.notconfig.removeaction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView' + (this.$t('app.formpage.notconfig.removeaction') as string) });
return;
}
const arg: any = opt[0];
......
......@@ -1447,7 +1447,7 @@ export default class GuideViewFormBase 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: 'IBIZBOOKWizardView_layout' + (this.$t('app.formpage.notconfig.loadaction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView' + (this.$t('app.formpage.notconfig.loadaction') as string) });
return;
}
const arg: any = { ...opt };
......@@ -1494,7 +1494,7 @@ export default class GuideViewFormBase 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: 'IBIZBOOKWizardView_layout' + (this.$t('app.formpage.notconfig.loaddraftaction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView' + (this.$t('app.formpage.notconfig.loaddraftaction') as string) });
return;
}
const arg: any = { ...opt } ;
......@@ -1564,7 +1564,7 @@ export default class GuideViewFormBase 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: 'IBIZBOOKWizardView_layout' + (this.$t('app.formpage.notconfig.actionname') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView' + (this.$t('app.formpage.notconfig.actionname') as string) });
return;
}
Object.assign(arg,{viewparams:this.viewparams});
......@@ -1672,7 +1672,7 @@ export default class GuideViewFormBase 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: 'IBIZBOOKWizardView_layout' + (this.$t('app.formpage.notconfig.actionname') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView' + (this.$t('app.formpage.notconfig.actionname') as string) });
return;
}
Object.assign(arg, { viewparams: this.viewparams });
......@@ -1764,7 +1764,7 @@ export default class GuideViewFormBase 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: 'IBIZBOOKWizardView_layout' + (this.$t('app.formpage.notconfig.removeaction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView' + (this.$t('app.formpage.notconfig.removeaction') as string) });
return;
}
const arg: any = opt[0];
......
......@@ -55,23 +55,6 @@
git clone -b master $para2 demosys/
export NODE_OPTIONS=--max-old-space-size=4096
cd demosys/
cd demo-boot
mvn ibizlabcli:code
cd ..
set +e
git config user.name "ibizdev"
git add .
git commit -m "generator before deploy $para5"
git push origin master
git config user.name "root"
set -e
mvn package -Pboot
cd demo-boot
sed -i "s#dstimage#$para5#g" pom.xml
sed -i "s#dstimage#$para5#g" src/main/docker/demo-boot-demoapi.yaml
mvn -Pboot docker:build
mvn -Pboot docker:push
docker -H $para1 stack deploy --compose-file=src/main/docker/demo-boot-demoapi.yaml iBizDemo --with-registry-auth
</command>
</hudson.tasks.Shell>
</builders>
......
......@@ -10,6 +10,6 @@ CMD echo "The application will start in ${IBIZ_SLEEP}s..." && \
sleep ${IBIZ_SLEEP} && \
java ${JAVA_OPTS} -Duser.timezone=$TZ -Djava.security.egd=file:/dev/./urandom -jar /demo-boot.jar
EXPOSE 52000
EXPOSE 8081
ADD demo-boot.jar /demo-boot.jar
......@@ -51,4 +51,4 @@ public class BootApplication extends WebMvcConfigurerAdapter {
super.addArgumentResolvers(argumentResolvers);
argumentResolvers.add(resolver);
}
}
\ No newline at end of file
}
......@@ -11,51 +11,51 @@
"path" : "PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZBOOK.json"
},
"getPSDETreeColumns" : [ {
"caption" : "归还日期",
"codeName" : "returntime",
"caption" : "作者",
"codeName" : "author",
"columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "returntime",
"name" : "returntime",
"dataItemName" : "author",
"name" : "author",
"width" : 200,
"widthUnit" : "px",
"enableExpand" : false,
"enableSort" : false
}, {
"caption" : "出版社",
"codeName" : "press",
"caption" : "图书名称",
"codeName" : "ibizbookname",
"columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "press",
"name" : "press",
"dataItemName" : "ibizbookname",
"name" : "ibizbookname",
"width" : 200,
"widthUnit" : "px",
"enableExpand" : false,
"enableSort" : false
}, {
"caption" : "借出日期",
"codeName" : "lendouttime",
"caption" : "归还日期",
"codeName" : "returntime",
"columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "lendouttime",
"name" : "lendouttime",
"dataItemName" : "returntime",
"name" : "returntime",
"width" : 200,
"widthUnit" : "px",
"enableExpand" : false,
"enableSort" : false
}, {
"caption" : "作者",
"codeName" : "author",
"caption" : "出版社",
"codeName" : "press",
"columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "author",
"name" : "author",
"dataItemName" : "press",
"name" : "press",
"width" : 200,
"widthUnit" : "px",
"enableExpand" : false,
"enableSort" : false
}, {
"caption" : "图书名称",
"codeName" : "ibizbookname",
"caption" : "借出日期",
"codeName" : "lendouttime",
"columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "ibizbookname",
"name" : "ibizbookname",
"dataItemName" : "lendouttime",
"name" : "lendouttime",
"width" : 200,
"widthUnit" : "px",
"enableExpand" : false,
......
......@@ -19,6 +19,16 @@
}
} ],
"getPSDETreeColumns" : [ {
"caption" : "图书描述",
"codeName" : "subtext",
"columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "subtext",
"name" : "subtext",
"width" : 50,
"widthUnit" : "px",
"enableExpand" : false,
"enableSort" : false
}, {
"caption" : "图书名称",
"codeName" : "ibizbookname",
"columnType" : "DEFGRIDCOLUMN",
......@@ -38,16 +48,6 @@
"widthUnit" : "px",
"enableExpand" : false,
"enableSort" : false
}, {
"caption" : "图书描述",
"codeName" : "subtext",
"columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "subtext",
"name" : "subtext",
"width" : 50,
"widthUnit" : "px",
"enableExpand" : false,
"enableSort" : false
} ],
"getPSDETreeNodeRSs" : [ {
"getChildPSDETreeNode" : {
......
......@@ -34,51 +34,51 @@
"id" : "GANTT"
},
"getPSDETreeColumns" : [ {
"caption" : "归还日期",
"codeName" : "returntime",
"caption" : "作者",
"codeName" : "author",
"columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "returntime",
"name" : "returntime",
"dataItemName" : "author",
"name" : "author",
"width" : 200,
"widthUnit" : "px",
"enableExpand" : false,
"enableSort" : false
}, {
"caption" : "出版社",
"codeName" : "press",
"caption" : "图书名称",
"codeName" : "ibizbookname",
"columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "press",
"name" : "press",
"dataItemName" : "ibizbookname",
"name" : "ibizbookname",
"width" : 200,
"widthUnit" : "px",
"enableExpand" : false,
"enableSort" : false
}, {
"caption" : "借出日期",
"codeName" : "lendouttime",
"caption" : "归还日期",
"codeName" : "returntime",
"columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "lendouttime",
"name" : "lendouttime",
"dataItemName" : "returntime",
"name" : "returntime",
"width" : 200,
"widthUnit" : "px",
"enableExpand" : false,
"enableSort" : false
}, {
"caption" : "作者",
"codeName" : "author",
"caption" : "出版社",
"codeName" : "press",
"columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "author",
"name" : "author",
"dataItemName" : "press",
"name" : "press",
"width" : 200,
"widthUnit" : "px",
"enableExpand" : false,
"enableSort" : false
}, {
"caption" : "图书名称",
"codeName" : "ibizbookname",
"caption" : "借出日期",
"codeName" : "lendouttime",
"columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "ibizbookname",
"name" : "ibizbookname",
"dataItemName" : "lendouttime",
"name" : "lendouttime",
"width" : 200,
"widthUnit" : "px",
"enableExpand" : false,
......
......@@ -75,6 +75,16 @@
"id" : "TREEGRIDEX"
},
"getPSDETreeColumns" : [ {
"caption" : "图书描述",
"codeName" : "subtext",
"columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "subtext",
"name" : "subtext",
"width" : 50,
"widthUnit" : "px",
"enableExpand" : false,
"enableSort" : false
}, {
"caption" : "图书名称",
"codeName" : "ibizbookname",
"columnType" : "DEFGRIDCOLUMN",
......@@ -94,16 +104,6 @@
"widthUnit" : "px",
"enableExpand" : false,
"enableSort" : false
}, {
"caption" : "图书描述",
"codeName" : "subtext",
"columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "subtext",
"name" : "subtext",
"width" : 50,
"widthUnit" : "px",
"enableExpand" : false,
"enableSort" : false
} ],
"getPSDETreeNodeRSs" : [ {
"getChildPSDETreeNode" : {
......
......@@ -16,54 +16,25 @@
}, {
"getFromPSWFProcess" : {
"modelref" : true,
"id" : "Interactive005"
},
"logicName" : "取消",
"name" : "C96",
"nextCondition" : "ANY",
"getToPSWFProcess" : {
"modelref" : true,
"id" : "End002"
},
"wFLinkType" : "IAACTION"
}, {
"formCodeName" : "approvedForm",
"getFromPSWFProcess" : {
"modelref" : true,
"id" : "Interactive005"
"id" : "Interactive002"
},
"logicName" : "重新提交",
"name" : "C49",
"nextCondition" : "ANY",
"name" : "TIMEOUT",
"getToPSWFProcess" : {
"modelref" : true,
"id" : "Interactive001"
},
"wFLinkType" : "IAACTION"
}, {
"getFromPSWFProcess" : {
"modelref" : true,
"id" : "Interactive003"
},
"logicName" : "不同意",
"name" : "C69",
"nextCondition" : "ANY",
"getToPSWFProcess" : {
"modelref" : true,
"id" : "Interactive005"
},
"wFLinkType" : "IAACTION"
"wFLinkType" : "TIMEOUT"
}, {
"getFromPSWFProcess" : {
"modelref" : true,
"id" : "Interactive003"
"id" : "Interactive002"
},
"logicName" : "同意",
"name" : "C40",
"name" : "C52",
"nextCondition" : "ANY",
"getToPSWFProcess" : {
"modelref" : true,
"id" : "Interactive004"
"id" : "Exclusivegateway001"
},
"wFLinkType" : "IAACTION"
}, {
......@@ -122,19 +93,6 @@
},
"viewCodeName" : "WFDynaActionView",
"wFLinkType" : "IAACTION"
}, {
"getFromPSWFProcess" : {
"modelref" : true,
"id" : "Interactive002"
},
"logicName" : "同意",
"name" : "C52",
"nextCondition" : "ANY",
"getToPSWFProcess" : {
"modelref" : true,
"id" : "Exclusivegateway001"
},
"wFLinkType" : "IAACTION"
}, {
"getFromPSWFProcess" : {
"modelref" : true,
......@@ -183,6 +141,59 @@
"id" : "Interactive003"
},
"wFLinkType" : "ROUTE"
}, {
"getFromPSWFProcess" : {
"modelref" : true,
"id" : "Interactive003"
},
"logicName" : "不同意",
"name" : "C69",
"nextCondition" : "ANY",
"getToPSWFProcess" : {
"modelref" : true,
"id" : "Interactive005"
},
"wFLinkType" : "IAACTION"
}, {
"getFromPSWFProcess" : {
"modelref" : true,
"id" : "Interactive003"
},
"logicName" : "同意",
"name" : "C40",
"nextCondition" : "ANY",
"getToPSWFProcess" : {
"modelref" : true,
"id" : "Interactive004"
},
"wFLinkType" : "IAACTION"
}, {
"getFromPSWFProcess" : {
"modelref" : true,
"id" : "Interactive005"
},
"logicName" : "取消",
"name" : "C96",
"nextCondition" : "ANY",
"getToPSWFProcess" : {
"modelref" : true,
"id" : "End002"
},
"wFLinkType" : "IAACTION"
}, {
"formCodeName" : "approvedForm",
"getFromPSWFProcess" : {
"modelref" : true,
"id" : "Interactive005"
},
"logicName" : "重新提交",
"name" : "C49",
"nextCondition" : "ANY",
"getToPSWFProcess" : {
"modelref" : true,
"id" : "Interactive001"
},
"wFLinkType" : "IAACTION"
} ],
"getPSWFProcesses" : [ {
"codeName" : "Start001",
......@@ -202,34 +213,6 @@
"asynchronousProcess" : false,
"enableTimeout" : false,
"startProcess" : true
}, {
"codeName" : "Interactive005",
"height" : 80,
"leftPos" : 150,
"logicName" : "发起人调整",
"msgType" : 0,
"multiInstMode" : "NONE",
"name" : "发起人调整",
"getPSWFLinks" : [ {
"modelref" : true,
"id" : "C96"
}, {
"modelref" : true,
"id" : "C49"
} ],
"getPSWFProcessRoles" : [ {
"name" : "[当前数据属性]",
"uDField" : "CREATEMAN",
"wFProcessRoleType" : "UDACTOR"
} ],
"timeout" : -1,
"topPos" : 195,
"wFProcessType" : "INTERACTIVE",
"wFStepValue" : "1",
"width" : 100,
"asynchronousProcess" : false,
"enableTimeout" : false,
"sendInform" : false
}, {
"codeName" : "End002",
"height" : 30,
......@@ -244,38 +227,56 @@
"enableTimeout" : false,
"terminalProcess" : true
}, {
"codeName" : "Interactive003",
"codeName" : "Interactive002",
"height" : 80,
"leftPos" : 555,
"logicName" : "经理审核",
"leftPos" : 420,
"logicName" : "财务经理审核",
"msgType" : 0,
"multiInstMode" : "NONE",
"name" : "经理审核",
"name" : "财务经理审核",
"getPSWFLinks" : [ {
"modelref" : true,
"id" : "C69"
"id" : "TIMEOUT"
}, {
"modelref" : true,
"id" : "C40"
"id" : "C52"
} ],
"getPSWFProcessRoles" : [ {
"name" : "经理",
"name" : "财务经理",
"getPSWFRole" : {
"modelref" : true,
"path" : "PSWFROLES/GeneralManager.json"
"path" : "PSWFROLES/FinancialManager.json"
},
"userData" : "org",
"userData2" : "CURORGID",
"wFProcessRoleType" : "WFROLE"
}, {
"name" : "[当前操作者]",
"wFProcessRoleType" : "CURACTOR"
} ],
"timeout" : -1,
"topPos" : 195,
"predefinedActions" : [ "SENDBACK" ],
"timeout" : 5,
"timeoutType" : "MINUTE",
"topPos" : 30,
"wFProcessType" : "INTERACTIVE",
"wFStepValue" : "20",
"wFStepValue" : "10",
"width" : 100,
"asynchronousProcess" : false,
"enableTimeout" : false,
"enableTimeout" : true,
"sendInform" : false
}, {
"codeName" : "End001",
"height" : 30,
"leftPos" : 780,
"logicName" : "结束",
"name" : "结束",
"timeout" : -1,
"topPos" : 221,
"wFProcessType" : "END",
"width" : 30,
"asynchronousProcess" : false,
"enableTimeout" : false,
"terminalProcess" : true
}, {
"codeName" : "Interactive004",
"height" : 80,
......@@ -344,71 +345,85 @@
"enableTimeout" : false,
"sendInform" : false
}, {
"codeName" : "End001",
"height" : 30,
"leftPos" : 780,
"logicName" : "结束",
"name" : "结束",
"codeName" : "Exclusivegateway001",
"height" : 40,
"leftPos" : 585,
"logicName" : "订单金额判断",
"name" : "订单金额判断",
"getPSWFLinks" : [ {
"modelref" : true,
"id" : "小于1W"
}, {
"modelref" : true,
"id" : "大于1W"
} ],
"timeout" : -1,
"topPos" : 221,
"wFProcessType" : "END",
"width" : 30,
"topPos" : 50,
"wFProcessType" : "EXCLUSIVEGATEWAY",
"width" : 40,
"asynchronousProcess" : false,
"enableTimeout" : false,
"terminalProcess" : true
"enableTimeout" : false
}, {
"codeName" : "Interactive002",
"codeName" : "Interactive003",
"height" : 80,
"leftPos" : 420,
"logicName" : "财务经理审核",
"leftPos" : 555,
"logicName" : "经理审核",
"msgType" : 0,
"multiInstMode" : "NONE",
"name" : "财务经理审核",
"name" : "经理审核",
"getPSWFLinks" : [ {
"modelref" : true,
"id" : "C52"
"id" : "C69"
}, {
"modelref" : true,
"id" : "C40"
} ],
"getPSWFProcessRoles" : [ {
"name" : "[当前操作者]",
"wFProcessRoleType" : "CURACTOR"
}, {
"name" : "财务经理",
"name" : "总经理",
"getPSWFRole" : {
"modelref" : true,
"path" : "PSWFROLES/FinancialManager.json"
"path" : "PSWFROLES/GeneralManager.json"
},
"userData" : "org",
"userData2" : "CURORGID",
"wFProcessRoleType" : "WFROLE"
} ],
"predefinedActions" : [ "SENDBACK" ],
"timeout" : -1,
"topPos" : 30,
"topPos" : 195,
"wFProcessType" : "INTERACTIVE",
"wFStepValue" : "10",
"wFStepValue" : "20",
"width" : 100,
"asynchronousProcess" : false,
"enableTimeout" : false,
"sendInform" : false
}, {
"codeName" : "Exclusivegateway001",
"height" : 40,
"leftPos" : 585,
"logicName" : "订单金额判断",
"name" : "订单金额判断",
"codeName" : "Interactive005",
"height" : 80,
"leftPos" : 150,
"logicName" : "发起人调整",
"msgType" : 0,
"multiInstMode" : "NONE",
"name" : "发起人调整",
"getPSWFLinks" : [ {
"modelref" : true,
"id" : "小于1W"
"id" : "C96"
}, {
"modelref" : true,
"id" : "大于1W"
"id" : "C49"
} ],
"getPSWFProcessRoles" : [ {
"name" : "[当前数据属性]",
"uDField" : "CREATEMAN",
"wFProcessRoleType" : "UDACTOR"
} ],
"timeout" : -1,
"topPos" : 50,
"wFProcessType" : "EXCLUSIVEGATEWAY",
"width" : 40,
"topPos" : 195,
"wFProcessType" : "INTERACTIVE",
"wFStepValue" : "1",
"width" : 100,
"asynchronousProcess" : false,
"enableTimeout" : false
"enableTimeout" : false,
"sendInform" : false
} ],
"getStartPSWFProcess" : {
"modelref" : true,
......
......@@ -10,8 +10,8 @@
</parent>
<artifactId>demo-core</artifactId>
<name>Demo Core</name>
<description>后台服务 Core,模板生成代码,再次发布会覆盖,建议不要直接修改,修改请在demo-boot项目中继承或覆盖重写</description>
<name>后台服务 Core</name>
<description>后台服务 Core</description>
<dependencies>
......@@ -20,14 +20,6 @@
<artifactId>ibizlab-boot-starter-data</artifactId>
<version>2.4.0-SNAPSHOT</version>
</dependency>
<!-- MySQL驱动包 -->
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
</dependency>
</dependencies>
<properties>
......@@ -101,4 +93,4 @@
</profile>
</profiles>
</project>
\ No newline at end of file
</project>
[
{
"name": "年度",
"code": "Years",
"group": "",
"memo": "",
}
]
\ No newline at end of file
[
{
"name":"年度",
"code":"Years",
"group":"",
"memo":"",
"enable":"",
}
]
......@@ -6,8 +6,8 @@
<artifactId>demo</artifactId>
<groupId>cn.ibizlab</groupId>
<version>1.0.0.0</version>
<name>Demo</name>
<description>后台服务</description>
<name>后台服务</name>
<description></description>
<packaging>pom</packaging>
<parent>
......@@ -105,7 +105,7 @@
<generateBackupPoms>false</generateBackupPoms>
</configuration>
</plugin>
<plugin>
<plugin>
<groupId>cn.ibizlab</groupId>
<artifactId>ibizlab-generator-plugin</artifactId>
<version>1.0-SNAPSHOT</version>
......@@ -137,4 +137,4 @@
</plugins>
</build>
</project>
\ No newline at end of file
</project>
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册