package com.huimv.log.dataobject; import com.huimv.xt.dataobject.BaseDO; import java.util.Date; public class LogWs extends BaseDO { /** * This field was generated by Apache iBATIS ibator. * This field corresponds to the database column log_ws.ID * * @ibatorgenerated Thu Oct 27 14:40:29 CST 2016 */ private Integer id; /** * This field was generated by Apache iBATIS ibator. * This field corresponds to the database column log_ws.JQID * * @ibatorgenerated Thu Oct 27 14:40:29 CST 2016 */ private String jqid; /** * This field was generated by Apache iBATIS ibator. * This field corresponds to the database column log_ws.CMD * * @ibatorgenerated Thu Oct 27 14:40:29 CST 2016 */ private String cmd; /** * This field was generated by Apache iBATIS ibator. * This field corresponds to the database column log_ws.PARAM * * @ibatorgenerated Thu Oct 27 14:40:29 CST 2016 */ private String param; /** * This field was generated by Apache iBATIS ibator. * This field corresponds to the database column log_ws.CODE * * @ibatorgenerated Thu Oct 27 14:40:29 CST 2016 */ private String code; /** * This field was generated by Apache iBATIS ibator. * This field corresponds to the database column log_ws.MESSAGE * * @ibatorgenerated Thu Oct 27 14:40:29 CST 2016 */ private String message; /** * This field was generated by Apache iBATIS ibator. * This field corresponds to the database column log_ws.STRJSON * * @ibatorgenerated Thu Oct 27 14:40:29 CST 2016 */ private String strjson; /** * This field was generated by Apache iBATIS ibator. * This field corresponds to the database column log_ws.XGSJ * * @ibatorgenerated Thu Oct 27 14:40:29 CST 2016 */ private Date xgsj; /** * This field was generated by Apache iBATIS ibator. * This field corresponds to the database column log_ws.YXSJ * * @ibatorgenerated Thu Oct 27 14:40:29 CST 2016 */ private String yxsj; /** * This field was generated by Apache iBATIS ibator. * This field corresponds to the database column log_ws.TYPE * * @ibatorgenerated Thu Oct 27 14:40:29 CST 2016 */ private String type; /** * This method was generated by Apache iBATIS ibator. * This method returns the value of the database column log_ws.ID * * @return the value of log_ws.ID * * @ibatorgenerated Thu Oct 27 14:40:29 CST 2016 */ public Integer getId() { return id; } /** * This method was generated by Apache iBATIS ibator. * This method sets the value of the database column log_ws.ID * * @param id the value for log_ws.ID * * @ibatorgenerated Thu Oct 27 14:40:29 CST 2016 */ public void setId(Integer id) { this.id = id; } /** * This method was generated by Apache iBATIS ibator. * This method returns the value of the database column log_ws.JQID * * @return the value of log_ws.JQID * * @ibatorgenerated Thu Oct 27 14:40:29 CST 2016 */ public String getJqid() { return jqid; } /** * This method was generated by Apache iBATIS ibator. * This method sets the value of the database column log_ws.JQID * * @param jqid the value for log_ws.JQID * * @ibatorgenerated Thu Oct 27 14:40:29 CST 2016 */ public void setJqid(String jqid) { this.jqid = jqid == null ? null : jqid.trim(); } /** * This method was generated by Apache iBATIS ibator. * This method returns the value of the database column log_ws.CMD * * @return the value of log_ws.CMD * * @ibatorgenerated Thu Oct 27 14:40:29 CST 2016 */ public String getCmd() { return cmd; } /** * This method was generated by Apache iBATIS ibator. * This method sets the value of the database column log_ws.CMD * * @param cmd the value for log_ws.CMD * * @ibatorgenerated Thu Oct 27 14:40:29 CST 2016 */ public void setCmd(String cmd) { this.cmd = cmd == null ? null : cmd.trim(); } /** * This method was generated by Apache iBATIS ibator. * This method returns the value of the database column log_ws.PARAM * * @return the value of log_ws.PARAM * * @ibatorgenerated Thu Oct 27 14:40:29 CST 2016 */ public String getParam() { return param; } /** * This method was generated by Apache iBATIS ibator. * This method sets the value of the database column log_ws.PARAM * * @param param the value for log_ws.PARAM * * @ibatorgenerated Thu Oct 27 14:40:29 CST 2016 */ public void setParam(String param) { this.param = param == null ? null : param.trim(); } /** * This method was generated by Apache iBATIS ibator. * This method returns the value of the database column log_ws.CODE * * @return the value of log_ws.CODE * * @ibatorgenerated Thu Oct 27 14:40:29 CST 2016 */ public String getCode() { return code; } /** * This method was generated by Apache iBATIS ibator. * This method sets the value of the database column log_ws.CODE * * @param code the value for log_ws.CODE * * @ibatorgenerated Thu Oct 27 14:40:29 CST 2016 */ public void setCode(String code) { this.code = code == null ? null : code.trim(); } /** * This method was generated by Apache iBATIS ibator. * This method returns the value of the database column log_ws.MESSAGE * * @return the value of log_ws.MESSAGE * * @ibatorgenerated Thu Oct 27 14:40:29 CST 2016 */ public String getMessage() { return message; } /** * This method was generated by Apache iBATIS ibator. * This method sets the value of the database column log_ws.MESSAGE * * @param message the value for log_ws.MESSAGE * * @ibatorgenerated Thu Oct 27 14:40:29 CST 2016 */ public void setMessage(String message) { this.message = message == null ? null : message.trim(); } /** * This method was generated by Apache iBATIS ibator. * This method returns the value of the database column log_ws.STRJSON * * @return the value of log_ws.STRJSON * * @ibatorgenerated Thu Oct 27 14:40:29 CST 2016 */ public String getStrjson() { return strjson; } /** * This method was generated by Apache iBATIS ibator. * This method sets the value of the database column log_ws.STRJSON * * @param strjson the value for log_ws.STRJSON * * @ibatorgenerated Thu Oct 27 14:40:29 CST 2016 */ public void setStrjson(String strjson) { this.strjson = strjson == null ? null : strjson.trim(); } /** * This method was generated by Apache iBATIS ibator. * This method returns the value of the database column log_ws.XGSJ * * @return the value of log_ws.XGSJ * * @ibatorgenerated Thu Oct 27 14:40:29 CST 2016 */ public Date getXgsj() { return xgsj; } /** * This method was generated by Apache iBATIS ibator. * This method sets the value of the database column log_ws.XGSJ * * @param xgsj the value for log_ws.XGSJ * * @ibatorgenerated Thu Oct 27 14:40:29 CST 2016 */ public void setXgsj(Date xgsj) { this.xgsj = xgsj; } /** * This method was generated by Apache iBATIS ibator. * This method returns the value of the database column log_ws.YXSJ * * @return the value of log_ws.YXSJ * * @ibatorgenerated Thu Oct 27 14:40:29 CST 2016 */ public String getYxsj() { return yxsj; } /** * This method was generated by Apache iBATIS ibator. * This method sets the value of the database column log_ws.YXSJ * * @param yxsj the value for log_ws.YXSJ * * @ibatorgenerated Thu Oct 27 14:40:29 CST 2016 */ public void setYxsj(String yxsj) { this.yxsj = yxsj == null ? null : yxsj.trim(); } /** * This method was generated by Apache iBATIS ibator. * This method returns the value of the database column log_ws.TYPE * * @return the value of log_ws.TYPE * * @ibatorgenerated Thu Oct 27 14:40:29 CST 2016 */ public String getType() { return type; } /** * This method was generated by Apache iBATIS ibator. * This method sets the value of the database column log_ws.TYPE * * @param type the value for log_ws.TYPE * * @ibatorgenerated Thu Oct 27 14:40:29 CST 2016 */ public void setType(String type) { this.type = type == null ? null : type.trim(); } }