xiaoyong931011
2021-05-27 4bc8ec1b950215b2d43d0600ae48475a1e7c7726
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.otc.dto;
 
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import javax.validation.constraints.NotBlank;
 
@Data
@ApiModel(value = "MbAddDto", description = "申请市商接口参数接收类")
public class MbAddDto {
 
    @ApiModelProperty(value = "id - 编辑时传")
    private Long id;
 
//    @NotBlank(message = "昵称不能为空")
//    @ApiModelProperty(value = "昵称", example = "123")
//    private String nickname;
 
}