community/src/gonganxitong/contract.go
2024-11-28 17:34:30 +08:00

18 lines
408 B
Go

package gonganxitong
import "shylinux.com/x/ice"
type contract struct {
Table
order string `data:"94"`
fields string `data:"title"`
create string `name:"create title*" role:"leader"`
remove string `name:"remove" role:"leader"`
}
func (s contract) List(m *ice.Message, arg ...string) {
m.Echo("功能正在开发中,敬请等待。")
}
func init() { ice.TeamCtxCmd(contract{Table: newTable()}) }