package com.whyc.pojo;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
|
import com.whyc.dto.Page;
|
import io.swagger.annotations.ApiModel;
|
import lombok.*;
|
import lombok.experimental.Accessors;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* <p>
|
*
|
* </p>
|
*
|
* @author xuzhongpei
|
* @since 2022-02-16
|
*/
|
@Data
|
@AllArgsConstructor
|
@NoArgsConstructor
|
@ToString
|
@TableName(schema = "web_site",value = "tb_battpower_off")
|
@ApiModel(value="BattpowerOff对象", description="")
|
@JsonIgnoreProperties(ignoreUnknown = true)
|
public class BattpowerOff implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
@TableId(value = "num", type = IdType.AUTO)
|
private Integer num;
|
|
private Integer devId;
|
|
private Integer recordCount;
|
|
private Date poweroffStarttime;
|
|
@TableField(exist = false)
|
private Date poweroffStarttime1;
|
|
private Date poweroffStoptime;
|
|
private Integer powerState;
|
|
private Integer timelong;
|
|
private String note;
|
|
@TableField(exist = false)
|
private String stationName;
|
|
@TableField(exist = false)
|
private String stationName1;
|
|
@TableField(exist = false)
|
private Page page;
|
|
@TableField(exist = false)
|
private int uId;
|
|
}
|