| | |
| | | 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) |
| | | //@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; |