|
|
@@ -47,7 +47,7 @@ public class CommonCount implements Serializable{
|
|
|
* 数量
|
|
|
*/
|
|
|
@Column(name = "cc_count")
|
|
|
- private Integer count;
|
|
|
+ private Long count;
|
|
|
|
|
|
/**
|
|
|
* 状态,是否激活(1:是;0:否)
|
|
|
@@ -87,11 +87,11 @@ public class CommonCount implements Serializable{
|
|
|
this.sql = sql;
|
|
|
}
|
|
|
|
|
|
- public Integer getCount() {
|
|
|
+ public Long getCount() {
|
|
|
return count;
|
|
|
}
|
|
|
|
|
|
- public void setCount(Integer count) {
|
|
|
+ public void setCount(Long count) {
|
|
|
this.count = count;
|
|
|
}
|
|
|
|