You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
438 B
18 lines
438 B
package lsgwr.exam.qo;
|
|
|
|
import lombok.AllArgsConstructor;
|
|
import lombok.Data;
|
|
import lombok.NoArgsConstructor;
|
|
|
|
/***********************************************************
|
|
* @note : 要下载的文件的路径
|
|
* @author : 梁山广
|
|
* @version : V1.0 at 2019/5/19 20:10
|
|
***********************************************************/
|
|
@Data
|
|
@AllArgsConstructor
|
|
@NoArgsConstructor
|
|
public class DownloadQo {
|
|
String path;
|
|
}
|