|
@@ -1,8 +1,5 @@
|
|
|
package com.xy.entity;
|
|
|
|
|
|
-import java.time.LocalDateTime;
|
|
|
-import java.io.Serializable;
|
|
|
-
|
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
import io.swagger.annotations.ApiModel;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
@@ -10,6 +7,9 @@ import lombok.Data;
|
|
|
import lombok.EqualsAndHashCode;
|
|
|
import lombok.experimental.Accessors;
|
|
|
|
|
|
+import java.io.Serializable;
|
|
|
+import java.time.LocalDateTime;
|
|
|
+
|
|
|
/**
|
|
|
* <p>
|
|
|
* 设备计费表
|
|
@@ -21,7 +21,7 @@ import lombok.experimental.Accessors;
|
|
|
@Data
|
|
|
@EqualsAndHashCode(callSuper = false)
|
|
|
@Accessors(chain = true)
|
|
|
-@ApiModel(value="DeviceCharging对象", description="设备计费表")
|
|
|
+@ApiModel(value = "DeviceCharging对象", description = "设备计费表")
|
|
|
public class DeviceCharging implements Serializable {
|
|
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
@@ -36,9 +36,6 @@ public class DeviceCharging implements Serializable {
|
|
|
@ApiModelProperty(value = "管理费剩余天数,权重最高")
|
|
|
private Integer chargingX;
|
|
|
|
|
|
- @ApiModelProperty(value = "算法识别剩余笔数,权重最高")
|
|
|
- private Integer algorithmX;
|
|
|
-
|
|
|
@ApiModelProperty(value = "过期时间")
|
|
|
private LocalDateTime timeout;
|
|
|
|