1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| package com.nq.pojo;
|
| import com.baomidou.mybatisplus.annotation.IdType;
| import com.baomidou.mybatisplus.annotation.TableId;
| import lombok.Data;
|
| @Data
| public class StockSetting {
| @TableId(type = IdType.AUTO,value = "id")
| private Integer id;
| // 股票code
| private String stockCode;
| // 股票名称
| private String stockName;
| // 股票调价开始时间 格式 HH:mm 时分
| private String startTime;
| // 股票调价结束时间 格式 HH:mm 时分
| private String endTime;
| // 0 为指定价格 1为百分比调价格
| private String type;
| // type = 0 价格 1为百分比
| private String price;
| }
|
|