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.
|
package models
|
|
|
|
type TJoinRuleIp struct {
|
|
Id int64 `xorm:"not null pk autoincr comment('主键') INT(11)"`
|
|
Ip string `xorm:"not null comment('IP限制') VARCHAR(255)"`
|
|
Memo string `xorm:"not null comment('描述信息') VARCHAR(255)"`
|
|
}
|