All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.nbsaas.boot.trade.api.domain.request.TradeAccountDataRequest Maven / Gradle / Ivy

There is a newer version: 1.1.5-2024
Show newest version
package com.nbsaas.boot.trade.api.domain.request;

import com.nbsaas.boot.rest.request.RequestId;
import com.nbsaas.boot.trade.api.domain.enums.AccountType;
import lombok.Data;

import java.io.Serializable;
import java.math.BigDecimal;
import java.util.Date;

/**
 * 请求对象
 */
@Data
public class TradeAccountDataRequest implements Serializable, RequestId {

    /**
     * 序列化参数
     */
    private static final long serialVersionUID = 1L;


    /**
     *
     **/
    private BigDecimal amount;

    /**
     *
     **/
    private String salt;

    /**
     *
     **/
    private AccountType accountType;

    /**
     *
     **/
    private String name;

    /**
     *
     **/
    private String checkValue;

    /**
     * 主键id
     **/
    private Long id;

    /**
     * 添加时间
     **/
    private Date addDate;

    /**
     *
     **/
    private Integer serialNo;

    /**
     * 最新修改时间
     **/
    private Date lastDate;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy