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.
47 lines
723 B
47 lines
723 B
package com.gaotao.modules.grid.entity;
|
|
|
|
import lombok.Data;
|
|
|
|
import java.io.Serializable;
|
|
|
|
/**
|
|
* grid_table_user
|
|
* @author
|
|
*/
|
|
@Data
|
|
public class GridTableUser implements Serializable {
|
|
private String userId;
|
|
|
|
private String functionId;
|
|
|
|
private String tableId;
|
|
|
|
private String tableName;
|
|
|
|
private String columnProp;
|
|
|
|
private String columnLabel;
|
|
|
|
private Boolean columnHidden;
|
|
|
|
private Boolean columnImage;
|
|
|
|
private Boolean columnSortable;
|
|
|
|
private Integer columnWidth;
|
|
|
|
private String format;
|
|
|
|
private Integer sortLv;
|
|
|
|
private Boolean status;
|
|
|
|
private Boolean fixed;
|
|
|
|
private String serialNumber;
|
|
|
|
private String columnType;
|
|
|
|
private String align;
|
|
|
|
}
|