xiaoyong931011
2020-05-27 8e59b50b2164392b06328f1215638a31238f1c9b
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;
}