| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170 |
- 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;
- }
- }
|