| | |
| | | public class UserPosition implements Serializable { |
| | | @TableId(type = IdType.AUTO,value = "id") |
| | | private Integer id; |
| | | //0正常股票 1.模拟 2.新股 3.大宗 |
| | | private Integer positionType; |
| | | private String positionSn; |
| | | private Integer userId; |
| | |
| | | private Integer agentId; |
| | | private String stockName; |
| | | private String stockCode; |
| | | //存放股票类型 |
| | | private String stockGid; |
| | | private String stockSpell; |
| | | private String buyOrderId; |
| | |
| | | private String sellOrderId; |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private Date sellOrderTime; |
| | | |
| | | public void setId(Integer id) { |
| | | this.id = id; |
| | | } |
| | | |
| | | private BigDecimal sellOrderPrice; |
| | | // |