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

com.nbsaas.boot.trade.api.domain.simple.TradeInfoSimple Maven / Gradle / Ivy

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

import lombok.Data;

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

/**
 * 列表对象
 */
@Data
public class TradeInfoSimple implements Serializable {

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


    /**
     *
     **/
    private BigDecimal amount;

    /**
     *
     **/
    private String toName;

    /**
     *
     **/
    private String fromName;

    /**
     *
     **/
    private Long from;

    /**
     *
     **/
    private Long to;

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

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

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


}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy