|
@@ -34,7 +34,7 @@ public class ThirdPartyAccessEntity extends JpaEntity {
|
|
|
/**
|
|
|
* 时间差范围
|
|
|
*/
|
|
|
- private long timeRange;
|
|
|
+ private Long timeRange;
|
|
|
|
|
|
public Long getRootOrgId() {
|
|
|
return rootOrgId;
|
|
@@ -60,11 +60,11 @@ public class ThirdPartyAccessEntity extends JpaEntity {
|
|
|
this.secretKey = secretKey;
|
|
|
}
|
|
|
|
|
|
- public long getTimeRange() {
|
|
|
+ public Long getTimeRange() {
|
|
|
return timeRange;
|
|
|
}
|
|
|
|
|
|
- public void setTimeRange(long timeRange) {
|
|
|
+ public void setTimeRange(Long timeRange) {
|
|
|
this.timeRange = timeRange;
|
|
|
}
|
|
|
|