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.
33 lines
684 B
33 lines
684 B
package com.mh.user.entity; |
|
|
|
import lombok.Getter; |
|
import lombok.Setter; |
|
|
|
/** |
|
* @author ljf |
|
* @title : |
|
* @description : |
|
* @updateTime 2020-07-31 |
|
* @throws : |
|
*/ |
|
@Setter |
|
@Getter |
|
public class ExceptionEntity { |
|
|
|
private Integer page; |
|
private Integer limit; |
|
private String beginTime; |
|
private String endTime; |
|
private Integer process; |
|
|
|
@Override |
|
public String toString() { |
|
return "ExceptionEntity{" + |
|
"page=" + page + |
|
", limit=" + limit + |
|
", beginTime='" + beginTime + '\'' + |
|
", endTime='" + endTime + '\'' + |
|
", process=" + process + |
|
'}'; |
|
} |
|
}
|
|
|