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
653 B
33 lines
653 B
package com.mh.user.entity; |
|
|
|
import lombok.Getter; |
|
import lombok.Setter; |
|
|
|
/** |
|
* @author ljf |
|
* @title : |
|
* @description : |
|
* @updateTime 2020-05-25 |
|
* @throws : |
|
*/ |
|
@Getter |
|
@Setter |
|
public class TableDataEntity { |
|
|
|
private int span; |
|
private String title; |
|
private String info; |
|
private String infos; |
|
private int rows; |
|
|
|
@Override |
|
public String toString() { |
|
return "TableDataEntity{" + |
|
"span=" + span + |
|
", title='" + title + '\'' + |
|
", info='" + info + '\'' + |
|
", infos='" + infos + '\'' + |
|
", rows=" + rows + |
|
'}'; |
|
} |
|
}
|
|
|