package models type TProtoInterface struct { InterfaceId string `xorm:"not null pk comment('接口ID') CHAR(18)"` InterfaceName string `xorm:"not null comment('接口名称') VARCHAR(256)"` FileId string `xorm:"not null comment('所在文件ID') index CHAR(18)"` StructId string `xorm:"not null comment('结构体ID') index CHAR(18)"` }