chen.lin
昨天 e9543f18fbe81fb492df941fdc6fce59424f8f49
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package com.vincent.rsf.openApi.entity.params;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.experimental.Accessors;
 
import java.io.Serializable;
 
/**
 * @author Ryan
 * @date 2026/2/3
 * @description: RCS回调
 * @version 1.0
 */
@Data
@Accessors(chain = true)
@ApiModel(value = "TaskReportParams", description = "RCS回调")
public class TaskReportParams implements Serializable {
 
    @ApiModelProperty(value = "任务批次", required = true)
    private String batchNo;
 
    @ApiModelProperty(value = "任务编号", required = true)
    private String taskNo;
 
    @ApiModelProperty(value = "时间戳", required = true)
    private String timestamp;
}