|
@@ -0,0 +1,77 @@
|
|
|
|
|
+package com.platform.entity;
|
|
|
|
|
+
|
|
|
|
|
+import com.baomidou.mybatisplus.annotation.*;
|
|
|
|
|
+import lombok.Data;
|
|
|
|
|
+
|
|
|
|
|
+import java.math.BigDecimal;
|
|
|
|
|
+import java.time.LocalDateTime;
|
|
|
|
|
+
|
|
|
|
|
+/**
|
|
|
|
|
+ * 地磅过磅记录表实体类
|
|
|
|
|
+ *
|
|
|
|
|
+ * @author Auto Generated
|
|
|
|
|
+ */
|
|
|
|
|
+@Data
|
|
|
|
|
+@TableName("weighbridge_records")
|
|
|
|
|
+public class WeighbridgeRecord {
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 主键ID
|
|
|
|
|
+ */
|
|
|
|
|
+ @TableId(value = "id", type = IdType.AUTO)
|
|
|
|
|
+ private Long id;
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 地磅名称
|
|
|
|
|
+ */
|
|
|
|
|
+ @TableField("weighbridge_name")
|
|
|
|
|
+ private String weighbridgeName;
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 地磅编码
|
|
|
|
|
+ */
|
|
|
|
|
+ @TableField("weighbridge_code")
|
|
|
|
|
+ private String weighbridgeCode;
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 车牌号
|
|
|
|
|
+ */
|
|
|
|
|
+ @TableField("license_plate")
|
|
|
|
|
+ private String licensePlate;
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 重量(吨)
|
|
|
|
|
+ */
|
|
|
|
|
+ @TableField("weight")
|
|
|
|
|
+ private BigDecimal weight;
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 过磅时间
|
|
|
|
|
+ */
|
|
|
|
|
+ @TableField("weigh_time")
|
|
|
|
|
+ private LocalDateTime weighTime;
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 过磅照片,存储图片 URL 数组
|
|
|
|
|
+ */
|
|
|
|
|
+ @TableField("photo_urls")
|
|
|
|
|
+ private String photoUrls;
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 处理标签,用于指定处理方向
|
|
|
|
|
+ */
|
|
|
|
|
+ @TableField("tag")
|
|
|
|
|
+ private String tag;
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 记录创建时间
|
|
|
|
|
+ */
|
|
|
|
|
+ @TableField(value = "created_at")
|
|
|
|
|
+ private LocalDateTime createdAt;
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 记录更新时间
|
|
|
|
|
+ */
|
|
|
|
|
+ @TableField(value = "updated_at")
|
|
|
|
|
+ private LocalDateTime updatedAt;
|
|
|
|
|
+}
|