增加数据冷热分区

web_backend_develope
wu ming 9 years ago
parent e018bf658d
commit caf65a0996

@ -4,7 +4,7 @@
# 驱动程序 # 驱动程序
jdbc.mysql.driver=com.mysql.jdbc.Driver jdbc.mysql.driver=com.mysql.jdbc.Driver
# 连接url # 连接url
jdbc.mysql.url=jdbc:mysql://192.168.0.110:3306/ftpdata?useUnicode=true&characterEncoding=UTF-8&allowMultiQueries=true jdbc.mysql.url=jdbc:mysql://192.168.0.101:3306/test?useUnicode=true&characterEncoding=UTF-8&allowMultiQueries=true
# 用户名 # 用户名
jdbc.mysql.username=root jdbc.mysql.username=root
# 密码 # 密码

@ -30,7 +30,7 @@ public class PagerOptions {
//模糊查询字段 //模糊查询字段
private String[] array; private String[] array;
private int volumeType; private String volumeType;
//冷热区字段 //冷热区字段
private String mark; private String mark;
@ -161,14 +161,14 @@ public class PagerOptions {
/** /**
* @return the volumeType * @return the volumeType
*/ */
public int getVolumeType() { public String getVolumeType() {
return volumeType; return volumeType;
} }
/** /**
* @param volumeType the volumeType to set * @param volumeType the volumeType to set
*/ */
public void setVolumeType(int volumeType) { public void setVolumeType(String volumeType) {
this.volumeType = volumeType; this.volumeType = volumeType;
} }

Loading…
Cancel
Save