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.
40 lines
857 B
Java
40 lines
857 B
Java
package com.glxp.api.entity.sync;
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import lombok.AllArgsConstructor;
|
|
import lombok.Builder;
|
|
import lombok.Data;
|
|
import lombok.NoArgsConstructor;
|
|
|
|
import java.util.Date;
|
|
|
|
@Data
|
|
@AllArgsConstructor
|
|
@NoArgsConstructor
|
|
@Builder
|
|
@TableName("basic_download_status")
|
|
public class BasicDownloadStatusEntity {
|
|
|
|
/**
|
|
* 记录ID
|
|
*/
|
|
private String id;
|
|
|
|
/**
|
|
* 任务ID
|
|
*/
|
|
private String taskId;
|
|
private String idDatas;
|
|
private Integer status;
|
|
private String type;
|
|
private Date updateTime;
|
|
private Integer scheduleType;
|
|
private Date startTime;
|
|
private Date endTime;
|
|
private String remark;
|
|
@TableField(value = "cacheFilePath")
|
|
private String cacheFilePath;
|
|
private String execInfo;
|
|
}
|