BizTraining.java 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. package com.ips.system.domain;
  2. import java.util.Date;
  3. import com.fasterxml.jackson.annotation.JsonFormat;
  4. import com.ips.common.annotation.Excel;
  5. import com.ips.common.core.domain.BaseEntity;
  6. import lombok.Data;
  7. import org.apache.commons.lang3.builder.ToStringBuilder;
  8. import org.apache.commons.lang3.builder.ToStringStyle;
  9. /**
  10. * 模型训练对象 biz_training
  11. *
  12. * @author Allen
  13. * @date 2025-05-21
  14. */
  15. @Data
  16. public class BizTraining 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 modelPath;
  29. /** 输入路径 */
  30. private String inputPath;
  31. /** 输出路径 */
  32. private String outputPath;
  33. /** 算法参数 */
  34. private String algorithmParams;
  35. /** 状态 */
  36. @Excel(name = "状态")
  37. private String status;
  38. /** 开始时间 */
  39. @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
  40. @Excel(name = "开始时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
  41. private Date startTime;
  42. /** 结束时间 */
  43. @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
  44. @Excel(name = "结束时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
  45. private Date endTime;
  46. private String algorithmName;
  47. }