1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- package com.fdkankan.modeling.entity;
- import com.baomidou.mybatisplus.annotation.IdType;
- import com.baomidou.mybatisplus.annotation.TableField;
- import com.baomidou.mybatisplus.annotation.TableId;
- import com.baomidou.mybatisplus.annotation.TableLogic;
- import com.baomidou.mybatisplus.annotation.TableName;
- import java.io.Serializable;
- import java.util.Date;
- import lombok.Getter;
- import lombok.Setter;
- /**
- * <p>
- *
- * </p>
- *
- * @author
- * @since 2022-04-07
- */
- @Getter
- @Setter
- @TableName("t_build_log")
- public class BuildLog implements Serializable {
- private static final long serialVersionUID = 1L;
- /**
- * 主键
- */
- @TableId(value = "id", type = IdType.AUTO)
- private Long id;
- /**
- * 场景码
- */
- @TableField("scene_num")
- private String sceneNum;
- /**
- * 资源路径
- */
- @TableField("data_source")
- private String dataSource;
- /**
- * 主题名称
- */
- @TableField("queue_name")
- private String queueName;
- /**
- * ModelingBuildStatus
- */
- @TableField("status")
- private Integer status;
- /**
- * 服务器名称
- */
- @TableField("host_name")
- private String hostName;
- /**
- * 计算类型
- * 0:场景计算
- * 1:标定算法,
- * 2:只生激光场景OBJ文件
- */
- @TableField("build_type")
- private Integer buildType;
- @TableField("source")
- private String source;
- @TableField("log_detail_path")
- private String logDetailPath;
- /**
- * 计算耗时
- */
- @TableField("duration")
- private Long duration;
- /**
- * 开始计算时间
- */
- @TableField("create_time")
- private Date createTime;
- /**
- * 结束计算时间
- */
- @TableField("update_time")
- private Date updateTime;
- }
|