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

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

上级 6d330aa9
...@@ -225,6 +225,9 @@ ...@@ -225,6 +225,9 @@
}, { }, {
"name" : "DEPARTMENT", "name" : "DEPARTMENT",
"codeName" : "Department" "codeName" : "Department"
}, {
"name" : "RANK",
"codeName" : "Rank"
} ], } ],
"codeName" : "Table", "codeName" : "Table",
"name" : "T_STUDENT", "name" : "T_STUDENT",
...@@ -1551,6 +1554,83 @@ ...@@ -1551,6 +1554,83 @@
"stdDataType" : 25, "stdDataType" : 25,
"stringLength" : 100, "stringLength" : 100,
"valueFormat" : "%1$s" "valueFormat" : "%1$s"
}, {
"getAllPSDEFDTColumns" : [ {
"columnName" : "RANK",
"dBType" : "MYSQL5",
"name" : "RANK",
"queryCodeExp" : "t1.`RANK`",
"standardColumnName" : "`RANK`"
} ],
"getAllPSDEFUIModes" : [ {
"codeName" : "MobileDefault",
"name" : "[RANK][职位]移动端默认",
"getPSDEFFormItem" : {
"codeName" : "MobileDefault",
"editorType" : "MOBTEXT",
"name" : "[RANK][职位]移动端默认",
"stringLength" : 100,
"uIMode" : "MOBILEDEFAULT",
"mobileMode" : true
},
"type" : "MOBILEDEFAULT",
"mobileMode" : true
}, {
"codeName" : "Default",
"name" : "[RANK][职位]",
"getPSDEFFormItem" : {
"codeName" : "Default",
"editorType" : "TEXTBOX",
"name" : "[RANK][职位]",
"stringLength" : 100,
"uIMode" : "DEFAULT"
},
"type" : "DEFAULT"
} ],
"getAllPSDEFValueRules" : [ {
"codeName" : "Default",
"name" : "默认规则",
"getPSDEFVRGroupCondition" : {
"condOp" : "AND",
"condType" : "GROUP",
"name" : "默认组",
"getPSDEFVRConditions" : [ {
"condType" : "STRINGLENGTH",
"dEFName" : "RANK",
"maxValue" : 100,
"name" : "默认字符串长度",
"ruleInfo" : "内容长度必须小于等于[100]",
"includeMaxValue" : true,
"includeMinValue" : false,
"keyCond" : true
} ],
"ruleInfo" : "内容长度必须小于等于[100]"
},
"ruleInfo" : "内容长度必须小于等于[100]",
"checkDefault" : true,
"defaultMode" : true,
"enableBackend" : true,
"enableFront" : true
} ],
"codeName" : "Rank",
"dEFType" : 1,
"dataType" : "TEXT",
"importOrder" : 1000,
"length" : 100,
"logicName" : "职级",
"name" : "RANK",
"getPSDEDBTable" : {
"modelref" : true,
"id" : "Table"
},
"getPSSysDBColumn" : {
"modelref" : true,
"id" : "RANK"
},
"serviceCodeName" : "Rank",
"stdDataType" : 25,
"stringLength" : 100,
"valueFormat" : "%1$s"
} ], } ],
"getAllPSDEMethodDTOs" : [ { "getAllPSDEMethodDTOs" : [ {
"name" : "StudentDTO", "name" : "StudentDTO",
...@@ -1668,6 +1748,17 @@ ...@@ -1668,6 +1748,17 @@
"stdDataType" : 25, "stdDataType" : 25,
"stringLength" : 60, "stringLength" : 60,
"type" : "SIMPLE" "type" : "SIMPLE"
}, {
"logicName" : "职级",
"name" : "Rank",
"getPSDEField" : {
"name" : "RANK",
"codeName" : "Rank"
},
"sourceType" : "DEFIELD",
"stdDataType" : 25,
"stringLength" : 100,
"type" : "SIMPLE"
}, { }, {
"logicName" : "学生标识", "logicName" : "学生标识",
"name" : "StudentId", "name" : "StudentId",
......
...@@ -31,6 +31,9 @@ ...@@ -31,6 +31,9 @@
}, { }, {
"expression" : "t1.`ORGID`", "expression" : "t1.`ORGID`",
"name" : "ORGID" "name" : "ORGID"
}, {
"expression" : "t1.`RANK`",
"name" : "RANK"
}, { }, {
"expression" : "t1.`STUDENTID`", "expression" : "t1.`STUDENTID`",
"name" : "STUDENTID" "name" : "STUDENTID"
...@@ -44,6 +47,6 @@ ...@@ -44,6 +47,6 @@
"expression" : "t1.`UPDATEMAN`", "expression" : "t1.`UPDATEMAN`",
"name" : "UPDATEMAN" "name" : "UPDATEMAN"
} ], } ],
"queryCode" : "SELECT\nt1.`ADDRESS`,\nt1.`AGE`,\nt1.`CREATEDATE`,\nt1.`CREATEMAN`,\nt1.`DEPARTMENT`,\nt1.`DEPTID`,\nt1.`END`,\nt1.`FIELD`,\nt1.`NAME`,\nt1.`ORGID`,\nt1.`STUDENTID`,\nt1.`STUDENTNAME`,\nt1.`UPDATEDATE`,\nt1.`UPDATEMAN`\nFROM `T_STUDENT` t1 \n", "queryCode" : "SELECT\nt1.`ADDRESS`,\nt1.`AGE`,\nt1.`CREATEDATE`,\nt1.`CREATEMAN`,\nt1.`DEPARTMENT`,\nt1.`DEPTID`,\nt1.`END`,\nt1.`FIELD`,\nt1.`NAME`,\nt1.`ORGID`,\nt1.`RANK`,\nt1.`STUDENTID`,\nt1.`STUDENTNAME`,\nt1.`UPDATEDATE`,\nt1.`UPDATEMAN`\nFROM `T_STUDENT` t1 \n",
"id" : "PSMODULES/common/PSDATAENTITIES/Student/PSDEDATAQUERIES/Default/PSDEDQCODES/MYSQL5.json" "id" : "PSMODULES/common/PSDATAENTITIES/Student/PSDEDATAQUERIES/Default/PSDEDQCODES/MYSQL5.json"
} }
\ No newline at end of file
...@@ -31,6 +31,9 @@ ...@@ -31,6 +31,9 @@
}, { }, {
"expression" : "t1.`ORGID`", "expression" : "t1.`ORGID`",
"name" : "ORGID" "name" : "ORGID"
}, {
"expression" : "t1.`RANK`",
"name" : "RANK"
}, { }, {
"expression" : "t1.`STUDENTID`", "expression" : "t1.`STUDENTID`",
"name" : "STUDENTID" "name" : "STUDENTID"
...@@ -44,6 +47,6 @@ ...@@ -44,6 +47,6 @@
"expression" : "t1.`UPDATEMAN`", "expression" : "t1.`UPDATEMAN`",
"name" : "UPDATEMAN" "name" : "UPDATEMAN"
} ], } ],
"queryCode" : "SELECT\nt1.`ADDRESS`,\nt1.`AGE`,\nt1.`CREATEDATE`,\nt1.`CREATEMAN`,\nt1.`DEPARTMENT`,\nt1.`DEPTID`,\nt1.`END`,\nt1.`FIELD`,\nt1.`NAME`,\nt1.`ORGID`,\nt1.`STUDENTID`,\nt1.`STUDENTNAME`,\nt1.`UPDATEDATE`,\nt1.`UPDATEMAN`\nFROM `T_STUDENT` t1 \n", "queryCode" : "SELECT\nt1.`ADDRESS`,\nt1.`AGE`,\nt1.`CREATEDATE`,\nt1.`CREATEMAN`,\nt1.`DEPARTMENT`,\nt1.`DEPTID`,\nt1.`END`,\nt1.`FIELD`,\nt1.`NAME`,\nt1.`ORGID`,\nt1.`RANK`,\nt1.`STUDENTID`,\nt1.`STUDENTNAME`,\nt1.`UPDATEDATE`,\nt1.`UPDATEMAN`\nFROM `T_STUDENT` t1 \n",
"id" : "PSMODULES/common/PSDATAENTITIES/Student/PSDEDATAQUERIES/View/PSDEDQCODES/MYSQL5.json" "id" : "PSMODULES/common/PSDATAENTITIES/Student/PSDEDATAQUERIES/View/PSDEDQCODES/MYSQL5.json"
} }
\ No newline at end of file
...@@ -3644,31 +3644,14 @@ ...@@ -3644,31 +3644,14 @@
"topPos" : 200, "topPos" : 200,
"parallelOutput" : true "parallelOutput" : true
}, { }, {
"codeName" : "PREPAREJSPARAM1", "codeName" : "BINDPARAM1",
"leftPos" : 734,
"logicNodeType" : "PREPAREJSPARAM",
"name" : "准备参数",
"getPSDEUILogicNodeParams" : [ {
"dstFieldName" : "visible",
"getDstPSDEUILogicParam" : { "getDstPSDEUILogicParam" : {
"modelref" : true, "modelref" : true,
"id" : "viewCaptionBarState" "id" : "viewCaptionBarState"
}, },
"name" : "直接值[false] ==> viewCaptionBarState[visible]", "leftPos" : 329,
"paramAction" : "SETPARAMVALUE",
"srcValue" : "false",
"srcValueType" : "SRCVALUE"
} ],
"topPos" : 208
}, {
"codeName" : "BINDPARAM2",
"getDstPSDEUILogicParam" : {
"modelref" : true,
"id" : "visible"
},
"leftPos" : 508,
"logicNodeType" : "BINDPARAM", "logicNodeType" : "BINDPARAM",
"name" : "绑定参数", "name" : "绑定标题栏状态",
"getPSDEUILogicLinks" : [ { "getPSDEUILogicLinks" : [ {
"getDstPSDEUILogicNode" : { "getDstPSDEUILogicNode" : {
"modelref" : true, "modelref" : true,
...@@ -3681,19 +3664,20 @@ ...@@ -3681,19 +3664,20 @@
"logicType" : "GROUP", "logicType" : "GROUP",
"getPSDEUILogicLinkConds" : [ { "getPSDEUILogicLinkConds" : [ {
"condOP" : "EQ", "condOP" : "EQ",
"dstFieldName" : "visible",
"getDstLogicParam" : { "getDstLogicParam" : {
"modelref" : true, "modelref" : true,
"id" : "visible" "id" : "viewCaptionBarState"
}, },
"logicType" : "SINGLE", "logicType" : "SINGLE",
"name" : "visible 等于(=) true", "name" : "viewCaptionBarState[visible] 等于(=) true",
"paramValue" : "true", "paramValue" : "true",
"value" : "true" "value" : "true"
} ] } ]
}, },
"getSrcPSDEUILogicNode" : { "getSrcPSDEUILogicNode" : {
"modelref" : true, "modelref" : true,
"id" : "BINDPARAM2" "id" : "BINDPARAM1"
} }
}, { }, {
"getDstPSDEUILogicNode" : { "getDstPSDEUILogicNode" : {
...@@ -3719,18 +3703,18 @@ ...@@ -3719,18 +3703,18 @@
}, },
"getSrcPSDEUILogicNode" : { "getSrcPSDEUILogicNode" : {
"modelref" : true, "modelref" : true,
"id" : "BINDPARAM2" "id" : "BINDPARAM1"
} }
} ], } ],
"srcFieldName" : "visible", "srcFieldName" : "layoutPanel.panelItems.view_captionbar.state",
"getSrcPSDEUILogicParam" : { "getSrcPSDEUILogicParam" : {
"modelref" : true, "modelref" : true,
"id" : "viewCaptionBarState" "id" : "view"
}, },
"topPos" : 208 "topPos" : 208
}, { }, {
"codeName" : "PREPAREJSPARAM2", "codeName" : "PREPAREJSPARAM2",
"leftPos" : 508, "leftPos" : 329,
"logicNodeType" : "PREPAREJSPARAM", "logicNodeType" : "PREPAREJSPARAM",
"name" : "准备参数", "name" : "准备参数",
"getPSDEUILogicNodeParams" : [ { "getPSDEUILogicNodeParams" : [ {
...@@ -3744,36 +3728,32 @@ ...@@ -3744,36 +3728,32 @@
"srcValue" : "true", "srcValue" : "true",
"srcValueType" : "SRCVALUE" "srcValueType" : "SRCVALUE"
} ], } ],
"topPos" : 400 "topPos" : 420
}, { }, {
"codeName" : "BINDPARAM1", "codeName" : "PREPAREJSPARAM1",
"leftPos" : 734,
"logicNodeType" : "PREPAREJSPARAM",
"name" : "准备参数",
"getPSDEUILogicNodeParams" : [ {
"dstFieldName" : "visible",
"getDstPSDEUILogicParam" : { "getDstPSDEUILogicParam" : {
"modelref" : true, "modelref" : true,
"id" : "viewCaptionBarState" "id" : "viewCaptionBarState"
}, },
"leftPos" : 329, "name" : "直接值[false] ==> viewCaptionBarState[visible]",
"logicNodeType" : "BINDPARAM", "paramAction" : "SETPARAMVALUE",
"name" : "绑定标题栏状态", "srcValue" : "false",
"getPSDEUILogicLinks" : [ { "srcValueType" : "SRCVALUE"
"getDstPSDEUILogicNode" : {
"modelref" : true,
"id" : "BINDPARAM2"
},
"linkMode" : 0,
"name" : "连接名称",
"getSrcPSDEUILogicNode" : {
"modelref" : true,
"id" : "BINDPARAM1"
}
} ], } ],
"srcFieldName" : "layoutPanel.panelItems.view_captionbar.state",
"getSrcPSDEUILogicParam" : {
"modelref" : true,
"id" : "view"
},
"topPos" : 208 "topPos" : 208
} ], } ],
"getPSDEUILogicParams" : [ { "getPSDEUILogicParams" : [ {
"codeName" : "Default",
"logicName" : "传入变量",
"name" : "传入变量",
"default" : true,
"entityParam" : true
}, {
"codeName" : "visible", "codeName" : "visible",
"logicName" : "标题栏显示与否", "logicName" : "标题栏显示与否",
"name" : "标题栏显示与否", "name" : "标题栏显示与否",
...@@ -3783,12 +3763,6 @@ ...@@ -3783,12 +3763,6 @@
"logicName" : "面板标题栏容器", "logicName" : "面板标题栏容器",
"name" : "面板标题栏容器", "name" : "面板标题栏容器",
"simpleParam" : true "simpleParam" : true
}, {
"codeName" : "Default",
"logicName" : "传入变量",
"name" : "传入变量",
"default" : true,
"entityParam" : true
}, { }, {
"codeName" : "view", "codeName" : "view",
"logicName" : "视图控制器", "logicName" : "视图控制器",
......
...@@ -20166,31 +20166,14 @@ ...@@ -20166,31 +20166,14 @@
"topPos" : 200, "topPos" : 200,
"parallelOutput" : true "parallelOutput" : true
}, { }, {
"codeName" : "PREPAREJSPARAM1", "codeName" : "BINDPARAM1",
"leftPos" : 734,
"logicNodeType" : "PREPAREJSPARAM",
"name" : "准备参数",
"getPSDEUILogicNodeParams" : [ {
"dstFieldName" : "visible",
"getDstPSDEUILogicParam" : { "getDstPSDEUILogicParam" : {
"modelref" : true, "modelref" : true,
"id" : "viewCaptionBarState" "id" : "viewCaptionBarState"
}, },
"name" : "直接值[false] ==> viewCaptionBarState[visible]", "leftPos" : 329,
"paramAction" : "SETPARAMVALUE",
"srcValue" : "false",
"srcValueType" : "SRCVALUE"
} ],
"topPos" : 208
}, {
"codeName" : "BINDPARAM2",
"getDstPSDEUILogicParam" : {
"modelref" : true,
"id" : "visible"
},
"leftPos" : 508,
"logicNodeType" : "BINDPARAM", "logicNodeType" : "BINDPARAM",
"name" : "绑定参数", "name" : "绑定标题栏状态",
"getPSDEUILogicLinks" : [ { "getPSDEUILogicLinks" : [ {
"getDstPSDEUILogicNode" : { "getDstPSDEUILogicNode" : {
"modelref" : true, "modelref" : true,
...@@ -20203,19 +20186,20 @@ ...@@ -20203,19 +20186,20 @@
"logicType" : "GROUP", "logicType" : "GROUP",
"getPSDEUILogicLinkConds" : [ { "getPSDEUILogicLinkConds" : [ {
"condOP" : "EQ", "condOP" : "EQ",
"dstFieldName" : "visible",
"getDstLogicParam" : { "getDstLogicParam" : {
"modelref" : true, "modelref" : true,
"id" : "visible" "id" : "viewCaptionBarState"
}, },
"logicType" : "SINGLE", "logicType" : "SINGLE",
"name" : "visible 等于(=) true", "name" : "viewCaptionBarState[visible] 等于(=) true",
"paramValue" : "true", "paramValue" : "true",
"value" : "true" "value" : "true"
} ] } ]
}, },
"getSrcPSDEUILogicNode" : { "getSrcPSDEUILogicNode" : {
"modelref" : true, "modelref" : true,
"id" : "BINDPARAM2" "id" : "BINDPARAM1"
} }
}, { }, {
"getDstPSDEUILogicNode" : { "getDstPSDEUILogicNode" : {
...@@ -20241,18 +20225,18 @@ ...@@ -20241,18 +20225,18 @@
}, },
"getSrcPSDEUILogicNode" : { "getSrcPSDEUILogicNode" : {
"modelref" : true, "modelref" : true,
"id" : "BINDPARAM2" "id" : "BINDPARAM1"
} }
} ], } ],
"srcFieldName" : "visible", "srcFieldName" : "layoutPanel.panelItems.view_captionbar.state",
"getSrcPSDEUILogicParam" : { "getSrcPSDEUILogicParam" : {
"modelref" : true, "modelref" : true,
"id" : "viewCaptionBarState" "id" : "view"
}, },
"topPos" : 208 "topPos" : 208
}, { }, {
"codeName" : "PREPAREJSPARAM2", "codeName" : "PREPAREJSPARAM2",
"leftPos" : 508, "leftPos" : 329,
"logicNodeType" : "PREPAREJSPARAM", "logicNodeType" : "PREPAREJSPARAM",
"name" : "准备参数", "name" : "准备参数",
"getPSDEUILogicNodeParams" : [ { "getPSDEUILogicNodeParams" : [ {
...@@ -20266,36 +20250,32 @@ ...@@ -20266,36 +20250,32 @@
"srcValue" : "true", "srcValue" : "true",
"srcValueType" : "SRCVALUE" "srcValueType" : "SRCVALUE"
} ], } ],
"topPos" : 400 "topPos" : 420
}, { }, {
"codeName" : "BINDPARAM1", "codeName" : "PREPAREJSPARAM1",
"leftPos" : 734,
"logicNodeType" : "PREPAREJSPARAM",
"name" : "准备参数",
"getPSDEUILogicNodeParams" : [ {
"dstFieldName" : "visible",
"getDstPSDEUILogicParam" : { "getDstPSDEUILogicParam" : {
"modelref" : true, "modelref" : true,
"id" : "viewCaptionBarState" "id" : "viewCaptionBarState"
}, },
"leftPos" : 329, "name" : "直接值[false] ==> viewCaptionBarState[visible]",
"logicNodeType" : "BINDPARAM", "paramAction" : "SETPARAMVALUE",
"name" : "绑定标题栏状态", "srcValue" : "false",
"getPSDEUILogicLinks" : [ { "srcValueType" : "SRCVALUE"
"getDstPSDEUILogicNode" : {
"modelref" : true,
"id" : "BINDPARAM2"
},
"linkMode" : 0,
"name" : "连接名称",
"getSrcPSDEUILogicNode" : {
"modelref" : true,
"id" : "BINDPARAM1"
}
} ], } ],
"srcFieldName" : "layoutPanel.panelItems.view_captionbar.state",
"getSrcPSDEUILogicParam" : {
"modelref" : true,
"id" : "view"
},
"topPos" : 208 "topPos" : 208
} ], } ],
"getPSDEUILogicParams" : [ { "getPSDEUILogicParams" : [ {
"codeName" : "Default",
"logicName" : "传入变量",
"name" : "传入变量",
"default" : true,
"entityParam" : true
}, {
"codeName" : "visible", "codeName" : "visible",
"logicName" : "标题栏显示与否", "logicName" : "标题栏显示与否",
"name" : "标题栏显示与否", "name" : "标题栏显示与否",
...@@ -20305,12 +20285,6 @@ ...@@ -20305,12 +20285,6 @@
"logicName" : "面板标题栏容器", "logicName" : "面板标题栏容器",
"name" : "面板标题栏容器", "name" : "面板标题栏容器",
"simpleParam" : true "simpleParam" : true
}, {
"codeName" : "Default",
"logicName" : "传入变量",
"name" : "传入变量",
"default" : true,
"entityParam" : true
}, { }, {
"codeName" : "view", "codeName" : "view",
"logicName" : "视图控制器", "logicName" : "视图控制器",
...@@ -768,6 +768,37 @@ ...@@ -768,6 +768,37 @@
"name" : "DEPARTMENT", "name" : "DEPARTMENT",
"stdDataType" : 25, "stdDataType" : 25,
"stringLength" : 100 "stringLength" : 100
}, {
"getAllPSAppDEFUIModes" : [ {
"codeName" : "MobileDefault",
"name" : "[RANK][职位]移动端默认",
"getPSDEFFormItem" : {
"codeName" : "MobileDefault",
"editorType" : "MOBTEXT",
"name" : "[RANK][职位]移动端默认",
"stringLength" : 100,
"uIMode" : "MOBILEDEFAULT",
"mobileMode" : true
},
"type" : "MOBILEDEFAULT",
"mobileMode" : true
}, {
"codeName" : "Default",
"name" : "[RANK][职位]",
"getPSDEFFormItem" : {
"codeName" : "Default",
"editorType" : "TEXTBOX",
"name" : "[RANK][职位]",
"stringLength" : 100,
"uIMode" : "DEFAULT"
},
"type" : "DEFAULT"
} ],
"codeName" : "Rank",
"logicName" : "职级",
"name" : "RANK",
"stdDataType" : 25,
"stringLength" : 100
} ], } ],
"getAllPSAppDEMethodDTOs" : [ { "getAllPSAppDEMethodDTOs" : [ {
"codeName" : "StudentDTO", "codeName" : "StudentDTO",
...@@ -887,6 +918,17 @@ ...@@ -887,6 +918,17 @@
"sourceType" : "DEFIELD", "sourceType" : "DEFIELD",
"stdDataType" : 25, "stdDataType" : 25,
"type" : "SIMPLE" "type" : "SIMPLE"
}, {
"codeName" : "Rank",
"logicName" : "职级",
"name" : "Rank",
"getPSAppDEField" : {
"name" : "RANK",
"codeName" : "Rank"
},
"sourceType" : "DEFIELD",
"stdDataType" : 25,
"type" : "SIMPLE"
}, { }, {
"codeName" : "StudentId", "codeName" : "StudentId",
"logicName" : "学生标识", "logicName" : "学生标识",
......
...@@ -3654,31 +3654,14 @@ ...@@ -3654,31 +3654,14 @@
"topPos" : 200, "topPos" : 200,
"parallelOutput" : true "parallelOutput" : true
}, { }, {
"codeName" : "PREPAREJSPARAM1", "codeName" : "BINDPARAM1",
"leftPos" : 734,
"logicNodeType" : "PREPAREJSPARAM",
"name" : "准备参数",
"getPSDEUILogicNodeParams" : [ {
"dstFieldName" : "visible",
"getDstPSDEUILogicParam" : { "getDstPSDEUILogicParam" : {
"modelref" : true, "modelref" : true,
"id" : "viewCaptionBarState" "id" : "viewCaptionBarState"
}, },
"name" : "直接值[false] ==> viewCaptionBarState[visible]", "leftPos" : 329,
"paramAction" : "SETPARAMVALUE",
"srcValue" : "false",
"srcValueType" : "SRCVALUE"
} ],
"topPos" : 208
}, {
"codeName" : "BINDPARAM2",
"getDstPSDEUILogicParam" : {
"modelref" : true,
"id" : "visible"
},
"leftPos" : 508,
"logicNodeType" : "BINDPARAM", "logicNodeType" : "BINDPARAM",
"name" : "绑定参数", "name" : "绑定标题栏状态",
"getPSDEUILogicLinks" : [ { "getPSDEUILogicLinks" : [ {
"getDstPSDEUILogicNode" : { "getDstPSDEUILogicNode" : {
"modelref" : true, "modelref" : true,
...@@ -3691,19 +3674,20 @@ ...@@ -3691,19 +3674,20 @@
"logicType" : "GROUP", "logicType" : "GROUP",
"getPSDEUILogicLinkConds" : [ { "getPSDEUILogicLinkConds" : [ {
"condOP" : "EQ", "condOP" : "EQ",
"dstFieldName" : "visible",
"getDstLogicParam" : { "getDstLogicParam" : {
"modelref" : true, "modelref" : true,
"id" : "visible" "id" : "viewCaptionBarState"
}, },
"logicType" : "SINGLE", "logicType" : "SINGLE",
"name" : "visible 等于(=) true", "name" : "viewCaptionBarState[visible] 等于(=) true",
"paramValue" : "true", "paramValue" : "true",
"value" : "true" "value" : "true"
} ] } ]
}, },
"getSrcPSDEUILogicNode" : { "getSrcPSDEUILogicNode" : {
"modelref" : true, "modelref" : true,
"id" : "BINDPARAM2" "id" : "BINDPARAM1"
} }
}, { }, {
"getDstPSDEUILogicNode" : { "getDstPSDEUILogicNode" : {
...@@ -3729,18 +3713,18 @@ ...@@ -3729,18 +3713,18 @@
}, },
"getSrcPSDEUILogicNode" : { "getSrcPSDEUILogicNode" : {
"modelref" : true, "modelref" : true,
"id" : "BINDPARAM2" "id" : "BINDPARAM1"
} }
} ], } ],
"srcFieldName" : "visible", "srcFieldName" : "layoutPanel.panelItems.view_captionbar.state",
"getSrcPSDEUILogicParam" : { "getSrcPSDEUILogicParam" : {
"modelref" : true, "modelref" : true,
"id" : "viewCaptionBarState" "id" : "view"
}, },
"topPos" : 208 "topPos" : 208
}, { }, {
"codeName" : "PREPAREJSPARAM2", "codeName" : "PREPAREJSPARAM2",
"leftPos" : 508, "leftPos" : 329,
"logicNodeType" : "PREPAREJSPARAM", "logicNodeType" : "PREPAREJSPARAM",
"name" : "准备参数", "name" : "准备参数",
"getPSDEUILogicNodeParams" : [ { "getPSDEUILogicNodeParams" : [ {
...@@ -3754,36 +3738,32 @@ ...@@ -3754,36 +3738,32 @@
"srcValue" : "true", "srcValue" : "true",
"srcValueType" : "SRCVALUE" "srcValueType" : "SRCVALUE"
} ], } ],
"topPos" : 400 "topPos" : 420
}, { }, {
"codeName" : "BINDPARAM1", "codeName" : "PREPAREJSPARAM1",
"leftPos" : 734,
"logicNodeType" : "PREPAREJSPARAM",
"name" : "准备参数",
"getPSDEUILogicNodeParams" : [ {
"dstFieldName" : "visible",
"getDstPSDEUILogicParam" : { "getDstPSDEUILogicParam" : {
"modelref" : true, "modelref" : true,
"id" : "viewCaptionBarState" "id" : "viewCaptionBarState"
}, },
"leftPos" : 329, "name" : "直接值[false] ==> viewCaptionBarState[visible]",
"logicNodeType" : "BINDPARAM", "paramAction" : "SETPARAMVALUE",
"name" : "绑定标题栏状态", "srcValue" : "false",
"getPSDEUILogicLinks" : [ { "srcValueType" : "SRCVALUE"
"getDstPSDEUILogicNode" : {
"modelref" : true,
"id" : "BINDPARAM2"
},
"linkMode" : 0,
"name" : "连接名称",
"getSrcPSDEUILogicNode" : {
"modelref" : true,
"id" : "BINDPARAM1"
}
} ], } ],
"srcFieldName" : "layoutPanel.panelItems.view_captionbar.state",
"getSrcPSDEUILogicParam" : {
"modelref" : true,
"id" : "view"
},
"topPos" : 208 "topPos" : 208
} ], } ],
"getPSDEUILogicParams" : [ { "getPSDEUILogicParams" : [ {
"codeName" : "Default",
"logicName" : "传入变量",
"name" : "传入变量",
"default" : true,
"entityParam" : true
}, {
"codeName" : "visible", "codeName" : "visible",
"logicName" : "标题栏显示与否", "logicName" : "标题栏显示与否",
"name" : "标题栏显示与否", "name" : "标题栏显示与否",
...@@ -3793,12 +3773,6 @@ ...@@ -3793,12 +3773,6 @@
"logicName" : "面板标题栏容器", "logicName" : "面板标题栏容器",
"name" : "面板标题栏容器", "name" : "面板标题栏容器",
"simpleParam" : true "simpleParam" : true
}, {
"codeName" : "Default",
"logicName" : "传入变量",
"name" : "传入变量",
"default" : true,
"entityParam" : true
}, { }, {
"codeName" : "view", "codeName" : "view",
"logicName" : "视图控制器", "logicName" : "视图控制器",
......
...@@ -768,6 +768,37 @@ ...@@ -768,6 +768,37 @@
"name" : "DEPARTMENT", "name" : "DEPARTMENT",
"stdDataType" : 25, "stdDataType" : 25,
"stringLength" : 100 "stringLength" : 100
}, {
"getAllPSAppDEFUIModes" : [ {
"codeName" : "MobileDefault",
"name" : "[RANK][职位]移动端默认",
"getPSDEFFormItem" : {
"codeName" : "MobileDefault",
"editorType" : "MOBTEXT",
"name" : "[RANK][职位]移动端默认",
"stringLength" : 100,
"uIMode" : "MOBILEDEFAULT",
"mobileMode" : true
},
"type" : "MOBILEDEFAULT",
"mobileMode" : true
}, {
"codeName" : "Default",
"name" : "[RANK][职位]",
"getPSDEFFormItem" : {
"codeName" : "Default",
"editorType" : "TEXTBOX",
"name" : "[RANK][职位]",
"stringLength" : 100,
"uIMode" : "DEFAULT"
},
"type" : "DEFAULT"
} ],
"codeName" : "Rank",
"logicName" : "职级",
"name" : "RANK",
"stdDataType" : 25,
"stringLength" : 100
} ], } ],
"getAllPSAppDEMethodDTOs" : [ { "getAllPSAppDEMethodDTOs" : [ {
"codeName" : "StudentDTO", "codeName" : "StudentDTO",
...@@ -887,6 +918,17 @@ ...@@ -887,6 +918,17 @@
"sourceType" : "DEFIELD", "sourceType" : "DEFIELD",
"stdDataType" : 25, "stdDataType" : 25,
"type" : "SIMPLE" "type" : "SIMPLE"
}, {
"codeName" : "Rank",
"logicName" : "职级",
"name" : "Rank",
"getPSAppDEField" : {
"name" : "RANK",
"codeName" : "Rank"
},
"sourceType" : "DEFIELD",
"stdDataType" : 25,
"type" : "SIMPLE"
}, { }, {
"codeName" : "StudentId", "codeName" : "StudentId",
"logicName" : "学生标识", "logicName" : "学生标识",
......
...@@ -4064,31 +4064,14 @@ ...@@ -4064,31 +4064,14 @@
"topPos" : 200, "topPos" : 200,
"parallelOutput" : true "parallelOutput" : true
}, { }, {
"codeName" : "PREPAREJSPARAM1", "codeName" : "BINDPARAM1",
"leftPos" : 734,
"logicNodeType" : "PREPAREJSPARAM",
"name" : "准备参数",
"getPSDEUILogicNodeParams" : [ {
"dstFieldName" : "visible",
"getDstPSDEUILogicParam" : { "getDstPSDEUILogicParam" : {
"modelref" : true, "modelref" : true,
"id" : "viewCaptionBarState" "id" : "viewCaptionBarState"
}, },
"name" : "直接值[false] ==> viewCaptionBarState[visible]", "leftPos" : 329,
"paramAction" : "SETPARAMVALUE",
"srcValue" : "false",
"srcValueType" : "SRCVALUE"
} ],
"topPos" : 208
}, {
"codeName" : "BINDPARAM2",
"getDstPSDEUILogicParam" : {
"modelref" : true,
"id" : "visible"
},
"leftPos" : 508,
"logicNodeType" : "BINDPARAM", "logicNodeType" : "BINDPARAM",
"name" : "绑定参数", "name" : "绑定标题栏状态",
"getPSDEUILogicLinks" : [ { "getPSDEUILogicLinks" : [ {
"getDstPSDEUILogicNode" : { "getDstPSDEUILogicNode" : {
"modelref" : true, "modelref" : true,
...@@ -4101,19 +4084,20 @@ ...@@ -4101,19 +4084,20 @@
"logicType" : "GROUP", "logicType" : "GROUP",
"getPSDEUILogicLinkConds" : [ { "getPSDEUILogicLinkConds" : [ {
"condOP" : "EQ", "condOP" : "EQ",
"dstFieldName" : "visible",
"getDstLogicParam" : { "getDstLogicParam" : {
"modelref" : true, "modelref" : true,
"id" : "visible" "id" : "viewCaptionBarState"
}, },
"logicType" : "SINGLE", "logicType" : "SINGLE",
"name" : "visible 等于(=) true", "name" : "viewCaptionBarState[visible] 等于(=) true",
"paramValue" : "true", "paramValue" : "true",
"value" : "true" "value" : "true"
} ] } ]
}, },
"getSrcPSDEUILogicNode" : { "getSrcPSDEUILogicNode" : {
"modelref" : true, "modelref" : true,
"id" : "BINDPARAM2" "id" : "BINDPARAM1"
} }
}, { }, {
"getDstPSDEUILogicNode" : { "getDstPSDEUILogicNode" : {
...@@ -4139,18 +4123,18 @@ ...@@ -4139,18 +4123,18 @@
}, },
"getSrcPSDEUILogicNode" : { "getSrcPSDEUILogicNode" : {
"modelref" : true, "modelref" : true,
"id" : "BINDPARAM2" "id" : "BINDPARAM1"
} }
} ], } ],
"srcFieldName" : "visible", "srcFieldName" : "layoutPanel.panelItems.view_captionbar.state",
"getSrcPSDEUILogicParam" : { "getSrcPSDEUILogicParam" : {
"modelref" : true, "modelref" : true,
"id" : "viewCaptionBarState" "id" : "view"
}, },
"topPos" : 208 "topPos" : 208
}, { }, {
"codeName" : "PREPAREJSPARAM2", "codeName" : "PREPAREJSPARAM2",
"leftPos" : 508, "leftPos" : 329,
"logicNodeType" : "PREPAREJSPARAM", "logicNodeType" : "PREPAREJSPARAM",
"name" : "准备参数", "name" : "准备参数",
"getPSDEUILogicNodeParams" : [ { "getPSDEUILogicNodeParams" : [ {
...@@ -4164,36 +4148,32 @@ ...@@ -4164,36 +4148,32 @@
"srcValue" : "true", "srcValue" : "true",
"srcValueType" : "SRCVALUE" "srcValueType" : "SRCVALUE"
} ], } ],
"topPos" : 400 "topPos" : 420
}, { }, {
"codeName" : "BINDPARAM1", "codeName" : "PREPAREJSPARAM1",
"leftPos" : 734,
"logicNodeType" : "PREPAREJSPARAM",
"name" : "准备参数",
"getPSDEUILogicNodeParams" : [ {
"dstFieldName" : "visible",
"getDstPSDEUILogicParam" : { "getDstPSDEUILogicParam" : {
"modelref" : true, "modelref" : true,
"id" : "viewCaptionBarState" "id" : "viewCaptionBarState"
}, },
"leftPos" : 329, "name" : "直接值[false] ==> viewCaptionBarState[visible]",
"logicNodeType" : "BINDPARAM", "paramAction" : "SETPARAMVALUE",
"name" : "绑定标题栏状态", "srcValue" : "false",
"getPSDEUILogicLinks" : [ { "srcValueType" : "SRCVALUE"
"getDstPSDEUILogicNode" : {
"modelref" : true,
"id" : "BINDPARAM2"
},
"linkMode" : 0,
"name" : "连接名称",
"getSrcPSDEUILogicNode" : {
"modelref" : true,
"id" : "BINDPARAM1"
}
} ], } ],
"srcFieldName" : "layoutPanel.panelItems.view_captionbar.state",
"getSrcPSDEUILogicParam" : {
"modelref" : true,
"id" : "view"
},
"topPos" : 208 "topPos" : 208
} ], } ],
"getPSDEUILogicParams" : [ { "getPSDEUILogicParams" : [ {
"codeName" : "Default",
"logicName" : "传入变量",
"name" : "传入变量",
"default" : true,
"entityParam" : true
}, {
"codeName" : "visible", "codeName" : "visible",
"logicName" : "标题栏显示与否", "logicName" : "标题栏显示与否",
"name" : "标题栏显示与否", "name" : "标题栏显示与否",
...@@ -4203,12 +4183,6 @@ ...@@ -4203,12 +4183,6 @@
"logicName" : "面板标题栏容器", "logicName" : "面板标题栏容器",
"name" : "面板标题栏容器", "name" : "面板标题栏容器",
"simpleParam" : true "simpleParam" : true
}, {
"codeName" : "Default",
"logicName" : "传入变量",
"name" : "传入变量",
"default" : true,
"entityParam" : true
}, { }, {
"codeName" : "view", "codeName" : "view",
"logicName" : "视图控制器", "logicName" : "视图控制器",
......
...@@ -47936,31 +47936,14 @@ ...@@ -47936,31 +47936,14 @@
"topPos" : 200, "topPos" : 200,
"parallelOutput" : true "parallelOutput" : true
}, { }, {
"codeName" : "PREPAREJSPARAM1", "codeName" : "BINDPARAM1",
"leftPos" : 734,
"logicNodeType" : "PREPAREJSPARAM",
"name" : "准备参数",
"getPSDEUILogicNodeParams" : [ {
"dstFieldName" : "visible",
"getDstPSDEUILogicParam" : { "getDstPSDEUILogicParam" : {
"modelref" : true, "modelref" : true,
"id" : "viewCaptionBarState" "id" : "viewCaptionBarState"
}, },
"name" : "直接值[false] ==> viewCaptionBarState[visible]", "leftPos" : 329,
"paramAction" : "SETPARAMVALUE",
"srcValue" : "false",
"srcValueType" : "SRCVALUE"
} ],
"topPos" : 208
}, {
"codeName" : "BINDPARAM2",
"getDstPSDEUILogicParam" : {
"modelref" : true,
"id" : "visible"
},
"leftPos" : 508,
"logicNodeType" : "BINDPARAM", "logicNodeType" : "BINDPARAM",
"name" : "绑定参数", "name" : "绑定标题栏状态",
"getPSDEUILogicLinks" : [ { "getPSDEUILogicLinks" : [ {
"getDstPSDEUILogicNode" : { "getDstPSDEUILogicNode" : {
"modelref" : true, "modelref" : true,
...@@ -47973,19 +47956,20 @@ ...@@ -47973,19 +47956,20 @@
"logicType" : "GROUP", "logicType" : "GROUP",
"getPSDEUILogicLinkConds" : [ { "getPSDEUILogicLinkConds" : [ {
"condOP" : "EQ", "condOP" : "EQ",
"dstFieldName" : "visible",
"getDstLogicParam" : { "getDstLogicParam" : {
"modelref" : true, "modelref" : true,
"id" : "visible" "id" : "viewCaptionBarState"
}, },
"logicType" : "SINGLE", "logicType" : "SINGLE",
"name" : "visible 等于(=) true", "name" : "viewCaptionBarState[visible] 等于(=) true",
"paramValue" : "true", "paramValue" : "true",
"value" : "true" "value" : "true"
} ] } ]
}, },
"getSrcPSDEUILogicNode" : { "getSrcPSDEUILogicNode" : {
"modelref" : true, "modelref" : true,
"id" : "BINDPARAM2" "id" : "BINDPARAM1"
} }
}, { }, {
"getDstPSDEUILogicNode" : { "getDstPSDEUILogicNode" : {
...@@ -48011,18 +47995,18 @@ ...@@ -48011,18 +47995,18 @@
}, },
"getSrcPSDEUILogicNode" : { "getSrcPSDEUILogicNode" : {
"modelref" : true, "modelref" : true,
"id" : "BINDPARAM2" "id" : "BINDPARAM1"
} }
} ], } ],
"srcFieldName" : "visible", "srcFieldName" : "layoutPanel.panelItems.view_captionbar.state",
"getSrcPSDEUILogicParam" : { "getSrcPSDEUILogicParam" : {
"modelref" : true, "modelref" : true,
"id" : "viewCaptionBarState" "id" : "view"
}, },
"topPos" : 208 "topPos" : 208
}, { }, {
"codeName" : "PREPAREJSPARAM2", "codeName" : "PREPAREJSPARAM2",
"leftPos" : 508, "leftPos" : 329,
"logicNodeType" : "PREPAREJSPARAM", "logicNodeType" : "PREPAREJSPARAM",
"name" : "准备参数", "name" : "准备参数",
"getPSDEUILogicNodeParams" : [ { "getPSDEUILogicNodeParams" : [ {
...@@ -48036,36 +48020,32 @@ ...@@ -48036,36 +48020,32 @@
"srcValue" : "true", "srcValue" : "true",
"srcValueType" : "SRCVALUE" "srcValueType" : "SRCVALUE"
} ], } ],
"topPos" : 400 "topPos" : 420
}, { }, {
"codeName" : "BINDPARAM1", "codeName" : "PREPAREJSPARAM1",
"leftPos" : 734,
"logicNodeType" : "PREPAREJSPARAM",
"name" : "准备参数",
"getPSDEUILogicNodeParams" : [ {
"dstFieldName" : "visible",
"getDstPSDEUILogicParam" : { "getDstPSDEUILogicParam" : {
"modelref" : true, "modelref" : true,
"id" : "viewCaptionBarState" "id" : "viewCaptionBarState"
}, },
"leftPos" : 329, "name" : "直接值[false] ==> viewCaptionBarState[visible]",
"logicNodeType" : "BINDPARAM", "paramAction" : "SETPARAMVALUE",
"name" : "绑定标题栏状态", "srcValue" : "false",
"getPSDEUILogicLinks" : [ { "srcValueType" : "SRCVALUE"
"getDstPSDEUILogicNode" : {
"modelref" : true,
"id" : "BINDPARAM2"
},
"linkMode" : 0,
"name" : "连接名称",
"getSrcPSDEUILogicNode" : {
"modelref" : true,
"id" : "BINDPARAM1"
}
} ], } ],
"srcFieldName" : "layoutPanel.panelItems.view_captionbar.state",
"getSrcPSDEUILogicParam" : {
"modelref" : true,
"id" : "view"
},
"topPos" : 208 "topPos" : 208
} ], } ],
"getPSDEUILogicParams" : [ { "getPSDEUILogicParams" : [ {
"codeName" : "Default",
"logicName" : "传入变量",
"name" : "传入变量",
"default" : true,
"entityParam" : true
}, {
"codeName" : "visible", "codeName" : "visible",
"logicName" : "标题栏显示与否", "logicName" : "标题栏显示与否",
"name" : "标题栏显示与否", "name" : "标题栏显示与否",
...@@ -48075,12 +48055,6 @@ ...@@ -48075,12 +48055,6 @@
"logicName" : "面板标题栏容器", "logicName" : "面板标题栏容器",
"name" : "面板标题栏容器", "name" : "面板标题栏容器",
"simpleParam" : true "simpleParam" : true
}, {
"codeName" : "Default",
"logicName" : "传入变量",
"name" : "传入变量",
"default" : true,
"entityParam" : true
}, { }, {
"codeName" : "view", "codeName" : "view",
"logicName" : "视图控制器", "logicName" : "视图控制器",
...@@ -2451,6 +2451,13 @@ ...@@ -2451,6 +2451,13 @@
"name" : "ORGID", "name" : "ORGID",
"stdDataType" : 25, "stdDataType" : 25,
"nullable" : true "nullable" : true
}, {
"codeName" : "RANK",
"length" : 100,
"logicName" : "职级",
"name" : "RANK",
"stdDataType" : 25,
"nullable" : true
}, { }, {
"codeName" : "STUDENTID", "codeName" : "STUDENTID",
"length" : 100, "length" : 100,
......
...@@ -13895,6 +13895,19 @@ ...@@ -13895,6 +13895,19 @@
"enableModify" : true, "enableModify" : true,
"keyField" : false, "keyField" : false,
"majorField" : false "majorField" : false
}, {
"codeName" : "Rank",
"codeName2" : "Rank",
"logicName" : "职级",
"name" : "RANK",
"orderValue" : 1000,
"stdDataType" : 25,
"stringLength" : 100,
"allowEmpty" : true,
"enableCreate" : true,
"enableModify" : true,
"keyField" : false,
"majorField" : false
} ], } ],
"getPSDEServiceAPIMethods" : [ { "getPSDEServiceAPIMethods" : [ {
"dataAccessAction" : "CREATE", "dataAccessAction" : "CREATE",
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册