15 lines
233 B
Go
15 lines
233 B
Go
![]() |
package data
|
||
|
|
||
|
type WordBan struct {
|
||
|
Id int `json:"id"` //序号(ID)
|
||
|
Lang1 string `json:"lang1"` //屏蔽文字内容
|
||
|
}
|
||
|
|
||
|
func (data *WordBan) id() int {
|
||
|
return data.Id
|
||
|
}
|
||
|
|
||
|
type WordBanTable struct {
|
||
|
table[int, *WordBan]
|
||
|
}
|