1:修改id映射关系中的regionid为redis中的key方便在取消时直接根据key重命名
2:添加取消配置时获取表名的方式
This commit is contained in:
@@ -14,17 +14,17 @@ public class GroupAndRegionRelations implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
private Long groupId;
|
||||
private Long regionId;
|
||||
private String regionId;
|
||||
public Long getGroupId() {
|
||||
return groupId;
|
||||
}
|
||||
public void setGroupId(Long groupId) {
|
||||
this.groupId = groupId;
|
||||
}
|
||||
public Long getRegionId() {
|
||||
public String getRegionId() {
|
||||
return regionId;
|
||||
}
|
||||
public void setRegionId(Long regionId) {
|
||||
public void setRegionId(String regionId) {
|
||||
this.regionId = regionId;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user