嗨森逛服务
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
hai-server/hai-service/src/main/java/com/hai/entity/HighGoldRec.java

215 lines
5.8 KiB

4 years ago
package com.hai.entity;
4 years ago
import com.hai.model.HighGoldRecModel;
4 years ago
import java.io.Serializable;
import java.util.Date;
/**
* high_gold_rec
* @author
*/
/**
*
* 代码由工具生成
*
**/
4 years ago
public class HighGoldRec extends HighGoldRecModel implements Serializable {
4 years ago
/**
* 编号
*/
private Long id;
/**
* 用户id外键
*/
private Long userId;
/**
* 金币类型1收入2支出
*/
private Long goldType;
/**
* 金币数
*/
private Integer gold;
/**
* 产生时间
*/
private Date createTime;
/**
* 来源类型1.充值
*/
private Integer resType;
/**
* 来源主键ID
*/
private Long resId;
private String remark;
private String ext1;
private String ext2;
private String ext3;
private static final long serialVersionUID = 1L;
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public Long getUserId() {
return userId;
}
public void setUserId(Long userId) {
this.userId = userId;
}
public Long getGoldType() {
return goldType;
}
public void setGoldType(Long goldType) {
this.goldType = goldType;
}
public Integer getGold() {
return gold;
}
public void setGold(Integer gold) {
this.gold = gold;
}
public Date getCreateTime() {
return createTime;
}
public void setCreateTime(Date createTime) {
this.createTime = createTime;
}
public Integer getResType() {
return resType;
}
public void setResType(Integer resType) {
this.resType = resType;
}
public Long getResId() {
return resId;
}
public void setResId(Long resId) {
this.resId = resId;
}
public String getRemark() {
return remark;
}
public void setRemark(String remark) {
this.remark = remark;
}
public String getExt1() {
return ext1;
}
public void setExt1(String ext1) {
this.ext1 = ext1;
}
public String getExt2() {
return ext2;
}
public void setExt2(String ext2) {
this.ext2 = ext2;
}
public String getExt3() {
return ext3;
}
public void setExt3(String ext3) {
this.ext3 = ext3;
}
@Override
public boolean equals(Object that) {
if (this == that) {
return true;
}
if (that == null) {
return false;
}
if (getClass() != that.getClass()) {
return false;
}
HighGoldRec other = (HighGoldRec) that;
return (this.getId() == null ? other.getId() == null : this.getId().equals(other.getId()))
&& (this.getUserId() == null ? other.getUserId() == null : this.getUserId().equals(other.getUserId()))
&& (this.getGoldType() == null ? other.getGoldType() == null : this.getGoldType().equals(other.getGoldType()))
&& (this.getGold() == null ? other.getGold() == null : this.getGold().equals(other.getGold()))
&& (this.getCreateTime() == null ? other.getCreateTime() == null : this.getCreateTime().equals(other.getCreateTime()))
&& (this.getResType() == null ? other.getResType() == null : this.getResType().equals(other.getResType()))
&& (this.getResId() == null ? other.getResId() == null : this.getResId().equals(other.getResId()))
&& (this.getRemark() == null ? other.getRemark() == null : this.getRemark().equals(other.getRemark()))
&& (this.getExt1() == null ? other.getExt1() == null : this.getExt1().equals(other.getExt1()))
&& (this.getExt2() == null ? other.getExt2() == null : this.getExt2().equals(other.getExt2()))
&& (this.getExt3() == null ? other.getExt3() == null : this.getExt3().equals(other.getExt3()));
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((getId() == null) ? 0 : getId().hashCode());
result = prime * result + ((getUserId() == null) ? 0 : getUserId().hashCode());
result = prime * result + ((getGoldType() == null) ? 0 : getGoldType().hashCode());
result = prime * result + ((getGold() == null) ? 0 : getGold().hashCode());
result = prime * result + ((getCreateTime() == null) ? 0 : getCreateTime().hashCode());
result = prime * result + ((getResType() == null) ? 0 : getResType().hashCode());
result = prime * result + ((getResId() == null) ? 0 : getResId().hashCode());
result = prime * result + ((getRemark() == null) ? 0 : getRemark().hashCode());
result = prime * result + ((getExt1() == null) ? 0 : getExt1().hashCode());
result = prime * result + ((getExt2() == null) ? 0 : getExt2().hashCode());
result = prime * result + ((getExt3() == null) ? 0 : getExt3().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(", userId=").append(userId);
sb.append(", goldType=").append(goldType);
sb.append(", gold=").append(gold);
sb.append(", createTime=").append(createTime);
sb.append(", resType=").append(resType);
sb.append(", resId=").append(resId);
sb.append(", remark=").append(remark);
sb.append(", ext1=").append(ext1);
sb.append(", ext2=").append(ext2);
sb.append(", ext3=").append(ext3);
sb.append(", serialVersionUID=").append(serialVersionUID);
sb.append("]");
return sb.toString();
}
}