목록DTO (1)
woong's
Android Kotlin VO 사용하기
Android Kotlin VO 사용하기 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950//JAVApublic class UserVO { private Long id; private Long userName; private Long fullName; private Long profilePicture; public Long getId() { return id; } public void setId(Long id) { this.id = id; } public Long getUserName() { return userName; } public void setUserName(Long userName..
Develop/Android
2017. 12. 10. 18:24