package pwc.taxtech.atms.entity; import java.io.Serializable; import java.util.Date; /** * * This class was generated by MyBatis Generator. * This class corresponds to the database table dictionary * * @mbg.generated do_not_delete_during_merge */ public class Dictionary extends BaseEntity implements Serializable { /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column dictionary.id * * @mbg.generated */ private String id; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column dictionary.code * * @mbg.generated */ private String code; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column dictionary.dict_key * * @mbg.generated */ private String dictKey; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column dictionary.dict_value * * @mbg.generated */ private String dictValue; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column dictionary.parent_code * * @mbg.generated */ private String parentCode; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column dictionary.order_index * * @mbg.generated */ private Integer orderIndex; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column dictionary.is_active * * @mbg.generated */ private Boolean isActive; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column dictionary.create_time * * @mbg.generated */ private Date createTime; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column dictionary.update_time * * @mbg.generated */ private Date updateTime; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column dictionary.remark * * @mbg.generated */ private String remark; /** * This field was generated by MyBatis Generator. * This field corresponds to the database table dictionary * * @mbg.generated */ private static final long serialVersionUID = 1L; /** * This method was generated by MyBatis Generator. * This method returns the value of the database column dictionary.id * * @return the value of dictionary.id * * @mbg.generated */ public String getId() { return id; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column dictionary.id * * @param id the value for dictionary.id * * @mbg.generated */ public void setId(String id) { this.id = id == null ? null : id.trim(); } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column dictionary.code * * @return the value of dictionary.code * * @mbg.generated */ public String getCode() { return code; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column dictionary.code * * @param code the value for dictionary.code * * @mbg.generated */ public void setCode(String code) { this.code = code == null ? null : code.trim(); } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column dictionary.dict_key * * @return the value of dictionary.dict_key * * @mbg.generated */ public String getDictKey() { return dictKey; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column dictionary.dict_key * * @param dictKey the value for dictionary.dict_key * * @mbg.generated */ public void setDictKey(String dictKey) { this.dictKey = dictKey == null ? null : dictKey.trim(); } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column dictionary.dict_value * * @return the value of dictionary.dict_value * * @mbg.generated */ public String getDictValue() { return dictValue; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column dictionary.dict_value * * @param dictValue the value for dictionary.dict_value * * @mbg.generated */ public void setDictValue(String dictValue) { this.dictValue = dictValue == null ? null : dictValue.trim(); } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column dictionary.parent_code * * @return the value of dictionary.parent_code * * @mbg.generated */ public String getParentCode() { return parentCode; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column dictionary.parent_code * * @param parentCode the value for dictionary.parent_code * * @mbg.generated */ public void setParentCode(String parentCode) { this.parentCode = parentCode == null ? null : parentCode.trim(); } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column dictionary.order_index * * @return the value of dictionary.order_index * * @mbg.generated */ public Integer getOrderIndex() { return orderIndex; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column dictionary.order_index * * @param orderIndex the value for dictionary.order_index * * @mbg.generated */ public void setOrderIndex(Integer orderIndex) { this.orderIndex = orderIndex; } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column dictionary.is_active * * @return the value of dictionary.is_active * * @mbg.generated */ public Boolean getIsActive() { return isActive; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column dictionary.is_active * * @param isActive the value for dictionary.is_active * * @mbg.generated */ public void setIsActive(Boolean isActive) { this.isActive = isActive; } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column dictionary.create_time * * @return the value of dictionary.create_time * * @mbg.generated */ public Date getCreateTime() { return createTime; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column dictionary.create_time * * @param createTime the value for dictionary.create_time * * @mbg.generated */ public void setCreateTime(Date createTime) { this.createTime = createTime; } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column dictionary.update_time * * @return the value of dictionary.update_time * * @mbg.generated */ public Date getUpdateTime() { return updateTime; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column dictionary.update_time * * @param updateTime the value for dictionary.update_time * * @mbg.generated */ public void setUpdateTime(Date updateTime) { this.updateTime = updateTime; } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column dictionary.remark * * @return the value of dictionary.remark * * @mbg.generated */ public String getRemark() { return remark; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column dictionary.remark * * @param remark the value for dictionary.remark * * @mbg.generated */ public void setRemark(String remark) { this.remark = remark == null ? null : remark.trim(); } /** * This method was generated by MyBatis Generator. * This method corresponds to the database table dictionary * * @mbg.generated */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append(getClass().getSimpleName()); sb.append(" ["); sb.append("Hash = ").append(hashCode()); sb.append(", id=").append(id); sb.append(", code=").append(code); sb.append(", dictKey=").append(dictKey); sb.append(", dictValue=").append(dictValue); sb.append(", parentCode=").append(parentCode); sb.append(", orderIndex=").append(orderIndex); sb.append(", isActive=").append(isActive); sb.append(", createTime=").append(createTime); sb.append(", updateTime=").append(updateTime); sb.append(", remark=").append(remark); sb.append("]"); return sb.toString(); } }