dashboard
repositories
filestore
activity
search
login
main
/
exchange-back
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
20200618 代码提交
xiaoyong931011
2020-06-18
22a1ada1fefc901e391279e01a251aa3c471e96a
[exchange-back.git]
/
src
/
main
/
java
/
com
/
xcong
/
excoin
/
modules
/
member
/
dto
/
MemberDetailConfirmDto.java
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.xcong.excoin.modules.member.dto;
import javax.validation.constraints.NotNull;
import lombok.Data;
@Data
public class MemberDetailConfirmDto {
@NotNull(message = "ID不能为空")
private Long id;
}