Commit 71277281 by zhiwj

bug

parent 7fff224e
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;
}
......
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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment