Helius
2020-07-07 ce4fb58f85eefe9fe6bb6213d8f1576d1925a5ef
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.xcong.excoin.modules.coin.parameter.dto;
 
import javax.validation.constraints.NotNull;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = "CancelEntrustWalletCoinOrderDto", description = "撤销委托订单")
public class CancelEntrustWalletCoinOrderDto {
 
    @NotNull(message = "订单ID不能为空")
    @ApiModelProperty(value = "订单ID", example = "100")
    private String orderId;
 
}