| | |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | |
| | | @ApiModelProperty("申请时间") |
| | | @TableField("apply_for_time") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:ss:mm") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private Date applyForTime; |
| | | |
| | | @ApiModelProperty("申请金额") |
| | |
| | | @TableField("order_id") |
| | | private String orderId; |
| | | |
| | | @ApiModelProperty("城市code") |
| | | @TableField("city_code") |
| | | private String cityCode; |
| | | @ApiModelProperty("提现进度") |
| | | @TableField(exist = false) |
| | | private List<WithdrawRecord> withdrawRecords; |
| | | |
| | | |
| | | } |