Commit 7194b324 by wenyang

标签库增加tagType类型,用于区分标签类别(1=产品标签;2=客户标签;3=专家标签;4=经纪人标签)

parents 4cc47843 f82dbe93
package com.yd.api.metadata.vo; package com.yd.api.metadata.vo;
import java.util.Date;
import java.util.List; import java.util.List;
/** /**
...@@ -17,6 +16,8 @@ public class TagQueryInfo { ...@@ -17,6 +16,8 @@ public class TagQueryInfo {
private String tagName; private String tagName;
private Long tagType;//标签类别
private Integer isActive; private Integer isActive;
private String createdAt; private String createdAt;
...@@ -102,6 +103,20 @@ public class TagQueryInfo { ...@@ -102,6 +103,20 @@ public class TagQueryInfo {
} }
/** /**
* @return the tagType
*/
public Long getTagType() {
return tagType;
}
/**
* @param tagType the tagType to set
*/
public void setTagType(Long tagType) {
this.tagType = tagType;
}
/**
* Gets the value of isActive. * * Gets the value of isActive. *
* *
* @return the value of isActive * @return the value of isActive
...@@ -216,6 +231,7 @@ public class TagQueryInfo { ...@@ -216,6 +231,7 @@ public class TagQueryInfo {
", configLevel=" + configLevel + ", configLevel=" + configLevel +
", upperTagId=" + upperTagId + ", upperTagId=" + upperTagId +
", tagName='" + tagName + '\'' + ", tagName='" + tagName + '\'' +
", tagType='" + tagType + '\'' +
", isActive=" + isActive + ", isActive=" + isActive +
", createdAt='" + createdAt + '\'' + ", createdAt='" + createdAt + '\'' +
", createdBy=" + createdBy + ", createdBy=" + createdBy +
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment