BuildLog.java 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. package com.fdkankan.modeling.entity;
  2. import com.baomidou.mybatisplus.annotation.IdType;
  3. import com.baomidou.mybatisplus.annotation.TableField;
  4. import com.baomidou.mybatisplus.annotation.TableId;
  5. import com.baomidou.mybatisplus.annotation.TableLogic;
  6. import com.baomidou.mybatisplus.annotation.TableName;
  7. import java.io.Serializable;
  8. import java.util.Date;
  9. import lombok.Getter;
  10. import lombok.Setter;
  11. /**
  12. * <p>
  13. *
  14. * </p>
  15. *
  16. * @author
  17. * @since 2022-04-07
  18. */
  19. @Getter
  20. @Setter
  21. @TableName("t_build_log")
  22. public class BuildLog implements Serializable {
  23. private static final long serialVersionUID = 1L;
  24. /**
  25. * 主键
  26. */
  27. @TableId(value = "id", type = IdType.AUTO)
  28. private Long id;
  29. /**
  30. * 场景码
  31. */
  32. @TableField("scene_num")
  33. private String sceneNum;
  34. /**
  35. * 资源路径
  36. */
  37. @TableField("data_source")
  38. private String dataSource;
  39. /**
  40. * 主题名称
  41. */
  42. @TableField("queue_name")
  43. private String queueName;
  44. /**
  45. * ModelingBuildStatus
  46. */
  47. @TableField("status")
  48. private Integer status;
  49. /**
  50. * 服务器名称
  51. */
  52. @TableField("host_name")
  53. private String hostName;
  54. /**
  55. * 计算类型
  56. * 0:场景计算
  57. * 1:标定算法,
  58. * 2:只生激光场景OBJ文件
  59. */
  60. @TableField("build_type")
  61. private Integer buildType;
  62. @TableField("source")
  63. private String source;
  64. @TableField("log_detail_path")
  65. private String logDetailPath;
  66. /**
  67. * 计算耗时
  68. */
  69. @TableField("duration")
  70. private Long duration;
  71. /**
  72. * 开始计算时间
  73. */
  74. @TableField("create_time")
  75. private Date createTime;
  76. /**
  77. * 结束计算时间
  78. */
  79. @TableField("update_time")
  80. private Date updateTime;
  81. }