package com.minpay.db.table.model; import com.startup.minpay.frame.data.AbstractMINBean; public class PubSendDetail extends AbstractMINBean { /** * This field was generated by MyBatis Generator. * This field corresponds to the database column pub_send_detail.SDT_FLOWNO * * @mbggenerated */ private String flowno; /** * This field was generated by MyBatis Generator. * This field corresponds to the database column pub_send_detail.SDT_USERID * * @mbggenerated */ private String userid; /** * This field was generated by MyBatis Generator. * This field corresponds to the database column pub_send_detail.SDT_CODE * * @mbggenerated */ private String code; /** * This field was generated by MyBatis Generator. * This field corresponds to the database column pub_send_detail.SDT_TYPE * * @mbggenerated */ private String type; /** * This field was generated by MyBatis Generator. * This field corresponds to the database column pub_send_detail.SDT_SCOPE * * @mbggenerated */ private String scope; /** * This field was generated by MyBatis Generator. * This field corresponds to the database column pub_send_detail.SDT_SENDTIME * * @mbggenerated */ private String sendtime; /** * This field was generated by MyBatis Generator. * This field corresponds to the database column pub_send_detail.SDT_STATUS * * @mbggenerated */ private String status; /** * This field was generated by MyBatis Generator. * This field corresponds to the database column pub_send_detail.SDT_TEST_TIME * * @mbggenerated */ private String testTime; /** * This field was generated by MyBatis Generator. * This field corresponds to the database column pub_send_detail.SDT_WRONG_TIMES * * @mbggenerated */ private String wrongTimes; /** * This method was generated by MyBatis Generator. * This method returns the value of the database column pub_send_detail.SDT_FLOWNO * * @return the value of pub_send_detail.SDT_FLOWNO * * @mbggenerated */ public String getFlowno() { return flowno; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column pub_send_detail.SDT_FLOWNO * * @param flowno the value for pub_send_detail.SDT_FLOWNO * * @mbggenerated */ public void setFlowno(String flowno) { this.flowno = flowno == null ? null : flowno.trim(); } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column pub_send_detail.SDT_USERID * * @return the value of pub_send_detail.SDT_USERID * * @mbggenerated */ public String getUserid() { return userid; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column pub_send_detail.SDT_USERID * * @param userid the value for pub_send_detail.SDT_USERID * * @mbggenerated */ public void setUserid(String userid) { this.userid = userid == null ? null : userid.trim(); } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column pub_send_detail.SDT_CODE * * @return the value of pub_send_detail.SDT_CODE * * @mbggenerated */ public String getCode() { return code; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column pub_send_detail.SDT_CODE * * @param code the value for pub_send_detail.SDT_CODE * * @mbggenerated */ public void setCode(String code) { this.code = code == null ? null : code.trim(); } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column pub_send_detail.SDT_TYPE * * @return the value of pub_send_detail.SDT_TYPE * * @mbggenerated */ public String getType() { return type; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column pub_send_detail.SDT_TYPE * * @param type the value for pub_send_detail.SDT_TYPE * * @mbggenerated */ public void setType(String type) { this.type = type == null ? null : type.trim(); } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column pub_send_detail.SDT_SCOPE * * @return the value of pub_send_detail.SDT_SCOPE * * @mbggenerated */ public String getScope() { return scope; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column pub_send_detail.SDT_SCOPE * * @param scope the value for pub_send_detail.SDT_SCOPE * * @mbggenerated */ public void setScope(String scope) { this.scope = scope == null ? null : scope.trim(); } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column pub_send_detail.SDT_SENDTIME * * @return the value of pub_send_detail.SDT_SENDTIME * * @mbggenerated */ public String getSendtime() { return sendtime; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column pub_send_detail.SDT_SENDTIME * * @param sendtime the value for pub_send_detail.SDT_SENDTIME * * @mbggenerated */ public void setSendtime(String sendtime) { this.sendtime = sendtime == null ? null : sendtime.trim(); } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column pub_send_detail.SDT_STATUS * * @return the value of pub_send_detail.SDT_STATUS * * @mbggenerated */ public String getStatus() { return status; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column pub_send_detail.SDT_STATUS * * @param status the value for pub_send_detail.SDT_STATUS * * @mbggenerated */ public void setStatus(String status) { this.status = status == null ? null : status.trim(); } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column pub_send_detail.SDT_TEST_TIME * * @return the value of pub_send_detail.SDT_TEST_TIME * * @mbggenerated */ public String getTestTime() { return testTime; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column pub_send_detail.SDT_TEST_TIME * * @param testTime the value for pub_send_detail.SDT_TEST_TIME * * @mbggenerated */ public void setTestTime(String testTime) { this.testTime = testTime == null ? null : testTime.trim(); } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column pub_send_detail.SDT_WRONG_TIMES * * @return the value of pub_send_detail.SDT_WRONG_TIMES * * @mbggenerated */ public String getWrongTimes() { return wrongTimes; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column pub_send_detail.SDT_WRONG_TIMES * * @param wrongTimes the value for pub_send_detail.SDT_WRONG_TIMES * * @mbggenerated */ public void setWrongTimes(String wrongTimes) { this.wrongTimes = wrongTimes == null ? null : wrongTimes.trim(); } }