You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
344 B
Java
22 lines
344 B
Java
3 years ago
|
package com.glxp.api.entity.system;
|
||
|
|
||
|
import lombok.Data;
|
||
|
|
||
|
|
||
|
@Data
|
||
|
public class SchemaData {
|
||
|
/**
|
||
|
* 版本号
|
||
|
*/
|
||
|
public String version;
|
||
|
|
||
|
/**
|
||
|
* 文件名
|
||
|
*/
|
||
|
public String fileName;
|
||
|
|
||
|
public SchemaData(String version, String fileName) {
|
||
|
this.version = version;
|
||
|
this.fileName = fileName;
|
||
|
}
|
||
|
}
|