| | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import lombok.Data; |
| | | import org.springframework.data.annotation.Transient; |
| | | |
| | | import java.util.Date; |
| | | |
| | | /** |
| | | * @program: dabao |
| | |
| | | |
| | | private Integer id; |
| | | |
| | | //基金id |
| | | private String eid; |
| | | |
| | | //回报率 |
| | | private String returnOfRate; |
| | | |
| | | private String buyTime; |
| | | //买入时间 |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "Asia/Tokyo") |
| | | private Date buyTime; |
| | | |
| | | private String endTime; |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "Asia/Tokyo") |
| | | private Date endTime; |
| | | |
| | | |
| | | //用户id |
| | | private String userId; |
| | | |
| | | |
| | | //买入金额 |
| | | private String money; |
| | | |
| | | //状态 1.进行中 2.已赎回 |
| | | private String state; |
| | | |
| | | //收益 |
| | | private String earnings; |
| | | |
| | | /** |
| | | * 周期时间 |
| | | * */ |
| | | private String returnTime; |
| | | |
| | | |
| | | /** |
| | | * 标题 |
| | | * */ |
| | | private String title; |
| | | |
| | | } |