Commit 64d5d83e by wenyang

标签库新增接口

parent 2e837549
...@@ -22,11 +22,11 @@ public class TagQueryInfo { ...@@ -22,11 +22,11 @@ public class TagQueryInfo {
private String createdAt; private String createdAt;
private Long createdBy; private String createdBy;
private String updatedAt; private String updatedAt;
private Long updatedBy; private String updatedBy;
public List<TagQueryInfo> tagQueryInfos; public List<TagQueryInfo> tagQueryInfos;
...@@ -157,7 +157,7 @@ public class TagQueryInfo { ...@@ -157,7 +157,7 @@ public class TagQueryInfo {
* *
* @return the value of createdBy * @return the value of createdBy
*/ */
public Long getCreatedBy() { public String getCreatedBy() {
return createdBy; return createdBy;
} }
...@@ -166,7 +166,7 @@ public class TagQueryInfo { ...@@ -166,7 +166,7 @@ public class TagQueryInfo {
* <p>You can use getCreatedBy() to get the value of createdBy</p> * <p>You can use getCreatedBy() to get the value of createdBy</p>
* * @param createdBy createdBy * * @param createdBy createdBy
*/ */
public void setCreatedBy(Long createdBy) { public void setCreatedBy(String createdBy) {
this.createdBy = createdBy; this.createdBy = createdBy;
} }
...@@ -193,7 +193,7 @@ public class TagQueryInfo { ...@@ -193,7 +193,7 @@ public class TagQueryInfo {
* *
* @return the value of updatedBy * @return the value of updatedBy
*/ */
public Long getUpdatedBy() { public String getUpdatedBy() {
return updatedBy; return updatedBy;
} }
...@@ -202,7 +202,7 @@ public class TagQueryInfo { ...@@ -202,7 +202,7 @@ public class TagQueryInfo {
* <p>You can use getUpdatedBy() to get the value of updatedBy</p> * <p>You can use getUpdatedBy() to get the value of updatedBy</p>
* * @param updatedBy updatedBy * * @param updatedBy updatedBy
*/ */
public void setUpdatedBy(Long updatedBy) { public void setUpdatedBy(String updatedBy) {
this.updatedBy = updatedBy; this.updatedBy = updatedBy;
} }
......
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