You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
562 B
Java
27 lines
562 B
Java
package com.engine.hrmelog.entity.dto;
|
|
|
|
import com.engine.hrmelog.annotation.ApiModel;
|
|
import com.engine.hrmelog.annotation.ApiModelProperty;
|
|
|
|
/**
|
|
* 重做实体类
|
|
* <p>Copyright: Copyright (c) 2024</p>
|
|
* <p>Company: 泛微软件</p>
|
|
*
|
|
* @author qiantao
|
|
* @version 1.0
|
|
**/
|
|
@ApiModel("重做实体类")
|
|
public class RedoContext<T> {
|
|
@ApiModelProperty("重做参数")
|
|
private T redoParams;
|
|
|
|
public T getRedoParams() {
|
|
return redoParams;
|
|
}
|
|
|
|
public void setRedoParams(T redoParams) {
|
|
this.redoParams = redoParams;
|
|
}
|
|
}
|