| | |
| | | package com.xcong.excoin.modules.coin.parameter.dto;
|
| | |
|
| | | import java.math.BigDecimal;
|
| | |
|
| | | import javax.validation.constraints.NotNull;
|
| | |
|
| | | import io.swagger.annotations.ApiModel;
|
| | |
| | | @ApiModel(value = "CancelEntrustWalletCoinOrderDto", description = "撤销委托订单")
|
| | | public class CancelEntrustWalletCoinOrderDto {
|
| | |
|
| | | @NotNull(message = "订单编号不能为空")
|
| | | @ApiModelProperty(value = "订单编号", example = "100")
|
| | | private String orderNo;
|
| | | @NotNull(message = "订单ID不能为空")
|
| | | @ApiModelProperty(value = "订单ID", example = "100")
|
| | | private String orderId;
|
| | |
|
| | | }
|