|
@@ -1,13 +1,14 @@
|
|
|
package com.izouma.awesomeadmin.model;
|
|
package com.izouma.awesomeadmin.model;
|
|
|
|
|
|
|
|
import java.util.*;
|
|
import java.util.*;
|
|
|
|
|
+
|
|
|
import com.fasterxml.jackson.annotation.JsonAutoDetect;
|
|
import com.fasterxml.jackson.annotation.JsonAutoDetect;
|
|
|
import com.fasterxml.jackson.annotation.JsonInclude;
|
|
import com.fasterxml.jackson.annotation.JsonInclude;
|
|
|
|
|
|
|
|
|
|
|
|
|
@JsonAutoDetect
|
|
@JsonAutoDetect
|
|
|
@JsonInclude(JsonInclude.Include.NON_NULL)
|
|
@JsonInclude(JsonInclude.Include.NON_NULL)
|
|
|
-public class AimPlaceInfo{
|
|
|
|
|
|
|
+public class AimPlaceInfo {
|
|
|
private Integer id;
|
|
private Integer id;
|
|
|
private String delFlag;
|
|
private String delFlag;
|
|
|
private Date updateTime;
|
|
private Date updateTime;
|
|
@@ -58,395 +59,452 @@ public class AimPlaceInfo{
|
|
|
private String aimGroupId;
|
|
private String aimGroupId;
|
|
|
private String templateAimId;
|
|
private String templateAimId;
|
|
|
|
|
|
|
|
-private String idStr;
|
|
|
|
|
|
|
+ private String idStr;
|
|
|
|
|
+
|
|
|
|
|
+ private String searchKey;
|
|
|
|
|
|
|
|
-private String searchKey;
|
|
|
|
|
|
|
+ /**
|
|
|
|
|
+ * and,test_name,like,value;or,remark,=,123
|
|
|
|
|
+ */
|
|
|
|
|
+ private String advancedQuery;
|
|
|
|
|
|
|
|
-/**
|
|
|
|
|
-* and,test_name,like,value;or,remark,=,123
|
|
|
|
|
-*/
|
|
|
|
|
-private String advancedQuery;
|
|
|
|
|
|
|
+ /**
|
|
|
|
|
+ * column_name_,desc_;column_name_,asc
|
|
|
|
|
+ */
|
|
|
|
|
+ private String orderByStr;
|
|
|
|
|
|
|
|
-/**
|
|
|
|
|
-* column_name_,desc_;column_name_,asc
|
|
|
|
|
-*/
|
|
|
|
|
-private String orderByStr;
|
|
|
|
|
|
|
+ private List<ArContent> arContentList;
|
|
|
|
|
|
|
|
- public Integer getId(){
|
|
|
|
|
|
|
+ public Integer getId() {
|
|
|
return this.id;
|
|
return this.id;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- public void setId(Integer id){
|
|
|
|
|
|
|
+ public void setId(Integer id) {
|
|
|
this.id = id;
|
|
this.id = id;
|
|
|
}
|
|
}
|
|
|
- public String getDelFlag(){
|
|
|
|
|
|
|
+
|
|
|
|
|
+ public String getDelFlag() {
|
|
|
return this.delFlag;
|
|
return this.delFlag;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- public void setDelFlag(String delFlag){
|
|
|
|
|
|
|
+ public void setDelFlag(String delFlag) {
|
|
|
this.delFlag = delFlag;
|
|
this.delFlag = delFlag;
|
|
|
}
|
|
}
|
|
|
- public Date getUpdateTime(){
|
|
|
|
|
|
|
+
|
|
|
|
|
+ public Date getUpdateTime() {
|
|
|
return this.updateTime;
|
|
return this.updateTime;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- public void setUpdateTime(Date updateTime){
|
|
|
|
|
|
|
+ public void setUpdateTime(Date updateTime) {
|
|
|
this.updateTime = updateTime;
|
|
this.updateTime = updateTime;
|
|
|
}
|
|
}
|
|
|
- public String getUpdateUser(){
|
|
|
|
|
|
|
+
|
|
|
|
|
+ public String getUpdateUser() {
|
|
|
return this.updateUser;
|
|
return this.updateUser;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- public void setUpdateUser(String updateUser){
|
|
|
|
|
|
|
+ public void setUpdateUser(String updateUser) {
|
|
|
this.updateUser = updateUser;
|
|
this.updateUser = updateUser;
|
|
|
}
|
|
}
|
|
|
- public Date getCreateTime(){
|
|
|
|
|
|
|
+
|
|
|
|
|
+ public Date getCreateTime() {
|
|
|
return this.createTime;
|
|
return this.createTime;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- public void setCreateTime(Date createTime){
|
|
|
|
|
|
|
+ public void setCreateTime(Date createTime) {
|
|
|
this.createTime = createTime;
|
|
this.createTime = createTime;
|
|
|
}
|
|
}
|
|
|
- public String getCreateUser(){
|
|
|
|
|
|
|
+
|
|
|
|
|
+ public String getCreateUser() {
|
|
|
return this.createUser;
|
|
return this.createUser;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- public void setCreateUser(String createUser){
|
|
|
|
|
|
|
+ public void setCreateUser(String createUser) {
|
|
|
this.createUser = createUser;
|
|
this.createUser = createUser;
|
|
|
}
|
|
}
|
|
|
- public String getName(){
|
|
|
|
|
|
|
+
|
|
|
|
|
+ public String getName() {
|
|
|
return this.name;
|
|
return this.name;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- public void setName(String name){
|
|
|
|
|
|
|
+ public void setName(String name) {
|
|
|
this.name = name;
|
|
this.name = name;
|
|
|
}
|
|
}
|
|
|
- public String getType(){
|
|
|
|
|
|
|
+
|
|
|
|
|
+ public String getType() {
|
|
|
return this.type;
|
|
return this.type;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- public void setType(String type){
|
|
|
|
|
|
|
+ public void setType(String type) {
|
|
|
this.type = type;
|
|
this.type = type;
|
|
|
}
|
|
}
|
|
|
- public String getOwnedLandMarkId(){
|
|
|
|
|
|
|
+
|
|
|
|
|
+ public String getOwnedLandMarkId() {
|
|
|
return this.ownedLandMarkId;
|
|
return this.ownedLandMarkId;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- public void setOwnedLandMarkId(String ownedLandMarkId){
|
|
|
|
|
|
|
+ public void setOwnedLandMarkId(String ownedLandMarkId) {
|
|
|
this.ownedLandMarkId = ownedLandMarkId;
|
|
this.ownedLandMarkId = ownedLandMarkId;
|
|
|
}
|
|
}
|
|
|
- public String getArContentGroupId(){
|
|
|
|
|
|
|
+
|
|
|
|
|
+ public String getArContentGroupId() {
|
|
|
return this.arContentGroupId;
|
|
return this.arContentGroupId;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- public void setArContentGroupId(String arContentGroupId){
|
|
|
|
|
|
|
+ public void setArContentGroupId(String arContentGroupId) {
|
|
|
this.arContentGroupId = arContentGroupId;
|
|
this.arContentGroupId = arContentGroupId;
|
|
|
}
|
|
}
|
|
|
- public String getArKitPosX(){
|
|
|
|
|
|
|
+
|
|
|
|
|
+ public String getArKitPosX() {
|
|
|
return this.arKitPosX;
|
|
return this.arKitPosX;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- public void setArKitPosX(String arKitPosX){
|
|
|
|
|
|
|
+ public void setArKitPosX(String arKitPosX) {
|
|
|
this.arKitPosX = arKitPosX;
|
|
this.arKitPosX = arKitPosX;
|
|
|
}
|
|
}
|
|
|
- public String getArKitPosY(){
|
|
|
|
|
|
|
+
|
|
|
|
|
+ public String getArKitPosY() {
|
|
|
return this.arKitPosY;
|
|
return this.arKitPosY;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- public void setArKitPosY(String arKitPosY){
|
|
|
|
|
|
|
+ public void setArKitPosY(String arKitPosY) {
|
|
|
this.arKitPosY = arKitPosY;
|
|
this.arKitPosY = arKitPosY;
|
|
|
}
|
|
}
|
|
|
- public String getArKitPosZ(){
|
|
|
|
|
|
|
+
|
|
|
|
|
+ public String getArKitPosZ() {
|
|
|
return this.arKitPosZ;
|
|
return this.arKitPosZ;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- public void setArKitPosZ(String arKitPosZ){
|
|
|
|
|
|
|
+ public void setArKitPosZ(String arKitPosZ) {
|
|
|
this.arKitPosZ = arKitPosZ;
|
|
this.arKitPosZ = arKitPosZ;
|
|
|
}
|
|
}
|
|
|
- public String getArKitScale(){
|
|
|
|
|
|
|
+
|
|
|
|
|
+ public String getArKitScale() {
|
|
|
return this.arKitScale;
|
|
return this.arKitScale;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- public void setArKitScale(String arKitScale){
|
|
|
|
|
|
|
+ public void setArKitScale(String arKitScale) {
|
|
|
this.arKitScale = arKitScale;
|
|
this.arKitScale = arKitScale;
|
|
|
}
|
|
}
|
|
|
- public String getArKitAngle(){
|
|
|
|
|
|
|
+
|
|
|
|
|
+ public String getArKitAngle() {
|
|
|
return this.arKitAngle;
|
|
return this.arKitAngle;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- public void setArKitAngle(String arKitAngle){
|
|
|
|
|
|
|
+ public void setArKitAngle(String arKitAngle) {
|
|
|
this.arKitAngle = arKitAngle;
|
|
this.arKitAngle = arKitAngle;
|
|
|
}
|
|
}
|
|
|
- public String getArKitShowLenth(){
|
|
|
|
|
|
|
+
|
|
|
|
|
+ public String getArKitShowLenth() {
|
|
|
return this.arKitShowLenth;
|
|
return this.arKitShowLenth;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- public void setArKitShowLenth(String arKitShowLenth){
|
|
|
|
|
|
|
+ public void setArKitShowLenth(String arKitShowLenth) {
|
|
|
this.arKitShowLenth = arKitShowLenth;
|
|
this.arKitShowLenth = arKitShowLenth;
|
|
|
}
|
|
}
|
|
|
- public String getGyroPosX(){
|
|
|
|
|
|
|
+
|
|
|
|
|
+ public String getGyroPosX() {
|
|
|
return this.gyroPosX;
|
|
return this.gyroPosX;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- public void setGyroPosX(String gyroPosX){
|
|
|
|
|
|
|
+ public void setGyroPosX(String gyroPosX) {
|
|
|
this.gyroPosX = gyroPosX;
|
|
this.gyroPosX = gyroPosX;
|
|
|
}
|
|
}
|
|
|
- public String getGyroPosY(){
|
|
|
|
|
|
|
+
|
|
|
|
|
+ public String getGyroPosY() {
|
|
|
return this.gyroPosY;
|
|
return this.gyroPosY;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- public void setGyroPosY(String gyroPosY){
|
|
|
|
|
|
|
+ public void setGyroPosY(String gyroPosY) {
|
|
|
this.gyroPosY = gyroPosY;
|
|
this.gyroPosY = gyroPosY;
|
|
|
}
|
|
}
|
|
|
- public String getGyroPosZ(){
|
|
|
|
|
|
|
+
|
|
|
|
|
+ public String getGyroPosZ() {
|
|
|
return this.gyroPosZ;
|
|
return this.gyroPosZ;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- public void setGyroPosZ(String gyroPosZ){
|
|
|
|
|
|
|
+ public void setGyroPosZ(String gyroPosZ) {
|
|
|
this.gyroPosZ = gyroPosZ;
|
|
this.gyroPosZ = gyroPosZ;
|
|
|
}
|
|
}
|
|
|
- public String getGyroPosScale(){
|
|
|
|
|
|
|
+
|
|
|
|
|
+ public String getGyroPosScale() {
|
|
|
return this.gyroPosScale;
|
|
return this.gyroPosScale;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- public void setGyroPosScale(String gyroPosScale){
|
|
|
|
|
|
|
+ public void setGyroPosScale(String gyroPosScale) {
|
|
|
this.gyroPosScale = gyroPosScale;
|
|
this.gyroPosScale = gyroPosScale;
|
|
|
}
|
|
}
|
|
|
- public String getGyroPosAngle(){
|
|
|
|
|
|
|
+
|
|
|
|
|
+ public String getGyroPosAngle() {
|
|
|
return this.gyroPosAngle;
|
|
return this.gyroPosAngle;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- public void setGyroPosAngle(String gyroPosAngle){
|
|
|
|
|
|
|
+ public void setGyroPosAngle(String gyroPosAngle) {
|
|
|
this.gyroPosAngle = gyroPosAngle;
|
|
this.gyroPosAngle = gyroPosAngle;
|
|
|
}
|
|
}
|
|
|
- public String getGyroPosShowLenth(){
|
|
|
|
|
|
|
+
|
|
|
|
|
+ public String getGyroPosShowLenth() {
|
|
|
return this.gyroPosShowLenth;
|
|
return this.gyroPosShowLenth;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- public void setGyroPosShowLenth(String gyroPosShowLenth){
|
|
|
|
|
|
|
+ public void setGyroPosShowLenth(String gyroPosShowLenth) {
|
|
|
this.gyroPosShowLenth = gyroPosShowLenth;
|
|
this.gyroPosShowLenth = gyroPosShowLenth;
|
|
|
}
|
|
}
|
|
|
- public String getVuforiaImageInfoAreaMarking(){
|
|
|
|
|
|
|
+
|
|
|
|
|
+ public String getVuforiaImageInfoAreaMarking() {
|
|
|
return this.vuforiaImageInfoAreaMarking;
|
|
return this.vuforiaImageInfoAreaMarking;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- public void setVuforiaImageInfoAreaMarking(String vuforiaImageInfoAreaMarking){
|
|
|
|
|
|
|
+ public void setVuforiaImageInfoAreaMarking(String vuforiaImageInfoAreaMarking) {
|
|
|
this.vuforiaImageInfoAreaMarking = vuforiaImageInfoAreaMarking;
|
|
this.vuforiaImageInfoAreaMarking = vuforiaImageInfoAreaMarking;
|
|
|
}
|
|
}
|
|
|
- public String getRemark1(){
|
|
|
|
|
|
|
+
|
|
|
|
|
+ public String getRemark1() {
|
|
|
return this.remark1;
|
|
return this.remark1;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- public void setRemark1(String remark1){
|
|
|
|
|
|
|
+ public void setRemark1(String remark1) {
|
|
|
this.remark1 = remark1;
|
|
this.remark1 = remark1;
|
|
|
}
|
|
}
|
|
|
- public String getRemark2(){
|
|
|
|
|
|
|
+
|
|
|
|
|
+ public String getRemark2() {
|
|
|
return this.remark2;
|
|
return this.remark2;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- public void setRemark2(String remark2){
|
|
|
|
|
|
|
+ public void setRemark2(String remark2) {
|
|
|
this.remark2 = remark2;
|
|
this.remark2 = remark2;
|
|
|
}
|
|
}
|
|
|
- public String getRemark3(){
|
|
|
|
|
|
|
+
|
|
|
|
|
+ public String getRemark3() {
|
|
|
return this.remark3;
|
|
return this.remark3;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- public void setRemark3(String remark3){
|
|
|
|
|
|
|
+ public void setRemark3(String remark3) {
|
|
|
this.remark3 = remark3;
|
|
this.remark3 = remark3;
|
|
|
}
|
|
}
|
|
|
- public String getRemark4(){
|
|
|
|
|
|
|
+
|
|
|
|
|
+ public String getRemark4() {
|
|
|
return this.remark4;
|
|
return this.remark4;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- public void setRemark4(String remark4){
|
|
|
|
|
|
|
+ public void setRemark4(String remark4) {
|
|
|
this.remark4 = remark4;
|
|
this.remark4 = remark4;
|
|
|
}
|
|
}
|
|
|
- public String getRemark5(){
|
|
|
|
|
|
|
+
|
|
|
|
|
+ public String getRemark5() {
|
|
|
return this.remark5;
|
|
return this.remark5;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- public void setRemark5(String remark5){
|
|
|
|
|
|
|
+ public void setRemark5(String remark5) {
|
|
|
this.remark5 = remark5;
|
|
this.remark5 = remark5;
|
|
|
}
|
|
}
|
|
|
- public String getRemark6(){
|
|
|
|
|
|
|
+
|
|
|
|
|
+ public String getRemark6() {
|
|
|
return this.remark6;
|
|
return this.remark6;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- public void setRemark6(String remark6){
|
|
|
|
|
|
|
+ public void setRemark6(String remark6) {
|
|
|
this.remark6 = remark6;
|
|
this.remark6 = remark6;
|
|
|
}
|
|
}
|
|
|
- public Integer getMapIndex(){
|
|
|
|
|
|
|
+
|
|
|
|
|
+ public Integer getMapIndex() {
|
|
|
return this.mapIndex;
|
|
return this.mapIndex;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- public void setMapIndex(Integer mapIndex){
|
|
|
|
|
|
|
+ public void setMapIndex(Integer mapIndex) {
|
|
|
this.mapIndex = mapIndex;
|
|
this.mapIndex = mapIndex;
|
|
|
}
|
|
}
|
|
|
- public String getPosX(){
|
|
|
|
|
|
|
+
|
|
|
|
|
+ public String getPosX() {
|
|
|
return this.posX;
|
|
return this.posX;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- public void setPosX(String posX){
|
|
|
|
|
|
|
+ public void setPosX(String posX) {
|
|
|
this.posX = posX;
|
|
this.posX = posX;
|
|
|
}
|
|
}
|
|
|
- public String getPosY(){
|
|
|
|
|
|
|
+
|
|
|
|
|
+ public String getPosY() {
|
|
|
return this.posY;
|
|
return this.posY;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- public void setPosY(String posY){
|
|
|
|
|
|
|
+ public void setPosY(String posY) {
|
|
|
this.posY = posY;
|
|
this.posY = posY;
|
|
|
}
|
|
}
|
|
|
- public String getPosZ(){
|
|
|
|
|
|
|
+
|
|
|
|
|
+ public String getPosZ() {
|
|
|
return this.posZ;
|
|
return this.posZ;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- public void setPosZ(String posZ){
|
|
|
|
|
|
|
+ public void setPosZ(String posZ) {
|
|
|
this.posZ = posZ;
|
|
this.posZ = posZ;
|
|
|
}
|
|
}
|
|
|
- public String getRemark7(){
|
|
|
|
|
|
|
+
|
|
|
|
|
+ public String getRemark7() {
|
|
|
return this.remark7;
|
|
return this.remark7;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- public void setRemark7(String remark7){
|
|
|
|
|
|
|
+ public void setRemark7(String remark7) {
|
|
|
this.remark7 = remark7;
|
|
this.remark7 = remark7;
|
|
|
}
|
|
}
|
|
|
- public String getRemark8(){
|
|
|
|
|
|
|
+
|
|
|
|
|
+ public String getRemark8() {
|
|
|
return this.remark8;
|
|
return this.remark8;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- public void setRemark8(String remark8){
|
|
|
|
|
|
|
+ public void setRemark8(String remark8) {
|
|
|
this.remark8 = remark8;
|
|
this.remark8 = remark8;
|
|
|
}
|
|
}
|
|
|
- public String getRemark9(){
|
|
|
|
|
|
|
+
|
|
|
|
|
+ public String getRemark9() {
|
|
|
return this.remark9;
|
|
return this.remark9;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- public void setRemark9(String remark9){
|
|
|
|
|
|
|
+ public void setRemark9(String remark9) {
|
|
|
this.remark9 = remark9;
|
|
this.remark9 = remark9;
|
|
|
}
|
|
}
|
|
|
- public String getFrontLevelId(){
|
|
|
|
|
|
|
+
|
|
|
|
|
+ public String getFrontLevelId() {
|
|
|
return this.frontLevelId;
|
|
return this.frontLevelId;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- public void setFrontLevelId(String frontLevelId){
|
|
|
|
|
|
|
+ public void setFrontLevelId(String frontLevelId) {
|
|
|
this.frontLevelId = frontLevelId;
|
|
this.frontLevelId = frontLevelId;
|
|
|
}
|
|
}
|
|
|
- public String getIcon(){
|
|
|
|
|
|
|
+
|
|
|
|
|
+ public String getIcon() {
|
|
|
return this.icon;
|
|
return this.icon;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- public void setIcon(String icon){
|
|
|
|
|
|
|
+ public void setIcon(String icon) {
|
|
|
this.icon = icon;
|
|
this.icon = icon;
|
|
|
}
|
|
}
|
|
|
- public Integer getIconRank(){
|
|
|
|
|
|
|
+
|
|
|
|
|
+ public Integer getIconRank() {
|
|
|
return this.iconRank;
|
|
return this.iconRank;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- public void setIconRank(Integer iconRank){
|
|
|
|
|
|
|
+ public void setIconRank(Integer iconRank) {
|
|
|
this.iconRank = iconRank;
|
|
this.iconRank = iconRank;
|
|
|
}
|
|
}
|
|
|
- public String getAloneFlag(){
|
|
|
|
|
|
|
+
|
|
|
|
|
+ public String getAloneFlag() {
|
|
|
return this.aloneFlag;
|
|
return this.aloneFlag;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- public void setAloneFlag(String aloneFlag){
|
|
|
|
|
|
|
+ public void setAloneFlag(String aloneFlag) {
|
|
|
this.aloneFlag = aloneFlag;
|
|
this.aloneFlag = aloneFlag;
|
|
|
}
|
|
}
|
|
|
- public String getAutoPlay(){
|
|
|
|
|
|
|
+
|
|
|
|
|
+ public String getAutoPlay() {
|
|
|
return this.autoPlay;
|
|
return this.autoPlay;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- public void setAutoPlay(String autoPlay){
|
|
|
|
|
|
|
+ public void setAutoPlay(String autoPlay) {
|
|
|
this.autoPlay = autoPlay;
|
|
this.autoPlay = autoPlay;
|
|
|
}
|
|
}
|
|
|
- public String getAutoDisplay(){
|
|
|
|
|
|
|
+
|
|
|
|
|
+ public String getAutoDisplay() {
|
|
|
return this.autoDisplay;
|
|
return this.autoDisplay;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- public void setAutoDisplay(String autoDisplay){
|
|
|
|
|
|
|
+ public void setAutoDisplay(String autoDisplay) {
|
|
|
this.autoDisplay = autoDisplay;
|
|
this.autoDisplay = autoDisplay;
|
|
|
}
|
|
}
|
|
|
- public String getShowLevel(){
|
|
|
|
|
|
|
+
|
|
|
|
|
+ public String getShowLevel() {
|
|
|
return this.showLevel;
|
|
return this.showLevel;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- public void setShowLevel(String showLevel){
|
|
|
|
|
|
|
+ public void setShowLevel(String showLevel) {
|
|
|
this.showLevel = showLevel;
|
|
this.showLevel = showLevel;
|
|
|
}
|
|
}
|
|
|
- public String getTemplateId(){
|
|
|
|
|
|
|
+
|
|
|
|
|
+ public String getTemplateId() {
|
|
|
return this.templateId;
|
|
return this.templateId;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- public void setTemplateId(String templateId){
|
|
|
|
|
|
|
+ public void setTemplateId(String templateId) {
|
|
|
this.templateId = templateId;
|
|
this.templateId = templateId;
|
|
|
}
|
|
}
|
|
|
- public String getPower(){
|
|
|
|
|
|
|
+
|
|
|
|
|
+ public String getPower() {
|
|
|
return this.power;
|
|
return this.power;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- public void setPower(String power){
|
|
|
|
|
|
|
+ public void setPower(String power) {
|
|
|
this.power = power;
|
|
this.power = power;
|
|
|
}
|
|
}
|
|
|
- public String getAreaId(){
|
|
|
|
|
|
|
+
|
|
|
|
|
+ public String getAreaId() {
|
|
|
return this.areaId;
|
|
return this.areaId;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- public void setAreaId(String areaId){
|
|
|
|
|
|
|
+ public void setAreaId(String areaId) {
|
|
|
this.areaId = areaId;
|
|
this.areaId = areaId;
|
|
|
}
|
|
}
|
|
|
- public String getThingId(){
|
|
|
|
|
|
|
+
|
|
|
|
|
+ public String getThingId() {
|
|
|
return this.thingId;
|
|
return this.thingId;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- public void setThingId(String thingId){
|
|
|
|
|
|
|
+ public void setThingId(String thingId) {
|
|
|
this.thingId = thingId;
|
|
this.thingId = thingId;
|
|
|
}
|
|
}
|
|
|
- public String getAimGroupId(){
|
|
|
|
|
|
|
+
|
|
|
|
|
+ public String getAimGroupId() {
|
|
|
return this.aimGroupId;
|
|
return this.aimGroupId;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- public void setAimGroupId(String aimGroupId){
|
|
|
|
|
|
|
+ public void setAimGroupId(String aimGroupId) {
|
|
|
this.aimGroupId = aimGroupId;
|
|
this.aimGroupId = aimGroupId;
|
|
|
}
|
|
}
|
|
|
- public String getTemplateAimId(){
|
|
|
|
|
|
|
+
|
|
|
|
|
+ public String getTemplateAimId() {
|
|
|
return this.templateAimId;
|
|
return this.templateAimId;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- public void setTemplateAimId(String templateAimId){
|
|
|
|
|
|
|
+ public void setTemplateAimId(String templateAimId) {
|
|
|
this.templateAimId = templateAimId;
|
|
this.templateAimId = templateAimId;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-public String getSearchKey() {
|
|
|
|
|
- return searchKey;
|
|
|
|
|
-}
|
|
|
|
|
|
|
+ public String getSearchKey() {
|
|
|
|
|
+ return searchKey;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
-public void setSearchKey(String searchKey) {
|
|
|
|
|
- this.searchKey = searchKey;
|
|
|
|
|
-}
|
|
|
|
|
|
|
+ public void setSearchKey(String searchKey) {
|
|
|
|
|
+ this.searchKey = searchKey;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
-public String getAdvancedQuery() {
|
|
|
|
|
- return advancedQuery;
|
|
|
|
|
-}
|
|
|
|
|
|
|
+ public String getAdvancedQuery() {
|
|
|
|
|
+ return advancedQuery;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
-public void setAdvancedQuery(String advancedQuery) {
|
|
|
|
|
- this.advancedQuery = advancedQuery;
|
|
|
|
|
-}
|
|
|
|
|
|
|
+ public void setAdvancedQuery(String advancedQuery) {
|
|
|
|
|
+ this.advancedQuery = advancedQuery;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
-public String getOrderByStr() {
|
|
|
|
|
- return orderByStr;
|
|
|
|
|
-}
|
|
|
|
|
|
|
+ public String getOrderByStr() {
|
|
|
|
|
+ return orderByStr;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
-public void setOrderByStr(String orderByStr) {
|
|
|
|
|
- this.orderByStr = orderByStr;
|
|
|
|
|
-}
|
|
|
|
|
|
|
+ public void setOrderByStr(String orderByStr) {
|
|
|
|
|
+ this.orderByStr = orderByStr;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
-public String getIdStr() {
|
|
|
|
|
- return idStr;
|
|
|
|
|
-}
|
|
|
|
|
|
|
+ public String getIdStr() {
|
|
|
|
|
+ return idStr;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
-public void setIdStr(String idStr) {
|
|
|
|
|
- this.idStr = idStr;
|
|
|
|
|
-}
|
|
|
|
|
|
|
+ public void setIdStr(String idStr) {
|
|
|
|
|
+ this.idStr = idStr;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public List<ArContent> getArContentList() {
|
|
|
|
|
+ return arContentList;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
|
|
+ public void setArContentList(List<ArContent> arContentList) {
|
|
|
|
|
+ this.arContentList = arContentList;
|
|
|
|
|
+ }
|
|
|
}
|
|
}
|
|
|
|
|
|