Class UserDTO
- java.lang.Object
-
- tk.doraneko.test.threelayerpattern.dto.UserDTO
-
public class UserDTO extends Object
- Since:
- 16/10/2019
- Author:
- tranphuquy19@gmail.com
-
-
Constructor Summary
Constructors Constructor Description UserDTO()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getAddress()
int
getId()
String
getName()
int
getTotal()
void
setAddress(String address)
void
setId(int id)
void
setName(String name)
void
setTotal(int total)
String
toString()
-
-
-
Method Detail
-
getId
public int getId()
-
setId
public void setId(int id)
-
getName
public String getName()
-
setName
public void setName(String name)
-
getAddress
public String getAddress()
-
setAddress
public void setAddress(String address)
-
getTotal
public int getTotal()
-
setTotal
public void setTotal(int total)
-
-