Helius
2020-05-28 d775bb5dacca4c6ff33c65a0cb891f5992cc1bed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.xcong.excoin.modules.home.vo;
 
import java.util.List;
 
import com.xcong.excoin.modules.platform.entity.PlatformPaymentMethodEntity;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
@Data
@ApiModel(value = "会员快捷买入卖出", description = "会员快捷买入卖出类")
public class MemberQuickBuySaleVo {
 
    @ApiModelProperty(value = "订单Id")
    private Long id;
    @ApiModelProperty(value = "剩余时间")
    private Long timeLeft;
    @ApiModelProperty(value = "平台收款方式")
    private List<PlatformPaymentMethodEntity> platforPaymentMethodList;
}