New file |
| | |
| | | package com.example.springboot.entity.device; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import java.time.LocalDate; |
| | | import java.time.LocalDateTime; |
| | | import java.io.Serializable; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import lombok.EqualsAndHashCode; |
| | | import lombok.experimental.Accessors; |
| | | |
| | | /** |
| | | * <p> |
| | | * |
| | | * </p> |
| | | * |
| | | * @author yyq |
| | | * @since 2023-08-28 |
| | | */ |
| | | @Data |
| | | @EqualsAndHashCode(callSuper = false) |
| | | @Accessors(chain = true) |
| | | @TableName("device") |
| | | @ApiModel(value="DeviceEntity对象", description="") |
| | | public class DeviceEntity implements Serializable { |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | private String deviceId; |
| | | |
| | | private String createUser; |
| | | private String msg; |
| | | private LocalDateTime createTime; |
| | | private long id; |
| | | private String deviceName; |
| | | private String name; |
| | | private String status; |
| | | |
| | | private String info; |
| | | |
| | | private String model; |
| | | |
| | | private LocalDateTime countTimeFlag; |
| | | |
| | | private String address; |
| | | |
| | | private String gps; |
| | | |
| | | private LocalDate debugTime; |
| | | |
| | | private LocalDate endTime; |
| | | |
| | | private String customerName; |
| | | |
| | | private String customerDeviceName; |
| | | |
| | | private LocalDate lastProductCountDate; |
| | | |
| | | |
| | | } |