guyue
3 天以前 e229a5d7c7ca4c3d3353d8ab6e34df2d6ef642ef
1
2
3
4
5
6
7
8
9
10
11
12
package com.linghu.model.dto;
 
import lombok.Data;
 
@Data
public class SearchTaskResponse {
    private String task_id;
    private String status;
    private String message;
    private String detail;
 
}