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.
19 lines
241 B
Java
19 lines
241 B
Java
1 year ago
|
package com.shibofu.spring.vo;
|
||
|
|
||
|
import lombok.Data;
|
||
|
|
||
|
/**
|
||
|
* @ClassName Archive_detail
|
||
|
* @Author linjj
|
||
|
* @Date 2024/3/10 20:59
|
||
|
* @Version 1.0
|
||
|
*/
|
||
|
@Data
|
||
|
public class ArchiveDetailVo {
|
||
|
|
||
|
private String id;
|
||
|
|
||
|
private String pdfPath;
|
||
|
|
||
|
}
|