package com.platform.yijia.pojo; import java.util.Date; public class StationOilPrice { /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column station_oil_price.oil_price_id * * @mbg.generated */ private Integer oilPriceId; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column station_oil_price.oil_name * * @mbg.generated */ private String oilName; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column station_oil_price.oil_price * * @mbg.generated */ private String oilPrice; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column station_oil_price.station_no * * @mbg.generated */ private String stationNo; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column station_oil_price.station_nanme * * @mbg.generated */ private String stationNanme; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column station_oil_price.date * * @mbg.generated */ private Date date; /** * This method was generated by MyBatis Generator. * This method returns the value of the database column station_oil_price.oil_price_id * * @return the value of station_oil_price.oil_price_id * * @mbg.generated */ public Integer getOilPriceId() { return oilPriceId; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column station_oil_price.oil_price_id * * @param oilPriceId the value for station_oil_price.oil_price_id * * @mbg.generated */ public void setOilPriceId(Integer oilPriceId) { this.oilPriceId = oilPriceId; } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column station_oil_price.oil_name * * @return the value of station_oil_price.oil_name * * @mbg.generated */ public String getOilName() { return oilName; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column station_oil_price.oil_name * * @param oilName the value for station_oil_price.oil_name * * @mbg.generated */ public void setOilName(String oilName) { this.oilName = oilName == null ? null : oilName.trim(); } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column station_oil_price.oil_price * * @return the value of station_oil_price.oil_price * * @mbg.generated */ public String getOilPrice() { return oilPrice; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column station_oil_price.oil_price * * @param oilPrice the value for station_oil_price.oil_price * * @mbg.generated */ public void setOilPrice(String oilPrice) { this.oilPrice = oilPrice == null ? null : oilPrice.trim(); } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column station_oil_price.station_no * * @return the value of station_oil_price.station_no * * @mbg.generated */ public String getStationNo() { return stationNo; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column station_oil_price.station_no * * @param stationNo the value for station_oil_price.station_no * * @mbg.generated */ public void setStationNo(String stationNo) { this.stationNo = stationNo == null ? null : stationNo.trim(); } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column station_oil_price.station_nanme * * @return the value of station_oil_price.station_nanme * * @mbg.generated */ public String getStationNanme() { return stationNanme; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column station_oil_price.station_nanme * * @param stationNanme the value for station_oil_price.station_nanme * * @mbg.generated */ public void setStationNanme(String stationNanme) { this.stationNanme = stationNanme == null ? null : stationNanme.trim(); } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column station_oil_price.date * * @return the value of station_oil_price.date * * @mbg.generated */ public Date getDate() { return date; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column station_oil_price.date * * @param date the value for station_oil_price.date * * @mbg.generated */ public void setDate(Date date) { this.date = date; } }