Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nouiWithSpringMVC
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
gechengyang
nouiWithSpringMVC
Commits
3ac62cf5
Commit
3ac62cf5
authored
4 years ago
by
WeiCong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
表字段转换增加反正
parent
5cf30369
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
4 deletions
+7
-4
NoUiPresentationUtil.java
.../org/sss/presentation/noui/util/NoUiPresentationUtil.java
+7
-4
No files found.
src/main/java/org/sss/presentation/noui/util/NoUiPresentationUtil.java
View file @
3ac62cf5
...
...
@@ -336,10 +336,13 @@ public class NoUiPresentationUtil {
//偏移 头4 尾7
public
static
String
changeForELCS
(
String
str
){
String
btw_str
=
str
.
substring
(
1
,
str
.
length
()-
1
);
String
head
=
change
(
str
.
charAt
(
0
),
4
);
String
tail
=
change
(
str
.
charAt
(
str
.
length
()-
1
),
7
);
return
head
+
btw_str
+
tail
;
if
(
NoUiUtils
.
fieldencode
){
String
btw_str
=
str
.
substring
(
1
,
str
.
length
()-
1
);
String
head
=
change
(
str
.
charAt
(
0
),
4
);
String
tail
=
change
(
str
.
charAt
(
str
.
length
()-
1
),
7
);
return
head
+
btw_str
+
tail
;
}
return
str
;
}
//根据偏移量转换字符
...
...
This diff is collapsed.
Click to expand it.
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