You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
471 B
Java
28 lines
471 B
Java
2 years ago
|
package com.glxp.api.entity.sync;
|
||
|
|
||
|
import lombok.Data;
|
||
|
|
||
|
import java.util.Date;
|
||
|
|
||
|
@Data
|
||
|
public class BasicDownloadStatusEntity {
|
||
|
|
||
|
/**
|
||
|
* 记录ID
|
||
|
*/
|
||
|
private String id;
|
||
|
|
||
|
/**
|
||
|
* 任务ID
|
||
|
*/
|
||
|
private String taskId;
|
||
|
private String idDatas;
|
||
|
private Integer status;
|
||
|
private Integer type;
|
||
|
private Date updateTime;
|
||
|
private Integer scheduleType;
|
||
|
private Date startTime;
|
||
|
private Date endTime;
|
||
|
private String remark;
|
||
|
}
|