| | |
| | | package com.nq.pojo; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import lombok.Data; |
| | | |
| | |
| | | public class StockAIOrder { |
| | | |
| | | @Id |
| | | @GeneratedValue(strategy = GenerationType.IDENTITY) |
| | | private Long id; |
| | | //@GeneratedValue(strategy = GenerationType.IDENTITY) |
| | | @TableId(type = IdType.AUTO,value = "id") |
| | | private Integer id; |
| | | |
| | | //用户id |
| | | private Integer userId; |
| | | |
| | | //ai交易产品id |
| | | private Long stockAiId; |
| | | private Integer stockAiId; |
| | | |
| | | //买入时间 |
| | | private Date buyDate; |
| | |
| | | private BigDecimal realEarning; |
| | | |
| | | /** |
| | | * 状态 待审核 申请通过 申请通过 已完成 |
| | | * 状态 待审核 申请通过 申请不通过 已完成 |
| | | */ |
| | | private String status; |
| | | |