package com.iailab.module.data.gateway.vo;
|
|
import lombok.Data;
|
|
import java.io.Serializable;
|
|
/**
|
* @author PanZhibao
|
* @Description
|
* @createTime 2022年07月20日 10:34:00
|
*/
|
@Data
|
public class SysGatewayApi implements Serializable {
|
private static final long serialVersionUID = 1L;
|
|
private String appKey;
|
|
private Integer apiStatus;
|
|
private String apiAddress;
|
|
private String serverName;
|
}
|