xiaoyong931011
2021-11-25 54ef34c7d62acb35ed7b4928e58c8e9db3c90107
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.xcong.excoin.modules.fish.dto;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import javax.validation.constraints.NotNull;
 
@Data
@ApiModel(value = "FishingDto", description = "参数类")
public class FishingDto {
 
 
    @NotNull(message = "炮塔不能为空")
    @ApiModelProperty(value = "炮塔ID", example = "100")
    private Long cannonOwnId;
 
    @ApiModelProperty(value = "获得金币", example = "100")
    private Integer goldWin;
 
}