package com.nq.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 lombok.Data;
|
import org.springframework.data.annotation.Transient;
|
|
@TableName("order_echo")
|
@Data
|
public class OrderEchoBean {
|
|
@TableId(value = "id",type = IdType.AUTO)
|
private Integer id;
|
|
private String eid;
|
|
private String returnOfRate;
|
|
private Long buyTime;
|
|
private Long endTime;
|
|
|
private String userId;
|
|
|
private String money;
|
|
private String state;
|
|
private String earnings;
|
|
@TableField(exist = false)
|
private String returnTime;
|
|
|
@Transient
|
private String title;
|
|
public Integer getId() {
|
return id;
|
}
|
|
public void setId(Integer id) {
|
this.id = id;
|
}
|
|
public String getEid() {
|
return eid;
|
}
|
|
public void setEid(String eid) {
|
this.eid = eid;
|
}
|
|
public String getReturnOfRate() {
|
return returnOfRate;
|
}
|
|
public void setReturnOfRate(String returnOfRate) {
|
this.returnOfRate = returnOfRate;
|
}
|
|
public Long getBuyTime() {
|
return buyTime;
|
}
|
|
public void setBuyTime(Long buyTime) {
|
this.buyTime = buyTime;
|
}
|
|
public Long getEndTime() {
|
return endTime;
|
}
|
|
public void setEndTime(Long endTime) {
|
this.endTime = endTime;
|
}
|
|
public String getUserId() {
|
return userId;
|
}
|
|
public void setUserId(String userId) {
|
this.userId = userId;
|
}
|
|
public String getState() {
|
return state;
|
}
|
|
public void setState(String state) {
|
this.state = state;
|
}
|
|
public String getMoney() {
|
return money;
|
}
|
|
public String getTitle() {
|
return title;
|
}
|
|
public void setTitle(String title) {
|
this.title = title;
|
}
|
|
public void setMoney(String money) {
|
this.money = money;
|
}
|
}
|