huliguo
3 天以前 8e0decd25b9ec86b02d58de53dee1451f83d1566
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;
 
}