mirror of
https://github.com/dataease/dataease.git
synced 2026-05-19 10:18:11 +08:00
feat: 支持数据集数据的导出
This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
package io.dataease.model;
|
||||
|
||||
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
||||
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class ExportTaskDTO {
|
||||
@JsonSerialize(using= ToStringSerializer.class)
|
||||
private String id;
|
||||
@JsonSerialize(using= ToStringSerializer.class)
|
||||
private Long userId;
|
||||
|
||||
private String fileName;
|
||||
|
||||
private Double fileSize;
|
||||
|
||||
private String fileSizeUnit;
|
||||
|
||||
private String exportFrom;
|
||||
|
||||
private String exportStatus;
|
||||
|
||||
private String msg;
|
||||
|
||||
private String exportFromType;
|
||||
|
||||
private Long exportTime;
|
||||
|
||||
private String exportProgress;
|
||||
|
||||
private String exportMachineName;
|
||||
|
||||
private String exportFromName;
|
||||
|
||||
private String orgName;
|
||||
}
|
||||
Reference in New Issue
Block a user