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
659 B
40 lines
659 B
package sut.edu.zyp.dormitory.manage.dto;
|
|
|
|
import java.io.Serializable;
|
|
|
|
/**
|
|
* 基础请求
|
|
*
|
|
* @author zyp
|
|
* @version 0.0.1
|
|
* @since 0.0.1
|
|
*/
|
|
public abstract class AbstractBaseRequest implements Serializable {
|
|
|
|
/**
|
|
* 请求id
|
|
*/
|
|
private String requestId;
|
|
|
|
/**
|
|
* 操作人
|
|
*/
|
|
private String operator;
|
|
|
|
public String getRequestId() {
|
|
return requestId;
|
|
}
|
|
|
|
public void setRequestId(String requestId) {
|
|
this.requestId = requestId;
|
|
}
|
|
|
|
public String getOperator() {
|
|
return operator;
|
|
}
|
|
|
|
public void setOperator(String operator) {
|
|
this.operator = operator;
|
|
}
|
|
}
|