Merge branch 'dev' of http://47.94.165.164:13000/geg-gas/geg-gas-pcitc into dev
This commit is contained in:
@ -0,0 +1,28 @@
|
||||
package com.xjrsoft.module.datalog.vo;
|
||||
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@Data
|
||||
public class CompareResultVo<T> {
|
||||
|
||||
/**
|
||||
* 最新版本
|
||||
*/
|
||||
@ApiModelProperty("最新版本")
|
||||
private T newBean;
|
||||
|
||||
/**
|
||||
* 旧版本
|
||||
*/
|
||||
@ApiModelProperty("旧版本")
|
||||
private T oldBean;
|
||||
|
||||
/**
|
||||
* 比对结果
|
||||
*/
|
||||
@ApiModelProperty("比对结果")
|
||||
private List<String> diffResultList;
|
||||
}
|
||||
Reference in New Issue
Block a user