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

lxm1993 发布系统代码 [TrainSys,网页端]

上级 867063f5
......@@ -169,7 +169,7 @@
</changeSet>
<!--输出实体[PHONE]数据结构 -->
<changeSet author="root" id="tab-phone-57-6">
<changeSet author="root" id="tab-phone-59-6">
<createTable tableName="T_PHONE">
<column name="PHONEID" remarks="" type="VARCHAR(100)">
<constraints primaryKey="true" primaryKeyName="PK_PHONE"/>
......@@ -194,7 +194,7 @@
</changeSet>
<!--输出实体[REGINFO]数据结构 -->
<changeSet author="root" id="tab-reginfo-95-8">
<changeSet author="root" id="tab-reginfo-96-8">
<createTable tableName="T_REGINFO">
<column name="UPDATEDATE" remarks="" type="DATETIME">
</column>
......@@ -303,7 +303,7 @@
</changeSet>
<!--输出实体[REGINFO]外键关系 -->
<changeSet author="root" id="fk-reginfo-95-12">
<changeSet author="root" id="fk-reginfo-96-12">
<addForeignKeyConstraint baseColumnNames="STUDENTID" baseTableName="T_REGINFO" constraintName="F328B6E61632896255" deferrable="false" initiallyDeferred="false" onDelete="RESTRICT" onUpdate="RESTRICT" referencedColumnNames="STUDENTID" referencedTableName="T_STUDENT" validate="true"/>
</changeSet>
......
......@@ -1230,6 +1230,36 @@
"stringLength" : 100,
"valueFormat" : "%1$s"
} ],
"getAllPSDELogics" : [ {
"codeName" : "xxx",
"defaultParamName" : "Default",
"dynaModelFilePath" : "PSMODULES/common/PSDATAENTITIES/Phone/PSDELOGICS/xxx.json",
"logicName" : "xxx",
"name" : "xxx",
"getPSDELogicNodes" : [ {
"codeName" : "Begin",
"logicNodeType" : "BEGIN",
"name" : "开始",
"parallelOutput" : true
} ],
"getPSDELogicParams" : [ {
"codeName" : "Default",
"logicName" : "传入变量",
"name" : "传入变量",
"getParamPSDataEntity" : {
"modelref" : true,
"path" : "PSMODULES/common/PSDATAENTITIES/Phone.json"
},
"default" : true,
"entityParam" : true
} ],
"getStartPSDELogicNode" : {
"modelref" : true,
"id" : "Begin"
},
"enableBackend" : true,
"enableFront" : false
} ],
"getAllPSDEMethodDTOs" : [ {
"name" : "PhoneDTO",
"getPSDEMethodDTOFields" : [ {
......
{
"codeName" : "xxx",
"defaultParamName" : "Default",
"dynaModelFilePath" : "PSMODULES/common/PSDATAENTITIES/Phone/PSDELOGICS/xxx.json",
"logicName" : "xxx",
"name" : "xxx",
"getPSDELogicNodes" : [ {
"codeName" : "Begin",
"logicNodeType" : "BEGIN",
"name" : "开始",
"parallelOutput" : true
} ],
"getPSDELogicParams" : [ {
"codeName" : "Default",
"logicName" : "传入变量",
"name" : "传入变量",
"getParamPSDataEntity" : {
"modelref" : true,
"path" : "PSMODULES/common/PSDATAENTITIES/Phone.json"
},
"default" : true,
"entityParam" : true
} ],
"getStartPSDELogicNode" : {
"modelref" : true,
"id" : "Begin"
},
"enableBackend" : true,
"enableFront" : false
}
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<definitions xmlns="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:activiti="http://activiti.org/bpmn" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:dc="http://www.omg.org/spec/DD/20100524/DC" xmlns:di="http://www.omg.org/spec/DD/20100524/DI" xmlns:g="http://www.jboss.org/drools/flow/gpd" xmlns:tns="http://www.jboss.org/drools" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" expressionLanguage="http://www.mvel.org/2.0" id="Definition" name="" targetNamespace="http://www.jboss.org/drools" typeLanguage="http://www.java.com/javaTypes">
<process id="cn.ibizlab.trainsys.core.common.service.logic.phonexxx" isClosed="false" isExecutable="true" name="common_phone_xxx_ruleFlow" processType="Private" tns:packageName="cn.ibizlab.trainsys.core.common.service.logic.phonexxx">
<extensionElements>
<tns:import name="java.util.Map" />
<tns:import name="org.springframework.util.StringUtils"/>
<tns:import name="cn.ibizlab.trainsys.util.helper.RuleUtils"/>
<tns:metaData express="" name="phonexxxdefault" type="entity"/>
<tns:metaData express="T(cn.ibizlab.trainsys.util.security.SpringContextHolder).getBean(T(cn.ibizlab.trainsys.core.common.service.IPhoneService))" name="iBzSysPhoneDefaultService" type="service"/>
<tns:metaData express="T(cn.ibizlab.trainsys.util.security.AuthenticationUser).getAuthenticationUser()" name="curuser" type="session"/>
<tns:global identifier="phonexxxdefault" type="cn.ibizlab.trainsys.core.common.domain.Phone" />
</extensionElements>
<startEvent id="begin" isInterrupting="true"/>
<endEvent id="begin_end" name="end"/>
<sequenceFlow id="begin_end_line" sourceRef="begin" targetRef="begin_end"/>
</process>
</definitions>
\ No newline at end of file
package cn.ibizlab.trainsys.common.logic.phonelogic.xxx;
import java.util.Map;
import java.util.HashMap;
import com.alibaba.fastjson.JSONObject;
import org.springframework.util.StringUtils;
import org.springframework.util.ObjectUtils;
import cn.ibizlab.trainsys.util.errors.BadRequestAlertException;
global cn.ibizlab.trainsys.core.common.domain.Phone phonexxxdefault;
global cn.ibizlab.trainsys.core.common.service.IPhoneService iBzSysPhoneDefaultService;
global cn.ibizlab.trainsys.util.security.AuthenticationUser curuser;
no-loop
//逻辑处理节点[开始]
rule "begin"
ruleflow-group "phonexxxbegin"
when
then
end
\ No newline at end of file
......@@ -248,7 +248,7 @@
"dataType" : 25,
"detailStyle" : "DEFAULT",
"detailType" : "FORMITEM",
"enableCond" : 3,
"enableCond" : 1,
"ignoreInput" : 0,
"labelPos" : "LEFT",
"labelWidth" : 130,
......@@ -277,7 +277,7 @@
"dataType" : 25,
"detailStyle" : "DEFAULT",
"detailType" : "FORMITEM",
"enableCond" : 3,
"enableCond" : 0,
"height" : 49.0,
"ignoreInput" : 0,
"itemHeight" : 37.0,
......@@ -342,7 +342,7 @@
"dataType" : 25,
"detailStyle" : "DEFAULT",
"detailType" : "FORMITEM",
"enableCond" : 3,
"enableCond" : 2,
"ignoreInput" : 0,
"labelPos" : "LEFT",
"labelWidth" : 130,
......
......@@ -1234,7 +1234,7 @@
"dataType" : 25,
"detailStyle" : "DEFAULT",
"detailType" : "FORMITEM",
"enableCond" : 3,
"enableCond" : 1,
"ignoreInput" : 0,
"labelPos" : "LEFT",
"labelWidth" : 130,
......@@ -1263,7 +1263,7 @@
"dataType" : 25,
"detailStyle" : "DEFAULT",
"detailType" : "FORMITEM",
"enableCond" : 3,
"enableCond" : 0,
"height" : 49.0,
"ignoreInput" : 0,
"itemHeight" : 37.0,
......@@ -1328,7 +1328,7 @@
"dataType" : 25,
"detailStyle" : "DEFAULT",
"detailType" : "FORMITEM",
"enableCond" : 3,
"enableCond" : 2,
"ignoreInput" : 0,
"labelPos" : "LEFT",
"labelWidth" : 130,
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册