Commit 2e837549 by wenyang

标签库新增查询接口

parent fed83b06
package com.yd.api.metadata.vo;
/**
* @author ywenYang
* @date 2021年06月30日 23:41
*/
public class TagQueryBYIDRequestVO {
private Long id;
/**
* @return the id
*/
public Long getId() {
return id;
}
/**
* @param id the id to set
*/
public void setId(Long id) {
this.id = id;
}
@Override
public String toString() {
return "MdTagNew{" +
", id='" + id + '\'' +
'}';
}
}
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