You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
356 B
9 lines
356 B
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)"`
|
|
}
|