mgr_ip.go 403 Bytes
Newer Older
kzkzzzz's avatar
kzkzzzz committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
package model

import (
	"time"
)

type MgrIp struct {
	CreatedTime time.Time `json:"created_time"` // CreatedTime
	Id          int64     `json:"id"`           // id
	Ip          string    `json:"ip"`           // 设备码
	MgrId       int64     `json:"mgr_id"`       // 管理人ID
	UpdatedTime time.Time `json:"updated_time"` // UpdatedTime
}

func (m *MgrIp) TableName() string {
	return "mgr_ip"
}