package gonganxitong import ( "shylinux.com/x/ice" "shylinux.com/x/community/src/gonganxitong/model" ) type comment struct{ Table } func (s comment) Create(m *ice.Message, arg ...string) { s.Insert(m, append(arg, m.OptionSimple(model.MARKET_UID, model.USER_UID)...)...) } func (s comment) List(m *ice.Message, arg ...string) { } func init() { ice.TeamCtxCmd(comment{}) }