Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gjjs-bd-common
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
s_guodong
gjjs-bd-common
Commits
6887dadd
Commit
6887dadd
authored
Aug 21, 2023
by
s_guodong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
处理listbox
parent
d8b7458b
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
240 additions
and
20 deletions
+240
-20
SnapshotServiceImpl.java
...lliance/mda/runtime/mda/snapshot/SnapshotServiceImpl.java
+0
-0
AttributeEnum.java
...brilliance/mda/runtime/mda/snapshot/bo/AttributeEnum.java
+0
-20
PackDivBo.java
...rilliance/mda/runtime/mda/snapshot/bo/pack/PackDivBo.java
+4
-0
PackListboxBo.java
...iance/mda/runtime/mda/snapshot/bo/pack/PackListboxBo.java
+27
-0
PackListcellBo.java
...ance/mda/runtime/mda/snapshot/bo/pack/PackListcellBo.java
+27
-0
PackListheadBo.java
...ance/mda/runtime/mda/snapshot/bo/pack/PackListheadBo.java
+26
-0
PackListheaderBo.java
...ce/mda/runtime/mda/snapshot/bo/pack/PackListheaderBo.java
+30
-0
PackListitemBo.java
...ance/mda/runtime/mda/snapshot/bo/pack/PackListitemBo.java
+26
-0
CustomAttributes.java
.../mda/runtime/mda/snapshot/bo/unpack/CustomAttributes.java
+12
-0
DivBo.java
.../brilliance/mda/runtime/mda/snapshot/bo/unpack/DivBo.java
+3
-0
DocumentBo.java
...liance/mda/runtime/mda/snapshot/bo/unpack/DocumentBo.java
+3
-0
ListboxBo.java
...lliance/mda/runtime/mda/snapshot/bo/unpack/ListboxBo.java
+33
-0
ListheadBo.java
...liance/mda/runtime/mda/snapshot/bo/unpack/ListheadBo.java
+23
-0
ListheaderBo.java
...ance/mda/runtime/mda/snapshot/bo/unpack/ListheaderBo.java
+26
-0
No files found.
gjjs-bd-runtime/src/main/java/com/brilliance/mda/runtime/mda/snapshot/SnapshotServiceImpl.java
View file @
6887dadd
This diff is collapsed.
Click to expand it.
gjjs-bd-runtime/src/main/java/com/brilliance/mda/runtime/mda/snapshot/bo/AttributeEnum.java
deleted
100644 → 0
View file @
d8b7458b
package
com
.
brilliance
.
mda
.
runtime
.
mda
.
snapshot
.
bo
;
/**
* @Description
* @Author s_guodong
* @Date 2023/8/21
*/
public
enum
AttributeEnum
{
LABELID
(
"i18n"
),
FIELDURL
(
"fieldUrl"
),
CODETABLE
(
"codeTable"
);
private
String
value
;
AttributeEnum
(
String
value
)
{
this
.
value
=
value
;
}
}
gjjs-bd-runtime/src/main/java/com/brilliance/mda/runtime/mda/snapshot/bo/pack/PackDivBo.java
View file @
6887dadd
...
@@ -36,4 +36,8 @@ public class PackDivBo {
...
@@ -36,4 +36,8 @@ public class PackDivBo {
@XmlElement
(
name
=
"checkbox"
)
@XmlElement
(
name
=
"checkbox"
)
private
List
<
PackCheckboxBo
>
checkboxBoList
;
private
List
<
PackCheckboxBo
>
checkboxBoList
;
@XmlElement
(
name
=
"listbox"
)
private
List
<
PackListboxBo
>
listboxBoList
;
}
}
gjjs-bd-runtime/src/main/java/com/brilliance/mda/runtime/mda/snapshot/bo/pack/PackListboxBo.java
0 → 100644
View file @
6887dadd
package
com
.
brilliance
.
mda
.
runtime
.
mda
.
snapshot
.
bo
.
pack
;
import
lombok.Data
;
import
javax.xml.bind.annotation.*
;
/**
* @Description
* @Author s_guodong
* @Date 2023/8/21
*/
@XmlAccessorType
(
XmlAccessType
.
FIELD
)
@XmlRootElement
(
name
=
"listbox"
)
@Data
public
class
PackListboxBo
{
@XmlAttribute
(
name
=
"style"
)
private
String
style
;
@XmlAttribute
(
name
=
"zclass"
)
private
String
zclass
=
"z-listbox"
;
@XmlElement
(
name
=
"listhead"
)
private
PackListheadBo
packListheadBo
;
@XmlElement
(
name
=
"listitem"
)
private
PackListitemBo
packListitemBo
;
}
gjjs-bd-runtime/src/main/java/com/brilliance/mda/runtime/mda/snapshot/bo/pack/PackListcellBo.java
0 → 100644
View file @
6887dadd
package
com
.
brilliance
.
mda
.
runtime
.
mda
.
snapshot
.
bo
.
pack
;
import
lombok.Data
;
import
javax.xml.bind.annotation.XmlAccessType
;
import
javax.xml.bind.annotation.XmlAccessorType
;
import
javax.xml.bind.annotation.XmlAttribute
;
import
javax.xml.bind.annotation.XmlRootElement
;
/**
* @Description
* @Author s_guodong
* @Date 2023/8/21
*/
@XmlAccessorType
(
XmlAccessType
.
FIELD
)
@XmlRootElement
(
name
=
"listcell"
)
@Data
public
class
PackListcellBo
{
@XmlAttribute
(
name
=
"label"
)
private
String
label
;
@XmlAttribute
(
name
=
"style"
)
private
String
style
;
@XmlAttribute
(
name
=
"zclass"
)
private
String
zclass
=
"z-listcell"
;
}
gjjs-bd-runtime/src/main/java/com/brilliance/mda/runtime/mda/snapshot/bo/pack/PackListheadBo.java
0 → 100644
View file @
6887dadd
package
com
.
brilliance
.
mda
.
runtime
.
mda
.
snapshot
.
bo
.
pack
;
import
lombok.Data
;
import
javax.xml.bind.annotation.*
;
import
java.util.List
;
/**
* @Description
* @Author s_guodong
* @Date 2023/8/21
*/
@XmlAccessorType
(
XmlAccessType
.
FIELD
)
@XmlRootElement
(
name
=
"listhead"
)
@Data
public
class
PackListheadBo
{
@XmlAttribute
(
name
=
"sizable"
)
private
String
sizable
=
"true"
;
@XmlAttribute
(
name
=
"zclass"
)
private
String
zclass
=
"z-listhead"
;
@XmlElement
(
name
=
"listheader"
)
private
List
<
PackListheaderBo
>
listheader
;
}
gjjs-bd-runtime/src/main/java/com/brilliance/mda/runtime/mda/snapshot/bo/pack/PackListheaderBo.java
0 → 100644
View file @
6887dadd
package
com
.
brilliance
.
mda
.
runtime
.
mda
.
snapshot
.
bo
.
pack
;
import
lombok.Data
;
import
javax.xml.bind.annotation.XmlAccessType
;
import
javax.xml.bind.annotation.XmlAccessorType
;
import
javax.xml.bind.annotation.XmlAttribute
;
import
javax.xml.bind.annotation.XmlRootElement
;
/**
* @Description
* @Author s_guodong
* @Date 2023/8/21
*/
@XmlAccessorType
(
XmlAccessType
.
FIELD
)
@XmlRootElement
(
name
=
"listheader"
)
@Data
public
class
PackListheaderBo
{
@XmlAttribute
(
name
=
"label"
)
private
String
label
;
@XmlAttribute
(
name
=
"width"
)
private
String
width
;
@XmlAttribute
(
name
=
"style"
)
private
String
style
;
@XmlAttribute
(
name
=
"zclass"
)
private
String
zclass
=
"z-listheader"
;
}
gjjs-bd-runtime/src/main/java/com/brilliance/mda/runtime/mda/snapshot/bo/pack/PackListitemBo.java
0 → 100644
View file @
6887dadd
package
com
.
brilliance
.
mda
.
runtime
.
mda
.
snapshot
.
bo
.
pack
;
import
lombok.Data
;
import
javax.xml.bind.annotation.*
;
import
java.util.List
;
/**
* @Description
* @Author s_guodong
* @Date 2023/8/21
*/
@XmlAccessorType
(
XmlAccessType
.
FIELD
)
@XmlRootElement
(
name
=
"listiteam"
)
@Data
public
class
PackListitemBo
{
@XmlAttribute
(
name
=
"height"
)
private
String
height
;
@XmlAttribute
(
name
=
"zclass"
)
private
String
zclass
=
"z-listitem"
;
@XmlElement
(
name
=
"listcell"
)
private
List
<
PackListcellBo
>
listcell
;
}
gjjs-bd-runtime/src/main/java/com/brilliance/mda/runtime/mda/snapshot/bo/unpack/CustomAttributes.java
View file @
6887dadd
...
@@ -25,4 +25,16 @@ public class CustomAttributes {
...
@@ -25,4 +25,16 @@ public class CustomAttributes {
@XmlAttribute
(
name
=
"codeTable"
)
@XmlAttribute
(
name
=
"codeTable"
)
private
String
codeTable
;
private
String
codeTable
;
@XmlAttribute
(
name
=
"columnName"
)
private
String
columnName
;
@XmlAttribute
(
name
=
"columnStyle"
)
private
String
columnStyle
;
@XmlAttribute
(
name
=
"formatter"
)
private
String
formatter
;
@XmlAttribute
(
name
=
"rowHeight"
)
private
String
rowHeight
;
}
}
gjjs-bd-runtime/src/main/java/com/brilliance/mda/runtime/mda/snapshot/bo/unpack/DivBo.java
View file @
6887dadd
...
@@ -36,4 +36,7 @@ public class DivBo {
...
@@ -36,4 +36,7 @@ public class DivBo {
@XmlElement
(
name
=
"checkbox"
)
@XmlElement
(
name
=
"checkbox"
)
private
List
<
CheckboxBo
>
checkboxList
;
private
List
<
CheckboxBo
>
checkboxList
;
@XmlElement
(
name
=
"listbox"
)
private
List
<
ListboxBo
>
listboxBoList
;
}
}
gjjs-bd-runtime/src/main/java/com/brilliance/mda/runtime/mda/snapshot/bo/unpack/DocumentBo.java
View file @
6887dadd
...
@@ -36,6 +36,9 @@ public class DocumentBo {
...
@@ -36,6 +36,9 @@ public class DocumentBo {
@XmlElement
(
name
=
"checkbox"
)
@XmlElement
(
name
=
"checkbox"
)
private
List
<
CheckboxBo
>
checkboxList
;
private
List
<
CheckboxBo
>
checkboxList
;
@XmlElement
(
name
=
"listbox"
)
private
List
<
ListboxBo
>
listboxBoList
;
@XmlElement
(
name
=
"borderlayout"
)
@XmlElement
(
name
=
"borderlayout"
)
private
BorderlayoutBo
borderlayoutBo
;
private
BorderlayoutBo
borderlayoutBo
;
}
}
gjjs-bd-runtime/src/main/java/com/brilliance/mda/runtime/mda/snapshot/bo/unpack/ListboxBo.java
0 → 100644
View file @
6887dadd
package
com
.
brilliance
.
mda
.
runtime
.
mda
.
snapshot
.
bo
.
unpack
;
import
lombok.Data
;
import
javax.xml.bind.annotation.*
;
import
java.util.List
;
/**
* @Description
* @Author s_guodong
* @Date 2023/8/16
*/
@XmlAccessorType
(
XmlAccessType
.
FIELD
)
@XmlRootElement
(
name
=
"listbox"
)
@Data
public
class
ListboxBo
{
@XmlAttribute
(
name
=
"style"
)
private
String
style
;
@XmlAttribute
(
name
=
"mold"
)
private
String
mold
=
"paging"
;
@XmlAttribute
(
name
=
"pageSize"
)
private
String
pageSize
;
@XmlElement
(
name
=
"custom-attributes"
)
private
List
<
CustomAttributes
>
customAttributes
;
@XmlElement
(
name
=
"listhead"
)
private
ListheadBo
listhead
;
}
gjjs-bd-runtime/src/main/java/com/brilliance/mda/runtime/mda/snapshot/bo/unpack/ListheadBo.java
0 → 100644
View file @
6887dadd
package
com
.
brilliance
.
mda
.
runtime
.
mda
.
snapshot
.
bo
.
unpack
;
import
lombok.Data
;
import
javax.xml.bind.annotation.*
;
import
java.util.List
;
/**
* @Description
* @Author s_guodong
* @Date 2023/8/16
*/
@XmlAccessorType
(
XmlAccessType
.
FIELD
)
@XmlRootElement
(
name
=
"listhead"
)
@Data
public
class
ListheadBo
{
@XmlElement
(
name
=
"listheader"
)
private
List
<
ListheaderBo
>
listheaderList
;
@XmlAttribute
(
name
=
"sizable"
)
private
String
sizable
=
"true"
;
}
gjjs-bd-runtime/src/main/java/com/brilliance/mda/runtime/mda/snapshot/bo/unpack/ListheaderBo.java
0 → 100644
View file @
6887dadd
package
com
.
brilliance
.
mda
.
runtime
.
mda
.
snapshot
.
bo
.
unpack
;
import
lombok.Data
;
import
javax.xml.bind.annotation.*
;
import
java.util.List
;
/**
* @Description
* @Author s_guodong
* @Date 2023/8/16
*/
@XmlAccessorType
(
XmlAccessType
.
FIELD
)
@XmlRootElement
(
name
=
"listheader"
)
@Data
public
class
ListheaderBo
{
@XmlElement
(
name
=
"custom-attributes"
)
private
List
<
CustomAttributes
>
customAttributes
;
@XmlAttribute
(
name
=
"width"
)
private
String
width
;
@XmlAttribute
(
name
=
"style"
)
private
String
style
;
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment