123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- package org.jeecg.modules.system.entity;
- import com.baomidou.mybatisplus.annotation.IdType;
- import com.baomidou.mybatisplus.annotation.TableId;
- import com.baomidou.mybatisplus.annotation.TableName;
- import com.fasterxml.jackson.annotation.JsonFormat;
- import io.swagger.annotations.ApiModel;
- import io.swagger.annotations.ApiModelProperty;
- import lombok.Data;
- import lombok.EqualsAndHashCode;
- import lombok.experimental.Accessors;
- import org.jeecg.common.aspect.annotation.Dict;
- import org.jeecgframework.poi.excel.annotation.Excel;
- import org.springframework.format.annotation.DateTimeFormat;
- import java.io.Serializable;
- import java.util.Date;
- /**
- * @Description: gateway路由管理
- * @Author: jeecg-boot
- * @Date: 2020-05-26
- * @Version: V1.0
- */
- @Data
- @TableName("sys_gateway_route")
- @Accessors(chain = true)
- @EqualsAndHashCode(callSuper = false)
- @ApiModel(value="sys_gateway_route对象", description="gateway路由管理")
- public class SysGatewayRoute implements Serializable {
- private static final long serialVersionUID = 1L;
- /**主键*/
- @TableId(type = IdType.ASSIGN_ID)
- @ApiModelProperty(value = "主键")
- private String id;
- /**routerKEy*/
- @ApiModelProperty(value = "路由ID")
- private String routerId;
- /**服务名*/
- @Excel(name = "服务名", width = 15)
- @ApiModelProperty(value = "服务名")
- private String name;
- /**服务地址*/
- @Excel(name = "服务地址", width = 15)
- @ApiModelProperty(value = "服务地址")
- private String uri;
- /**
- * 断言配置
- */
- private String predicates;
- /**
- * 过滤配置
- */
- private String filters;
- /**是否忽略前缀0-否 1-是*/
- @Excel(name = "忽略前缀", width = 15)
- @ApiModelProperty(value = "忽略前缀")
- @Dict(dicCode = "yn")
- private Integer stripPrefix;
- /**是否重试0-否 1-是*/
- @Excel(name = "是否重试", width = 15)
- @ApiModelProperty(value = "是否重试")
- @Dict(dicCode = "yn")
- private Integer retryable;
- /**是否为保留数据:0-否 1-是*/
- @Excel(name = "保留数据", width = 15)
- @ApiModelProperty(value = "保留数据")
- @Dict(dicCode = "yn")
- private Integer persistable;
- /**是否在接口文档中展示:0-否 1-是*/
- @Excel(name = "在接口文档中展示", width = 15)
- @ApiModelProperty(value = "在接口文档中展示")
- @Dict(dicCode = "yn")
- private Integer showApi;
- /**状态 1有效 0无效*/
- @Excel(name = "状态", width = 15)
- @ApiModelProperty(value = "状态")
- @Dict(dicCode = "yn")
- private Integer status;
- /**创建人*/
- @ApiModelProperty(value = "创建人")
- private String createBy;
- /**创建日期*/
- @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
- @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
- @ApiModelProperty(value = "创建日期")
- private Date createTime;
- /* *//**更新人*//*
- @ApiModelProperty(value = "更新人")
- private String updateBy;
- *//**更新日期*//*
- @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
- @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
- @ApiModelProperty(value = "更新日期")
- private Date updateTime;
- *//**所属部门*//*
- @ApiModelProperty(value = "所属部门")
- private String sysOrgCode;*/
- }
|