1
zj
2025-08-14 5cdb36361bffbf8f9258ebb504d51d46a148ccd1
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
package com.nq.vo.smart;
 
import lombok.Data;
 
import javax.validation.constraints.*;
import java.math.BigDecimal;
 
/**
 * @program: dabaogp
 * @description:
 * @create: 2025-07-15 10:52
 **/
@Data
public class SmartIntradayVo {
 
    private Integer id; // 主键ID
 
    private String depositName; // 定存名称
 
    private String stockType; // 股票类型
 
    private String accountType; // 账户类型
 
    private String profit; // 盈利百分比
 
    private Integer status = 1; // 状态: 0-关闭, 1-开启
 
    private BigDecimal minAmount; // 最小金额
 
    private BigDecimal maxAmount; // 最大金额
 
}