1
zj
2025-04-17 8a196785ea27eda1ee93fce29a3499b9574fa684
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
package com.nq.pojo;
 
import com.baomidou.mybatisplus.annotation.*;
import lombok.Data;
import org.springframework.format.annotation.DateTimeFormat;
 
import java.io.Serializable;
import java.math.BigDecimal;
import java.util.Date;
 
/**
 * @TableName stock_dz
 */
@TableName(value ="stock_dz")
@Data
public class StockDz implements Serializable {
    @TableId(type = IdType.AUTO,value = "id")
    private Integer id;
 
    private String stockName;
 
    private String stockCode;
 
    private String stockType;
 
    private String stockGid;
 
    private String stockSpell;
 
    private Integer isLock;
 
    private Integer isShow;
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date addTime;
 
    private BigDecimal spreadRate;
 
    private BigDecimal increaseRatio;
 
    private Integer stockNum;
    @TableField(updateStrategy = FieldStrategy.IGNORED)
    private String password;
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date startTime;
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date endTime;
    private BigDecimal discount;
    private Integer period;
 
    /**
     * 大宗审核开关(0:关闭  1:打开)
     */
    private Integer switchType = 0;
    private static final long serialVersionUID = 1L;
    //价格
    private BigDecimal nowPrice;
}