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 + '}'; } }