1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- package com.ips.system.domain;
- import com.fasterxml.jackson.annotation.JsonFormat;
- import com.ips.common.annotation.Excel;
- import com.ips.common.core.domain.BaseEntity;
- import com.ips.system.dto.FileInfoDTO;
- import lombok.Data;
- import java.util.Date;
- import java.util.List;
- /**
- * 数据预处理对象 biz_preprocessed
- *
- * @author Allen
- * @date 2025-05-21
- */
- @Data
- public class Preprocessed extends BaseEntity
- {
- private static final long serialVersionUID = 1L;
- /** 编号 */
- private Long id;
- /** 算法名称 */
- @Excel(name = "算法名称")
- private String taskName;
- /** 算法 */
- @Excel(name = "算法")
- private Long algorithmId;
- /** 输入路径 */
- private String inputPath;
- /** 输出路径 */
- private String outputPath;
- /** 算法参数 */
- private String algorithmParams;
- /** 状态 */
- @Excel(name = "状态")
- private String status;
- /** 开始时间 */
- @JsonFormat(pattern = "yyyy-MM-dd")
- @Excel(name = "开始时间", width = 30, dateFormat = "yyyy-MM-dd")
- private Date startTime;
- /** 结束时间 */
- @JsonFormat(pattern = "yyyy-MM-dd")
- @Excel(name = "结束时间", width = 30, dateFormat = "yyyy-MM-dd")
- private Date endTime;
- private List<FileInfoDTO> folderInfoDTO;
- }
|