Commit 7194b324 by wenyang

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

parents 4cc47843 f82dbe93
package com.yd.api.metadata.vo;
import java.util.Date;
import java.util.List;
/**
......@@ -16,6 +15,8 @@ public class TagQueryInfo {
private Long upperTagId;
private String tagName;
private Long tagType;//标签类别
private Integer isActive;
......@@ -100,8 +101,22 @@ public class TagQueryInfo {
public void setTagName(String tagName) {
this.tagName = tagName;
}
/**
* @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. *
*
* @return the value of isActive
......@@ -216,6 +231,7 @@ public class TagQueryInfo {
", configLevel=" + configLevel +
", upperTagId=" + upperTagId +
", tagName='" + tagName + '\'' +
", tagType='" + tagType + '\'' +
", isActive=" + isActive +
", createdAt='" + createdAt + '\'' +
", 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