| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197 |
- package com.minpay.db.table.model;
- import com.startup.minpay.frame.data.AbstractMINBean;
- public class TpLogisticsHis extends AbstractMINBean {
- /**
- * This field was generated by MyBatis Generator.
- * This field corresponds to the database column tp_logistics_his.LHS_FOLWNO
- *
- * @mbggenerated
- */
- private String folwno;
- /**
- * This field was generated by MyBatis Generator.
- * This field corresponds to the database column tp_logistics_his.LHS_ORDERNO
- *
- * @mbggenerated
- */
- private String orderno;
- /**
- * This field was generated by MyBatis Generator.
- * This field corresponds to the database column tp_logistics_his.LHS_LAST_STT
- *
- * @mbggenerated
- */
- private String lastStt;
- /**
- * This field was generated by MyBatis Generator.
- * This field corresponds to the database column tp_logistics_his.LHS_STT
- *
- * @mbggenerated
- */
- private String stt;
- /**
- * This field was generated by MyBatis Generator.
- * This field corresponds to the database column tp_logistics_his.LHS_USER
- *
- * @mbggenerated
- */
- private String user;
- /**
- * This field was generated by MyBatis Generator.
- * This field corresponds to the database column tp_logistics_his.LHS_TIME
- *
- * @mbggenerated
- */
- private String time;
- /**
- * This method was generated by MyBatis Generator.
- * This method returns the value of the database column tp_logistics_his.LHS_FOLWNO
- *
- * @return the value of tp_logistics_his.LHS_FOLWNO
- *
- * @mbggenerated
- */
- public String getFolwno() {
- return folwno;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method sets the value of the database column tp_logistics_his.LHS_FOLWNO
- *
- * @param folwno the value for tp_logistics_his.LHS_FOLWNO
- *
- * @mbggenerated
- */
- public void setFolwno(String folwno) {
- this.folwno = folwno == null ? null : folwno.trim();
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method returns the value of the database column tp_logistics_his.LHS_ORDERNO
- *
- * @return the value of tp_logistics_his.LHS_ORDERNO
- *
- * @mbggenerated
- */
- public String getOrderno() {
- return orderno;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method sets the value of the database column tp_logistics_his.LHS_ORDERNO
- *
- * @param orderno the value for tp_logistics_his.LHS_ORDERNO
- *
- * @mbggenerated
- */
- public void setOrderno(String orderno) {
- this.orderno = orderno == null ? null : orderno.trim();
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method returns the value of the database column tp_logistics_his.LHS_LAST_STT
- *
- * @return the value of tp_logistics_his.LHS_LAST_STT
- *
- * @mbggenerated
- */
- public String getLastStt() {
- return lastStt;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method sets the value of the database column tp_logistics_his.LHS_LAST_STT
- *
- * @param lastStt the value for tp_logistics_his.LHS_LAST_STT
- *
- * @mbggenerated
- */
- public void setLastStt(String lastStt) {
- this.lastStt = lastStt == null ? null : lastStt.trim();
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method returns the value of the database column tp_logistics_his.LHS_STT
- *
- * @return the value of tp_logistics_his.LHS_STT
- *
- * @mbggenerated
- */
- public String getStt() {
- return stt;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method sets the value of the database column tp_logistics_his.LHS_STT
- *
- * @param stt the value for tp_logistics_his.LHS_STT
- *
- * @mbggenerated
- */
- public void setStt(String stt) {
- this.stt = stt == null ? null : stt.trim();
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method returns the value of the database column tp_logistics_his.LHS_USER
- *
- * @return the value of tp_logistics_his.LHS_USER
- *
- * @mbggenerated
- */
- public String getUser() {
- return user;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method sets the value of the database column tp_logistics_his.LHS_USER
- *
- * @param user the value for tp_logistics_his.LHS_USER
- *
- * @mbggenerated
- */
- public void setUser(String user) {
- this.user = user == null ? null : user.trim();
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method returns the value of the database column tp_logistics_his.LHS_TIME
- *
- * @return the value of tp_logistics_his.LHS_TIME
- *
- * @mbggenerated
- */
- public String getTime() {
- return time;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method sets the value of the database column tp_logistics_his.LHS_TIME
- *
- * @param time the value for tp_logistics_his.LHS_TIME
- *
- * @mbggenerated
- */
- public void setTime(String time) {
- this.time = time == null ? null : time.trim();
- }
- }
|