mirror of
https://github.com/FlourishingWorld/hk4e.git
synced 2026-02-04 17:22:27 +08:00
9 lines
197 B
Go
9 lines
197 B
Go
package entity
|
|
|
|
// 服务实例实体类
|
|
type Instance struct {
|
|
ServiceName string `json:"service_name"`
|
|
InstanceName string `json:"instance_name"`
|
|
InstanceAddr string `json:"instance_addr"`
|
|
}
|