package com.platform.yijia.pojo; import java.util.Date; public class StationOilAdjustPrice { /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column station_oil_adjust_price.adjust_price_id * * @mbg.generated */ private Integer adjustPriceId; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column station_oil_adjust_price.oil_name * * @mbg.generated */ private String oilName; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column station_oil_adjust_price.oil_adjust_price * * @mbg.generated */ private String oilAdjustPrice; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column station_oil_adjust_price.take_effect_status * * @mbg.generated */ private String takeEffectStatus; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column station_oil_adjust_price.take_effect_date * * @mbg.generated */ private Date takeEffectDate; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column station_oil_adjust_price.adjust_date * * @mbg.generated */ private Date adjustDate; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column station_oil_adjust_price.station_no * * @mbg.generated */ private String stationNo; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column station_oil_adjust_price.station_name * * @mbg.generated */ private String stationName; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column station_oil_adjust_price.operator * * @mbg.generated */ private String operator; /** * This method was generated by MyBatis Generator. * This method returns the value of the database column station_oil_adjust_price.adjust_price_id * * @return the value of station_oil_adjust_price.adjust_price_id * * @mbg.generated */ public Integer getAdjustPriceId() { return adjustPriceId; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column station_oil_adjust_price.adjust_price_id * * @param adjustPriceId the value for station_oil_adjust_price.adjust_price_id * * @mbg.generated */ public void setAdjustPriceId(Integer adjustPriceId) { this.adjustPriceId = adjustPriceId; } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column station_oil_adjust_price.oil_name * * @return the value of station_oil_adjust_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_adjust_price.oil_name * * @param oilName the value for station_oil_adjust_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_adjust_price.oil_adjust_price * * @return the value of station_oil_adjust_price.oil_adjust_price * * @mbg.generated */ public String getOilAdjustPrice() { return oilAdjustPrice; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column station_oil_adjust_price.oil_adjust_price * * @param oilAdjustPrice the value for station_oil_adjust_price.oil_adjust_price * * @mbg.generated */ public void setOilAdjustPrice(String oilAdjustPrice) { this.oilAdjustPrice = oilAdjustPrice == null ? null : oilAdjustPrice.trim(); } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column station_oil_adjust_price.take_effect_status * * @return the value of station_oil_adjust_price.take_effect_status * * @mbg.generated */ public String getTakeEffectStatus() { return takeEffectStatus; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column station_oil_adjust_price.take_effect_status * * @param takeEffectStatus the value for station_oil_adjust_price.take_effect_status * * @mbg.generated */ public void setTakeEffectStatus(String takeEffectStatus) { this.takeEffectStatus = takeEffectStatus == null ? null : takeEffectStatus.trim(); } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column station_oil_adjust_price.take_effect_date * * @return the value of station_oil_adjust_price.take_effect_date * * @mbg.generated */ public Date getTakeEffectDate() { return takeEffectDate; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column station_oil_adjust_price.take_effect_date * * @param takeEffectDate the value for station_oil_adjust_price.take_effect_date * * @mbg.generated */ public void setTakeEffectDate(Date takeEffectDate) { this.takeEffectDate = takeEffectDate; } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column station_oil_adjust_price.adjust_date * * @return the value of station_oil_adjust_price.adjust_date * * @mbg.generated */ public Date getAdjustDate() { return adjustDate; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column station_oil_adjust_price.adjust_date * * @param adjustDate the value for station_oil_adjust_price.adjust_date * * @mbg.generated */ public void setAdjustDate(Date adjustDate) { this.adjustDate = adjustDate; } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column station_oil_adjust_price.station_no * * @return the value of station_oil_adjust_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_adjust_price.station_no * * @param stationNo the value for station_oil_adjust_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_adjust_price.station_name * * @return the value of station_oil_adjust_price.station_name * * @mbg.generated */ public String getStationName() { return stationName; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column station_oil_adjust_price.station_name * * @param stationName the value for station_oil_adjust_price.station_name * * @mbg.generated */ public void setStationName(String stationName) { this.stationName = stationName == null ? null : stationName.trim(); } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column station_oil_adjust_price.operator * * @return the value of station_oil_adjust_price.operator * * @mbg.generated */ public String getOperator() { return operator; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column station_oil_adjust_price.operator * * @param operator the value for station_oil_adjust_price.operator * * @mbg.generated */ public void setOperator(String operator) { this.operator = operator == null ? null : operator.trim(); } }