dashboard
repositories
filestore
activity
search
login
main
/
exchange-back
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
更新代码
gao
2020-06-16
c8cdacf3c390430d60d2c4863147cd2dffffe060
[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;
}