forked from github/dataease
11 lines
148 B
Java
11 lines
148 B
Java
|
package io.dataease.dto;
|
||
|
|
||
|
import lombok.Getter;
|
||
|
import lombok.Setter;
|
||
|
|
||
|
@Getter
|
||
|
@Setter
|
||
|
public class BaseSystemConfigDTO {
|
||
|
private String url;
|
||
|
}
|