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; /** *
* *
* * @author xuzhongpei * @since 2021-12-16 */ @Data @EqualsAndHashCode(callSuper = false) @Accessors(chain = true) @TableName(schema = "db_pwrdev_inf",value ="tb_pwrapp_acdcinf") @ApiModel(value="PwrappAcdcinf对象", description="") @JsonIgnoreProperties(ignoreUnknown = true) public class PwrappAcdcinf implements Serializable { private static final long serialVersionUID = 1L; @TableId(value = "num", type = IdType.AUTO) private Long num; @TableField("PowerDeviceId") private Long PowerDeviceId; @TableField("ModuleInUseCount") private Integer ModuleInUseCount; @TableField("ModuleCap") private Integer ModuleCap; @TableField("ModuleSlotCount") private Integer ModuleSlotCount; @TableField("ModuleSwitchStatus") private String ModuleSwitchStatus; @TableField(exist = false) private String StationName; @TableField(exist = false) private String PowerDeviceName; }