12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- package com.ips.system.domain;
- import java.util.Date;
- import com.fasterxml.jackson.annotation.JsonFormat;
- import com.ips.common.annotation.Excel;
- import com.ips.common.core.domain.BaseEntity;
- import lombok.Data;
- import org.apache.commons.lang3.builder.ToStringBuilder;
- import org.apache.commons.lang3.builder.ToStringStyle;
- /**
- * 模型训练对象 biz_training
- *
- * @author Allen
- * @date 2025-05-21
- */
- @Data
- public class BizTraining extends BaseEntity
- {
- private static final long serialVersionUID = 1L;
- /** 编号 */
- private Long id;
- /** 算法名称 */
- @Excel(name = "算法名称")
- private String taskName;
- /** 算法 */
- @Excel(name = "算法")
- private Long algorithmId;
- /** 模型 */
- private String modelPath;
- /** 输入路径 */
- private String inputPath;
- /** 输出路径 */
- private String outputPath;
- /** 算法参数 */
- private String algorithmParams;
- /** 状态 */
- @Excel(name = "状态")
- private String status;
- /** 开始时间 */
- @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
- @Excel(name = "开始时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
- private Date startTime;
- /** 结束时间 */
- @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
- @Excel(name = "结束时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
- private Date endTime;
- private String algorithmName;
- }
|