123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- package com.zt.pojo;
- import com.baomidou.mybatisplus.annotation.IdType;
- import com.baomidou.mybatisplus.annotation.TableField;
- import com.baomidou.mybatisplus.annotation.TableId;
- import com.baomidou.mybatisplus.annotation.TableName;
- import java.io.Serializable;
- import java.util.Date;
- import lombok.Data;
- /**
- *
- * @TableName goods
- */
- @TableName(value ="goods")
- @Data
- public class GoodsDto implements Serializable {
- /**
- *
- */
- @TableId(type = IdType.AUTO)
- private Integer id;
- /**
- *
- */
- private String goodsName;
- /**
- *
- */
- private String descriptions;
- /**
- *
- */
- private String goodsImg;
- /**
- *
- */
- private String content;
- /**
- *
- */
- private Date createdTime;
- @TableField(exist = false)
- private static final long serialVersionUID = 1L;
- @Override
- public boolean equals(Object that) {
- if (this == that) {
- return true;
- }
- if (that == null) {
- return false;
- }
- if (getClass() != that.getClass()) {
- return false;
- }
- GoodsDto other = (GoodsDto) that;
- return (this.getId() == null ? other.getId() == null : this.getId().equals(other.getId()))
- && (this.getGoodsName() == null ? other.getGoodsName() == null : this.getGoodsName().equals(other.getGoodsName()))
- && (this.getDescriptions() == null ? other.getDescriptions() == null : this.getDescriptions().equals(other.getDescriptions()))
- && (this.getGoodsImg() == null ? other.getGoodsImg() == null : this.getGoodsImg().equals(other.getGoodsImg()))
- && (this.getContent() == null ? other.getContent() == null : this.getContent().equals(other.getContent()))
- && (this.getCreatedTime() == null ? other.getCreatedTime() == null : this.getCreatedTime().equals(other.getCreatedTime()));
- }
- @Override
- public int hashCode() {
- final int prime = 31;
- int result = 1;
- result = prime * result + ((getId() == null) ? 0 : getId().hashCode());
- result = prime * result + ((getGoodsName() == null) ? 0 : getGoodsName().hashCode());
- result = prime * result + ((getDescriptions() == null) ? 0 : getDescriptions().hashCode());
- result = prime * result + ((getGoodsImg() == null) ? 0 : getGoodsImg().hashCode());
- result = prime * result + ((getContent() == null) ? 0 : getContent().hashCode());
- result = prime * result + ((getCreatedTime() == null) ? 0 : getCreatedTime().hashCode());
- return result;
- }
- @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(", goodsName=").append(goodsName);
- sb.append(", descriptions=").append(descriptions);
- sb.append(", goodsImg=").append(goodsImg);
- sb.append(", content=").append(content);
- sb.append(", createdTime=").append(createdTime);
- sb.append(", serialVersionUID=").append(serialVersionUID);
- sb.append("]");
- return sb.toString();
- }
- }
|