11 lines
223 B
Go
11 lines
223 B
Go
package model
|
|
|
|
type Apps struct {
|
|
ModelIDCULD
|
|
|
|
Name string `json:"name"` //应用名称
|
|
Type int `json:"type"` //应用类型
|
|
AppKey string `json:"app_key"` //Key
|
|
Status int `json:"status"` //状态
|
|
}
|