You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
643 B
40 lines
643 B
package sut.edu.zyp.dormitory.manage.dto;
|
|
|
|
import java.io.Serializable;
|
|
|
|
/**
|
|
* 登出数据请求传输对象
|
|
*
|
|
* @author zyp
|
|
* @version 0.0.1
|
|
* @since 0.0.1
|
|
*/
|
|
public class LogoutRequest extends AbstractBaseRequest implements Serializable {
|
|
|
|
/**
|
|
* 账号
|
|
*/
|
|
private String account;
|
|
|
|
/**
|
|
* 类型
|
|
*/
|
|
private String type;
|
|
|
|
public String getAccount() {
|
|
return account;
|
|
}
|
|
|
|
public void setAccount(String account) {
|
|
this.account = account;
|
|
}
|
|
|
|
public String getType() {
|
|
return type;
|
|
}
|
|
|
|
public void setType(String type) {
|
|
this.type = type;
|
|
}
|
|
}
|