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; // 最大金额
|
|
}
|