package com.se.nsl.domain;
|
|
import io.swagger.annotations.ApiModel;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
|
@Data
|
@ApiModel(value = "EntityTypeInfo", description = "实体库不同类型的信息")
|
public class EntityTypeInfo implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
private String token;
|
|
private Integer start;
|
|
private boolean containCount;
|
|
private Integer count;
|
|
private String dbid;
|
|
private String layerid;
|
|
private String like;
|
|
private String querytype;
|
|
}
|