Commit b11b1c15 authored by alex yao's avatar alex yao

feat:Ai软著

parent dd1b12cc
package cn.com.poc.ai_software_copyright.dto;
/**
* @author alex.yao
* @date 2026/1/5
*/
public class CallbackDto {
private String taskId;
private String result;
public String getTaskId() {
return taskId;
}
public void setTaskId(String taskId) {
this.taskId = taskId;
}
public String getResult() {
return result;
}
public void setResult(String result) {
this.result = result;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment