该报错是由于映射表的结构的结构体中的 某个字段 比如
type Student struct {
name string `xorm:"int(11) autoincr pk" json:"name"`
ProductId int `xorm:"int(11) unique(uniq_product_id) not null comment('产品id')" json:"product_id"`
}
这里边的 xorm 里边的映射的括号多了( 所以可能会报错,需要挨个检查字段是否有多余的括号,然后去掉就可以了