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 io.swagger.annotations.ApiModel;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
import lombok.experimental.Accessors;
|
|
import java.io.Serializable;
|
|
/**
|
* <p>
|
*
|
* </p>
|
*
|
* @author xuzhongpei
|
* @since 2021-12-16
|
*/
|
@Data
|
@EqualsAndHashCode(callSuper = false)
|
@Accessors(chain = true)
|
@TableName(schema = "db_pwrdev_inf",value ="tb_pwrapp_acinf")
|
@ApiModel(value="PwrappAcinf对象", description="")
|
@JsonIgnoreProperties(ignoreUnknown = true)
|
public class PwrappAcinf implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
@TableId(value = "num", type = IdType.AUTO)
|
private Long num;
|
|
@TableField("PowerDeviceId")
|
private Long PowerDeviceId;
|
|
@TableField("InputSWCount")
|
private Integer InputSWCount;
|
|
@TableField("OutputSWCount")
|
private Integer OutputSWCount;
|
|
@TableField("Cap")
|
private Integer Cap;
|
|
@TableField("UsePurPose")
|
private String UsePurPose;
|
|
@TableField(exist = false)
|
private String StationName;
|
|
@TableField(exist = false)
|
private String PowerDeviceName;
|
|
}
|