|
@@ -0,0 +1,106 @@
|
|
|
|
|
+package com.sckw.system.model.vo.res;
|
|
|
|
|
+
|
|
|
|
|
+import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
|
|
+import io.swagger.v3.oas.annotations.media.Schema;
|
|
|
|
|
+import lombok.Data;
|
|
|
|
|
+
|
|
|
|
|
+import java.io.Serial;
|
|
|
|
|
+import java.io.Serializable;
|
|
|
|
|
+import java.util.Date;
|
|
|
|
|
+
|
|
|
|
|
+/**
|
|
|
|
|
+ * 地磅分页响应。
|
|
|
|
|
+ */
|
|
|
|
|
+@Data
|
|
|
|
|
+@Schema(description = "地磅分页响应")
|
|
|
|
|
+public class WeighbridgePageResVo implements Serializable {
|
|
|
|
|
+
|
|
|
|
|
+ @Serial
|
|
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 主键ID。
|
|
|
|
|
+ */
|
|
|
|
|
+ @Schema(description = "主键ID")
|
|
|
|
|
+ private Long id;
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 企业ID。
|
|
|
|
|
+ */
|
|
|
|
|
+ @Schema(description = "企业ID")
|
|
|
|
|
+ private Long entId;
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 企业名称。
|
|
|
|
|
+ */
|
|
|
|
|
+ @Schema(description = "企业名称")
|
|
|
|
|
+ private String enterpriseName;
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 地磅名称。
|
|
|
|
|
+ */
|
|
|
|
|
+ @Schema(description = "地磅名称")
|
|
|
|
|
+ private String weighbridgeName;
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 唯一编码。
|
|
|
|
|
+ */
|
|
|
|
|
+ @Schema(description = "唯一编码")
|
|
|
|
|
+ private String uniqueCode;
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 在线状态,0-离线,1-在线。
|
|
|
|
|
+ */
|
|
|
|
|
+ @Schema(description = "在线状态,0-离线,1-在线")
|
|
|
|
|
+ private Integer onlineStatus;
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 在线状态名称。
|
|
|
|
|
+ */
|
|
|
|
|
+ @Schema(description = "在线状态名称")
|
|
|
|
|
+ private String onlineStatusName;
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 关联打印机ID。
|
|
|
|
|
+ */
|
|
|
|
|
+ @Schema(description = "关联打印机ID")
|
|
|
|
|
+ private Long printerId;
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 关联打印机名称。
|
|
|
|
|
+ */
|
|
|
|
|
+ @Schema(description = "关联打印机名称")
|
|
|
|
|
+ private String printerName;
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 描述。
|
|
|
|
|
+ */
|
|
|
|
|
+ @Schema(description = "描述")
|
|
|
|
|
+ private String description;
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 启停状态,0-启用,1-停用。
|
|
|
|
|
+ */
|
|
|
|
|
+ @Schema(description = "启停状态,0-启用,1-停用")
|
|
|
|
|
+ private Integer status;
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 启停状态名称。
|
|
|
|
|
+ */
|
|
|
|
|
+ @Schema(description = "启停状态名称")
|
|
|
|
|
+ private String statusName;
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 创建时间。
|
|
|
|
|
+ */
|
|
|
|
|
+ @Schema(description = "创建时间")
|
|
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
|
|
|
+ private Date createTime;
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 最近重启时间。
|
|
|
|
|
+ */
|
|
|
|
|
+ @Schema(description = "最近重启时间")
|
|
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
|
|
|
+ private Date lastRestartTime;
|
|
|
|
|
+}
|