| 12345678910111213141516171819 |
- package common
- const (
- APP_NAME = "app_name"
- APP_ID = "app_id"
- AGENT_ID = "agent_id"
- INSTANCE_ID = "instance_id"
- )
- type AppInfo struct {
- AppName string `json:"app_name"`
- AppId int64 `json:"app_id"`
- AgentId int64 `json:"agent_id"`
- InstanceId int64 `json:"instance_id"`
- Sn string `json:"sn"`
- Sport int `json:"sport"`
- ServiceName string `json:"service_name"`
- CodeType CodeType `json:"code_type"`
- }
|