package com.whyc.dto;
|
|
import com.whyc.pojo.Application;
|
|
public class ApplicationDTO {
|
|
private Integer userId;
|
private Application application;
|
|
public Integer getUserId() {
|
return userId;
|
}
|
|
public void setUserId(Integer userId) {
|
this.userId = userId;
|
}
|
|
public Application getApplication() {
|
return application;
|
}
|
|
public void setApplication(Application application) {
|
this.application = application;
|
}
|
}
|