Preprocessed.java 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. package com.ips.system.domain;
  2. import com.fasterxml.jackson.annotation.JsonFormat;
  3. import com.ips.common.annotation.Excel;
  4. import com.ips.common.core.domain.BaseEntity;
  5. import com.ips.system.dto.FileInfoDTO;
  6. import lombok.Data;
  7. import java.util.Date;
  8. import java.util.List;
  9. /**
  10. * 数据预处理对象 biz_preprocessed
  11. *
  12. * @author Allen
  13. * @date 2025-05-21
  14. */
  15. @Data
  16. public class Preprocessed extends BaseEntity
  17. {
  18. private static final long serialVersionUID = 1L;
  19. /** 编号 */
  20. private Long id;
  21. /** 算法名称 */
  22. @Excel(name = "算法名称")
  23. private String taskName;
  24. /** 算法 */
  25. @Excel(name = "算法")
  26. private Long algorithmId;
  27. /** 输入路径 */
  28. private String inputPath;
  29. /** 输出路径 */
  30. private String outputPath;
  31. /** 算法参数 */
  32. private String algorithmParams;
  33. /** 状态 */
  34. @Excel(name = "状态")
  35. private String status;
  36. /** 开始时间 */
  37. @JsonFormat(pattern = "yyyy-MM-dd")
  38. @Excel(name = "开始时间", width = 30, dateFormat = "yyyy-MM-dd")
  39. private Date startTime;
  40. /** 结束时间 */
  41. @JsonFormat(pattern = "yyyy-MM-dd")
  42. @Excel(name = "结束时间", width = 30, dateFormat = "yyyy-MM-dd")
  43. private Date endTime;
  44. private List<FileInfoDTO> folderInfoDTO;
  45. }