27 lines
381 B
Plaintext
27 lines
381 B
Plaintext
|
|
package com.nationalelectric.greenH5.DTO;
|
||
|
|
|
||
|
|
public class UserDTO {
|
||
|
|
|
||
|
|
private String userId;
|
||
|
|
|
||
|
|
private Long locationId;
|
||
|
|
|
||
|
|
public String getUserId() {
|
||
|
|
return userId;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setUserId(String userId) {
|
||
|
|
this.userId = userId;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Long getLocationId() {
|
||
|
|
return locationId;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setLocationId(Long locationId) {
|
||
|
|
this.locationId = locationId;
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
}
|