123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- package com.js.kbt.model;
- import java.util.Date;
- public class MouldHistoryTime {
- /**
- * This field was generated by MyBatis Generator. This field corresponds to the database column mould_history_time.history_id
- * @mbg.generated Mon Aug 05 15:38:00 CST 2019
- */
- private Long historyId;
- /**
- * This field was generated by MyBatis Generator. This field corresponds to the database column mould_history_time.seq
- * @mbg.generated Mon Aug 05 15:38:00 CST 2019
- */
- private Integer seq;
- /**
- * This field was generated by MyBatis Generator. This field corresponds to the database column mould_history_time.close_time
- * @mbg.generated Mon Aug 05 15:38:00 CST 2019
- */
- private Date closeTime;
- /**
- * This field was generated by MyBatis Generator. This field corresponds to the database column mould_history_time.open_time
- * @mbg.generated Mon Aug 05 15:38:00 CST 2019
- */
- private Date openTime;
- /**
- * This field was generated by MyBatis Generator. This field corresponds to the database column mould_history_time.time_cost
- * @mbg.generated Mon Aug 05 15:38:00 CST 2019
- */
- private Integer timeCost;
- /**
- * This method was generated by MyBatis Generator. This method returns the value of the database column mould_history_time.history_id
- * @return the value of mould_history_time.history_id
- * @mbg.generated Mon Aug 05 15:38:00 CST 2019
- */
- public Long getHistoryId() {
- return historyId;
- }
- /**
- * This method was generated by MyBatis Generator. This method sets the value of the database column mould_history_time.history_id
- * @param historyId the value for mould_history_time.history_id
- * @mbg.generated Mon Aug 05 15:38:00 CST 2019
- */
- public void setHistoryId(Long historyId) {
- this.historyId = historyId;
- }
- /**
- * This method was generated by MyBatis Generator. This method returns the value of the database column mould_history_time.seq
- * @return the value of mould_history_time.seq
- * @mbg.generated Mon Aug 05 15:38:00 CST 2019
- */
- public Integer getSeq() {
- return seq;
- }
- /**
- * This method was generated by MyBatis Generator. This method sets the value of the database column mould_history_time.seq
- * @param seq the value for mould_history_time.seq
- * @mbg.generated Mon Aug 05 15:38:00 CST 2019
- */
- public void setSeq(Integer seq) {
- this.seq = seq;
- }
- /**
- * This method was generated by MyBatis Generator. This method returns the value of the database column mould_history_time.close_time
- * @return the value of mould_history_time.close_time
- * @mbg.generated Mon Aug 05 15:38:00 CST 2019
- */
- public Date getCloseTime() {
- return closeTime;
- }
- /**
- * This method was generated by MyBatis Generator. This method sets the value of the database column mould_history_time.close_time
- * @param closeTime the value for mould_history_time.close_time
- * @mbg.generated Mon Aug 05 15:38:00 CST 2019
- */
- public void setCloseTime(Date closeTime) {
- this.closeTime = closeTime;
- }
- /**
- * This method was generated by MyBatis Generator. This method returns the value of the database column mould_history_time.open_time
- * @return the value of mould_history_time.open_time
- * @mbg.generated Mon Aug 05 15:38:00 CST 2019
- */
- public Date getOpenTime() {
- return openTime;
- }
- /**
- * This method was generated by MyBatis Generator. This method sets the value of the database column mould_history_time.open_time
- * @param openTime the value for mould_history_time.open_time
- * @mbg.generated Mon Aug 05 15:38:00 CST 2019
- */
- public void setOpenTime(Date openTime) {
- this.openTime = openTime;
- }
- /**
- * This method was generated by MyBatis Generator. This method returns the value of the database column mould_history_time.time_cost
- * @return the value of mould_history_time.time_cost
- * @mbg.generated Mon Aug 05 15:38:00 CST 2019
- */
- public Integer getTimeCost() {
- return timeCost;
- }
- /**
- * This method was generated by MyBatis Generator. This method sets the value of the database column mould_history_time.time_cost
- * @param timeCost the value for mould_history_time.time_cost
- * @mbg.generated Mon Aug 05 15:38:00 CST 2019
- */
- public void setTimeCost(Integer timeCost) {
- this.timeCost = timeCost;
- }
- }
|