| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- package cn.com.goldenwater.dcproj.model;
- import java.io.Serializable;
- import io.swagger.annotations.ApiModelProperty;
- import cn.com.goldenwater.core.model.BaseBean;
- import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
- /**
- * entity:GwRouteApi
- *
- * @author lune
- * @date 2019-12-24
- */
- @JsonIgnoreProperties(value = {"handler","hibernateLazyInitializer"})
- public class GwRouteApi extends BaseBean implements Serializable {
- private String id;
- @ApiModelProperty("方法名")
- private String method;
- private String url;
- private String className;
- @ApiModelProperty("接口类型get/post")
- private String type;
- @ApiModelProperty("接口描述")
- private String note;
- @ApiModelProperty("所属应用,后期扩展使用")
- private String ownApp;
- public GwRouteApi() {
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getMethod() {
- return method;
- }
- public void setMethod(String method) {
- this.method = method;
- }
- public String getUrl() {
- return url;
- }
- public void setUrl(String url) {
- this.url = url;
- }
- public String getClassName() {
- return className;
- }
- public void setClassName(String className) {
- this.className = className;
- }
- public String getType() {
- return type;
- }
- public void setType(String type) {
- this.type = type;
- }
- public String getNote() {
- return note;
- }
- public void setNote(String note) {
- this.note = note;
- }
- public String getOwnApp() {
- return ownApp;
- }
- public void setOwnApp(String ownApp) {
- this.ownApp = ownApp;
- }
- @Override
- public String toString() {
- return "GwRouteApi [" + "id=" + id + ", method=" + method + ", url=" + url + ", className=" + className + ", type=" + type + ", note=" + note + ", ownApp=" + ownApp + "]";
- }
- }
|