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