com.gccloud.starter.plugins.camel.gateway.entity.SysApiEntity Maven / Gradle / Ivy
package com.gccloud.starter.plugins.camel.gateway.entity;
import com.gccloud.starter.core.entity.base.SuperEntity;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
/**
* 协议转发处理
*
* @author liuchengbiao
* @date 2020-07-15 14:45
*/
@Data
public class SysApiEntity extends SuperEntity {
@ApiModelProperty(notes = "名称")
private String name;
@ApiModelProperty(notes = "URI")
private String uri;
/**
*
*/
@ApiModelProperty(notes = "类型")
private Integer type;
@ApiModelProperty(notes = "转发的目标URL")
private String nextUrl;
@ApiModelProperty(notes = "处理规则")
private String rule;
}