xiaoyong931011
2021-03-29 7b1e6c513da5799fd1e6ed478af785ee8c6b0589
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;
}