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(); } }