| | |
| | | package com.whyc.pojo; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | |
| | | @ApiModel |
| | | @TableName(schema = "`db_3.5mw_web`" , value = "`tb_experiment_base_data_kz`") |
| | | public class ExperimentBaseDataKZ extends ExperimentBaseData{ |
| | | private Integer id; |
| | | @ApiModelProperty("试验编号") |
| | | private String id; |
| | | private String experimentId; |
| | | @ApiModelProperty("额定功率,单位KW") |
| | | private Float ratedPower; |
| | | @ApiModelProperty("额定电压,单位V") |
| | |
| | | @ApiModelProperty("齿轮转速比") |
| | | private String gearSpeedRatio; |
| | | |
| | | public String getId() { |
| | | public Integer getId() { |
| | | return id; |
| | | } |
| | | |
| | | public void setId(String id) { |
| | | public void setId(Integer id) { |
| | | this.id = id; |
| | | } |
| | | |
| | | public String getExperimentId() { |
| | | return experimentId; |
| | | } |
| | | |
| | | public void setExperimentId(String experimentId) { |
| | | this.experimentId = experimentId; |
| | | } |
| | | |
| | | public Float getRatedPower() { |
| | | return ratedPower; |
| | | } |