| | |
| | | * name |
| | | */ |
| | | @ApiParam(value = "name") |
| | | @Query(type = QueryType.LIKE) |
| | | @Query(type = QueryType.LIKE, tableColumn = "t.name") |
| | | private String name; |
| | | |
| | | /** |
| | | * 代码 |
| | | */ |
| | | @ApiParam(value = "symbol") |
| | | @Query(type = QueryType.LIKE) |
| | | @Query(type = QueryType.LIKE, tableColumn = "t.symbol") |
| | | private String symbol; |
| | | |
| | | /** |
| | | * 数据源编码 |
| | | */ |
| | | @ApiParam(value = "数据源编码") |
| | | @Query(type = QueryType.LIKE) |
| | | @Query(type = QueryType.LIKE, tableColumn = "t.symbol_data") |
| | | private String symbolData; |
| | | |
| | | |
| | | @ApiModelProperty("状态:1、已认购,2、未中签,3、已中签,4、已缴纳 5.已分发") |
| | | @ApiParam("状态:1、已认购,2、未中签,3、已中签,4、已缴纳 5.已分发") |
| | | @Query(type = QueryType.EQ, tableColumn = "u.status") |
| | | private Integer status; |
| | | |
| | | @ApiParam(value = "userId") |