package com.goafanti.common.model; import java.util.Date; public class TDunLog { /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column t_dun_log.id * * @mbg.generated Tue Nov 20 11:50:41 CST 2018 */ private String id; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column t_dun_log.dun_id * * @mbg.generated Tue Nov 20 11:50:41 CST 2018 */ private String dunId; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column t_dun_log.dum_by * * @mbg.generated Tue Nov 20 11:50:41 CST 2018 */ private String dumBy; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column t_dun_log.dum_time * * @mbg.generated Tue Nov 20 11:50:41 CST 2018 */ private Date dumTime; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column t_dun_log.remarks * * @mbg.generated Tue Nov 20 11:50:41 CST 2018 */ private String remarks; /** * This method was generated by MyBatis Generator. * This method returns the value of the database column t_dun_log.id * * @return the value of t_dun_log.id * * @mbg.generated Tue Nov 20 11:50:41 CST 2018 */ public String getId() { return id; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column t_dun_log.id * * @param id the value for t_dun_log.id * * @mbg.generated Tue Nov 20 11:50:41 CST 2018 */ public void setId(String id) { this.id = id; } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column t_dun_log.dun_id * * @return the value of t_dun_log.dun_id * * @mbg.generated Tue Nov 20 11:50:41 CST 2018 */ public String getDunId() { return dunId; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column t_dun_log.dun_id * * @param dunId the value for t_dun_log.dun_id * * @mbg.generated Tue Nov 20 11:50:41 CST 2018 */ public void setDunId(String dunId) { this.dunId = dunId; } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column t_dun_log.dum_by * * @return the value of t_dun_log.dum_by * * @mbg.generated Tue Nov 20 11:50:41 CST 2018 */ public String getDumBy() { return dumBy; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column t_dun_log.dum_by * * @param dumBy the value for t_dun_log.dum_by * * @mbg.generated Tue Nov 20 11:50:41 CST 2018 */ public void setDumBy(String dumBy) { this.dumBy = dumBy; } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column t_dun_log.dum_time * * @return the value of t_dun_log.dum_time * * @mbg.generated Tue Nov 20 11:50:41 CST 2018 */ public Date getDumTime() { return dumTime; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column t_dun_log.dum_time * * @param dumTime the value for t_dun_log.dum_time * * @mbg.generated Tue Nov 20 11:50:41 CST 2018 */ public void setDumTime(Date dumTime) { this.dumTime = dumTime; } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column t_dun_log.remarks * * @return the value of t_dun_log.remarks * * @mbg.generated Tue Nov 20 11:50:41 CST 2018 */ public String getRemarks() { return remarks; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column t_dun_log.remarks * * @param remarks the value for t_dun_log.remarks * * @mbg.generated Tue Nov 20 11:50:41 CST 2018 */ public void setRemarks(String remarks) { this.remarks = remarks; } }