package com.goafanti.common.model; import java.util.Date; public class ContractTaskLog { /** * This field was generated by MyBatis Generator. This field corresponds to the database column contract_task_log.id * @mbg.generated Tue May 29 18:21:25 CST 2018 */ private String id; /** * This field was generated by MyBatis Generator. This field corresponds to the database column contract_task_log.contract_task_id * @mbg.generated Tue May 29 18:21:25 CST 2018 */ private String contractTaskId; /** * This field was generated by MyBatis Generator. This field corresponds to the database column contract_task_log.task_allocator * @mbg.generated Tue May 29 18:21:25 CST 2018 */ private String taskAllocator; /** * This field was generated by MyBatis Generator. This field corresponds to the database column contract_task_log.task_receiver * @mbg.generated Tue May 29 18:21:25 CST 2018 */ private String taskReceiver; /** * This field was generated by MyBatis Generator. This field corresponds to the database column contract_task_log.create_time * @mbg.generated Tue May 29 18:21:25 CST 2018 */ private Date createTime; /** * This method was generated by MyBatis Generator. This method returns the value of the database column contract_task_log.id * @return the value of contract_task_log.id * @mbg.generated Tue May 29 18:21:25 CST 2018 */ public String getId() { return id; } /** * This method was generated by MyBatis Generator. This method sets the value of the database column contract_task_log.id * @param id the value for contract_task_log.id * @mbg.generated Tue May 29 18:21:25 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 contract_task_log.contract_task_id * @return the value of contract_task_log.contract_task_id * @mbg.generated Tue May 29 18:21:25 CST 2018 */ public String getContractTaskId() { return contractTaskId; } /** * This method was generated by MyBatis Generator. This method sets the value of the database column contract_task_log.contract_task_id * @param contractTaskId the value for contract_task_log.contract_task_id * @mbg.generated Tue May 29 18:21:25 CST 2018 */ public void setContractTaskId(String contractTaskId) { this.contractTaskId = contractTaskId; } /** * This method was generated by MyBatis Generator. This method returns the value of the database column contract_task_log.task_allocator * @return the value of contract_task_log.task_allocator * @mbg.generated Tue May 29 18:21:25 CST 2018 */ public String getTaskAllocator() { return taskAllocator; } /** * This method was generated by MyBatis Generator. This method sets the value of the database column contract_task_log.task_allocator * @param taskAllocator the value for contract_task_log.task_allocator * @mbg.generated Tue May 29 18:21:25 CST 2018 */ public void setTaskAllocator(String taskAllocator) { this.taskAllocator = taskAllocator; } /** * This method was generated by MyBatis Generator. This method returns the value of the database column contract_task_log.task_receiver * @return the value of contract_task_log.task_receiver * @mbg.generated Tue May 29 18:21:25 CST 2018 */ public String getTaskReceiver() { return taskReceiver; } /** * This method was generated by MyBatis Generator. This method sets the value of the database column contract_task_log.task_receiver * @param taskReceiver the value for contract_task_log.task_receiver * @mbg.generated Tue May 29 18:21:25 CST 2018 */ public void setTaskReceiver(String taskReceiver) { this.taskReceiver = taskReceiver; } /** * This method was generated by MyBatis Generator. This method returns the value of the database column contract_task_log.create_time * @return the value of contract_task_log.create_time * @mbg.generated Tue May 29 18:21:25 CST 2018 */ public Date getCreateTime() { return createTime; } /** * This method was generated by MyBatis Generator. This method sets the value of the database column contract_task_log.create_time * @param createTime the value for contract_task_log.create_time * @mbg.generated Tue May 29 18:21:25 CST 2018 */ public void setCreateTime(Date createTime) { this.createTime = createTime; } }