package com.yami.trading.bean.ico.query;
|
|
import com.yami.trading.common.query.Query;
|
import com.yami.trading.common.query.QueryType;
|
import io.swagger.annotations.ApiModelProperty;
|
import io.swagger.annotations.ApiParam;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
|
/**
|
* 产品DTO
|
* @author lucas
|
* @version 2023-03-10
|
*/
|
@Data
|
@EqualsAndHashCode(callSuper = false)
|
public class IcoQuery {
|
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* name
|
*/
|
@ApiParam(value = "name")
|
@Query(type = QueryType.LIKE, tableColumn = "t.name")
|
private String name;
|
|
/**
|
* 代码
|
*/
|
@ApiParam(value = "symbol")
|
@Query(type = QueryType.LIKE, tableColumn = "t.symbol")
|
private String symbol;
|
|
/**
|
* 数据源编码
|
*/
|
@ApiParam(value = "数据源编码")
|
@Query(type = QueryType.LIKE, tableColumn = "t.symbol_data")
|
private String symbolData;
|
|
|
@ApiParam("状态:1、已认购,2、未中签,3、已中签,4、已缴纳 5.已分发")
|
@Query(type = QueryType.EQ, tableColumn = "u.status")
|
private Integer status;
|
|
@ApiParam(value = "userId")
|
private String userId;
|
|
private String delFlag;
|
|
|
}
|