18 lines
304 B
Java
18 lines
304 B
Java
package io.dataease.datasource.dto;
|
|
|
|
import lombok.Getter;
|
|
import lombok.Setter;
|
|
|
|
/**
|
|
* @Author gin
|
|
* @Date 2021/4/30 10:57 上午
|
|
*/
|
|
@Getter
|
|
@Setter
|
|
public class DBTableDTO {
|
|
private String datasourceId;
|
|
private String name;
|
|
private boolean enableCheck;
|
|
private String datasetPath;
|
|
}
|