荣鑫后端
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.

46 lines
723 B

5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
  1. package com.gaotao.modules.grid.entity;
  2. import lombok.Data;
  3. import java.io.Serializable;
  4. /**
  5. * grid_table_user
  6. * @author
  7. */
  8. @Data
  9. public class GridTableUser implements Serializable {
  10. private String userId;
  11. private String functionId;
  12. private String tableId;
  13. private String tableName;
  14. private String columnProp;
  15. private String columnLabel;
  16. private Boolean columnHidden;
  17. private Boolean columnImage;
  18. private Boolean columnSortable;
  19. private Integer columnWidth;
  20. private String format;
  21. private Integer sortLv;
  22. private Boolean status;
  23. private Boolean fixed;
  24. private String serialNumber;
  25. private String columnType;
  26. private String align;
  27. }