6 lines
102 B
TypeScript
6 lines
102 B
TypeScript
/** 数据对照 Response */
|
|
export interface DataComparisonRespVO<T> {
|
|
value: T;
|
|
reference: T;
|
|
}
|