Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gic-platform-enterprise
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
base_platform_enterprise
gic-platform-enterprise
Commits
71277281
Commit
71277281
authored
Mar 31, 2020
by
zhiwj
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bug
parent
7fff224e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
6 deletions
+10
-6
InternationalSmsRecordVO.java
...a/com/gic/enterprise/web/vo/InternationalSmsRecordVO.java
+5
-3
SmsRecordVO.java
.../src/main/java/com/gic/enterprise/web/vo/SmsRecordVO.java
+5
-3
No files found.
gic-platform-enterprise-web/src/main/java/com/gic/enterprise/web/vo/InternationalSmsRecordVO.java
View file @
71277281
package
com
.
gic
.
enterprise
.
web
.
vo
;
import
com.fasterxml.jackson.annotation.JsonFormat
;
import
com.fasterxml.jackson.databind.annotation.JsonSerialize
;
import
com.gic.enterprise.jsonSeralizer.EncryptJsonSerializer
;
...
...
@@ -17,7 +18,8 @@ public class InternationalSmsRecordVO implements Serializable {
/**
*
*/
private
Integer
smsRecordId
;
@JsonFormat
(
shape
=
JsonFormat
.
Shape
.
STRING
)
private
Long
smsRecordId
;
/**
*
...
...
@@ -130,11 +132,11 @@ public class InternationalSmsRecordVO implements Serializable {
*/
private
String
storeGroupName
;
public
Integer
getSmsRecordId
()
{
public
Long
getSmsRecordId
()
{
return
smsRecordId
;
}
public
void
setSmsRecordId
(
Integer
smsRecordId
)
{
public
void
setSmsRecordId
(
Long
smsRecordId
)
{
this
.
smsRecordId
=
smsRecordId
;
}
...
...
gic-platform-enterprise-web/src/main/java/com/gic/enterprise/web/vo/SmsRecordVO.java
View file @
71277281
package
com
.
gic
.
enterprise
.
web
.
vo
;
import
com.fasterxml.jackson.annotation.JsonFormat
;
import
com.fasterxml.jackson.databind.annotation.JsonSerialize
;
import
com.gic.enterprise.jsonSeralizer.EncryptJsonSerializer
;
...
...
@@ -18,7 +19,8 @@ public class SmsRecordVO implements Serializable {
/**
*
*/
private
Integer
smsRecordId
;
@JsonFormat
(
shape
=
JsonFormat
.
Shape
.
STRING
)
private
Long
smsRecordId
;
/**
*
...
...
@@ -111,11 +113,11 @@ public class SmsRecordVO implements Serializable {
*/
private
Integer
databaseStatus
;
public
Integer
getSmsRecordId
()
{
public
Long
getSmsRecordId
()
{
return
smsRecordId
;
}
public
void
setSmsRecordId
(
Integer
smsRecordId
)
{
public
void
setSmsRecordId
(
Long
smsRecordId
)
{
this
.
smsRecordId
=
smsRecordId
;
}
...
...
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