package com.mindskip.xzs.domain;
|
|
import java.io.Serializable;
|
|
public class ExamTemplatesUser implements Serializable {
|
|
private Integer id;
|
private String templatesId;
|
private String userId;
|
|
public Integer getId() {
|
return id;
|
}
|
|
public void setId(Integer id) {
|
this.id = id;
|
}
|
|
public String getTemplatesId() {
|
return templatesId;
|
}
|
|
public void setTemplatesId(String templatesId) {
|
this.templatesId = templatesId;
|
}
|
|
public String getUserId() {
|
return userId;
|
}
|
|
public void setUserId(String userId) {
|
this.userId = userId;
|
}
|
|
@Override
|
public String toString() {
|
return "ExamTemplatesUser{" +
|
"id=" + id +
|
", templatesId='" + templatesId + '\'' +
|
", userId='" + userId + '\'' +
|
'}';
|
}
|
}
|