func (m *StrAvg) GetStrs() [][]byte {if m != nil {return m.Strs}return nil}[][]byte表示什么意思
表示二维的切片
a := [][]byte{ {0, 1, 2, 3}, {4, 5, 6, 7}, }