123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399 |
- package com.platform.yijia.pojo;
- public class StationInfo {
- /**
- *
- * This field was generated by MyBatis Generator.
- * This field corresponds to the database column station_info.station_id
- *
- * @mbg.generated
- */
- private Integer stationId;
- /**
- *
- * This field was generated by MyBatis Generator.
- * This field corresponds to the database column station_info.station_name
- *
- * @mbg.generated
- */
- private String stationName;
- /**
- *
- * This field was generated by MyBatis Generator.
- * This field corresponds to the database column station_info.station_address
- *
- * @mbg.generated
- */
- private String stationAddress;
- /**
- *
- * This field was generated by MyBatis Generator.
- * This field corresponds to the database column station_info.oil_gun_num
- *
- * @mbg.generated
- */
- private Integer oilGunNum;
- /**
- *
- * This field was generated by MyBatis Generator.
- * This field corresponds to the database column station_info.contacts
- *
- * @mbg.generated
- */
- private String contacts;
- /**
- *
- * This field was generated by MyBatis Generator.
- * This field corresponds to the database column station_info.phone
- *
- * @mbg.generated
- */
- private String phone;
- /**
- *
- * This field was generated by MyBatis Generator.
- * This field corresponds to the database column station_info.station_group_id
- *
- * @mbg.generated
- */
- private Integer stationGroupId;
- /**
- *
- * This field was generated by MyBatis Generator.
- * This field corresponds to the database column station_info.station_group_name
- *
- * @mbg.generated
- */
- private String stationGroupName;
- /**
- *
- * This field was generated by MyBatis Generator.
- * This field corresponds to the database column station_info.station_longitude
- *
- * @mbg.generated
- */
- private String stationLongitude;
- /**
- *
- * This field was generated by MyBatis Generator.
- * This field corresponds to the database column station_info.station_latitude
- *
- * @mbg.generated
- */
- private String stationLatitude;
- /**
- *
- * This field was generated by MyBatis Generator.
- * This field corresponds to the database column station_info.mno
- *
- * @mbg.generated
- */
- private Integer mno;
- /**
- *
- * This field was generated by MyBatis Generator.
- * This field corresponds to the database column station_info.station_pic
- *
- * @mbg.generated
- */
- private byte[] stationPic;
- /**
- * This method was generated by MyBatis Generator.
- * This method returns the value of the database column station_info.station_id
- *
- * @return the value of station_info.station_id
- *
- * @mbg.generated
- */
- public Integer getStationId() {
- return stationId;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method sets the value of the database column station_info.station_id
- *
- * @param stationId the value for station_info.station_id
- *
- * @mbg.generated
- */
- public void setStationId(Integer stationId) {
- this.stationId = stationId;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method returns the value of the database column station_info.station_name
- *
- * @return the value of station_info.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_info.station_name
- *
- * @param stationName the value for station_info.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_info.station_address
- *
- * @return the value of station_info.station_address
- *
- * @mbg.generated
- */
- public String getStationAddress() {
- return stationAddress;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method sets the value of the database column station_info.station_address
- *
- * @param stationAddress the value for station_info.station_address
- *
- * @mbg.generated
- */
- public void setStationAddress(String stationAddress) {
- this.stationAddress = stationAddress == null ? null : stationAddress.trim();
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method returns the value of the database column station_info.oil_gun_num
- *
- * @return the value of station_info.oil_gun_num
- *
- * @mbg.generated
- */
- public Integer getOilGunNum() {
- return oilGunNum;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method sets the value of the database column station_info.oil_gun_num
- *
- * @param oilGunNum the value for station_info.oil_gun_num
- *
- * @mbg.generated
- */
- public void setOilGunNum(Integer oilGunNum) {
- this.oilGunNum = oilGunNum;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method returns the value of the database column station_info.contacts
- *
- * @return the value of station_info.contacts
- *
- * @mbg.generated
- */
- public String getContacts() {
- return contacts;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method sets the value of the database column station_info.contacts
- *
- * @param contacts the value for station_info.contacts
- *
- * @mbg.generated
- */
- public void setContacts(String contacts) {
- this.contacts = contacts == null ? null : contacts.trim();
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method returns the value of the database column station_info.phone
- *
- * @return the value of station_info.phone
- *
- * @mbg.generated
- */
- public String getPhone() {
- return phone;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method sets the value of the database column station_info.phone
- *
- * @param phone the value for station_info.phone
- *
- * @mbg.generated
- */
- public void setPhone(String phone) {
- this.phone = phone == null ? null : phone.trim();
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method returns the value of the database column station_info.station_group_id
- *
- * @return the value of station_info.station_group_id
- *
- * @mbg.generated
- */
- public Integer getStationGroupId() {
- return stationGroupId;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method sets the value of the database column station_info.station_group_id
- *
- * @param stationGroupId the value for station_info.station_group_id
- *
- * @mbg.generated
- */
- public void setStationGroupId(Integer stationGroupId) {
- this.stationGroupId = stationGroupId;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method returns the value of the database column station_info.station_group_name
- *
- * @return the value of station_info.station_group_name
- *
- * @mbg.generated
- */
- public String getStationGroupName() {
- return stationGroupName;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method sets the value of the database column station_info.station_group_name
- *
- * @param stationGroupName the value for station_info.station_group_name
- *
- * @mbg.generated
- */
- public void setStationGroupName(String stationGroupName) {
- this.stationGroupName = stationGroupName == null ? null : stationGroupName.trim();
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method returns the value of the database column station_info.station_longitude
- *
- * @return the value of station_info.station_longitude
- *
- * @mbg.generated
- */
- public String getStationLongitude() {
- return stationLongitude;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method sets the value of the database column station_info.station_longitude
- *
- * @param stationLongitude the value for station_info.station_longitude
- *
- * @mbg.generated
- */
- public void setStationLongitude(String stationLongitude) {
- this.stationLongitude = stationLongitude == null ? null : stationLongitude.trim();
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method returns the value of the database column station_info.station_latitude
- *
- * @return the value of station_info.station_latitude
- *
- * @mbg.generated
- */
- public String getStationLatitude() {
- return stationLatitude;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method sets the value of the database column station_info.station_latitude
- *
- * @param stationLatitude the value for station_info.station_latitude
- *
- * @mbg.generated
- */
- public void setStationLatitude(String stationLatitude) {
- this.stationLatitude = stationLatitude == null ? null : stationLatitude.trim();
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method returns the value of the database column station_info.mno
- *
- * @return the value of station_info.mno
- *
- * @mbg.generated
- */
- public Integer getMno() {
- return mno;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method sets the value of the database column station_info.mno
- *
- * @param mno the value for station_info.mno
- *
- * @mbg.generated
- */
- public void setMno(Integer mno) {
- this.mno = mno;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method returns the value of the database column station_info.station_pic
- *
- * @return the value of station_info.station_pic
- *
- * @mbg.generated
- */
- public byte[] getStationPic() {
- return stationPic;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method sets the value of the database column station_info.station_pic
- *
- * @param stationPic the value for station_info.station_pic
- *
- * @mbg.generated
- */
- public void setStationPic(byte[] stationPic) {
- this.stationPic = stationPic;
- }
- }
|