fix: 添加dto用于生成jmx

添加dto用于生成jmx
This commit is contained in:
song.tianyang 2021-01-05 17:50:56 +08:00
parent b0f9723dd4
commit 7f8478d904
1 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,16 @@
package io.metersphere.api.dto;
import lombok.Getter;
import lombok.Setter;
/**
* @author song.tianyang
* @Date 2021/1/5 5:48 下午
* @Description
*/
@Getter
@Setter
public class JmxInfoDTO {
private String name;
private String xml;
}