|
|
@@ -2,12 +2,9 @@ package com.kym.entity;
|
|
|
|
|
|
import com.alibaba.fastjson2.annotation.JSONField;
|
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
-import com.google.gson.annotations.Expose;
|
|
|
import lombok.Getter;
|
|
|
import lombok.Setter;
|
|
|
|
|
|
-import java.time.LocalDateTime;
|
|
|
-
|
|
|
/**
|
|
|
* <p>
|
|
|
* 洗车设备参数配置表
|
|
|
@@ -19,15 +16,10 @@ import java.time.LocalDateTime;
|
|
|
@Getter
|
|
|
@Setter
|
|
|
@TableName("t_device_config")
|
|
|
-public class DeviceConfig {
|
|
|
+public class DeviceConfig extends BaseEntity {
|
|
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
- /**
|
|
|
- * ID
|
|
|
- */
|
|
|
- private Long id;
|
|
|
-
|
|
|
/**
|
|
|
* 公司(租户)ID
|
|
|
*/
|
|
|
@@ -208,18 +200,6 @@ public class DeviceConfig {
|
|
|
*/
|
|
|
private Integer motorFlowOff;
|
|
|
|
|
|
- /**
|
|
|
- * 创建时间
|
|
|
- */
|
|
|
- @Expose
|
|
|
- private LocalDateTime createTime;
|
|
|
-
|
|
|
- /**
|
|
|
- * 更新时间
|
|
|
- */
|
|
|
- @Expose
|
|
|
- private LocalDateTime updateTime;
|
|
|
-
|
|
|
private String name;
|
|
|
private String remark;
|
|
|
|