base table
This commit is contained in:
parent
8f17bf6a8c
commit
1c1740d97b
2 changed files with 29 additions and 0 deletions
17
template/components/content_table.go
Normal file
17
template/components/content_table.go
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
package components
|
||||
|
||||
type ContentTable struct {
|
||||
ID string
|
||||
AllTH []ContentTableTH
|
||||
AllTD [][]ContentTableTD
|
||||
}
|
||||
|
||||
type ContentTableTH struct {
|
||||
ID string
|
||||
Value string
|
||||
}
|
||||
|
||||
type ContentTableTD struct {
|
||||
ID string
|
||||
Value string
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue