...
|
...
|
@@ -37,9 +37,11 @@ type ( |
|
|
}
|
|
|
|
|
|
DataSystemSettingSearch struct {
|
|
|
SystemSetting []struct {
|
|
|
Grid struct {
|
|
|
Total int `json:"total"`
|
|
|
List []struct {
|
|
|
// 公司id
|
|
|
CompanyId int64 `json:"companyId,string"`
|
|
|
CompanyId int64 `json:"companyId,string,"`
|
|
|
// 管控层级
|
|
|
ControlLevel string `json:"controlLevel"`
|
|
|
// 描述
|
...
|
...
|
@@ -49,12 +51,13 @@ type ( |
|
|
// 设置对应的名称
|
|
|
SettingName string `json:"settingName"`
|
|
|
// 数据id
|
|
|
SystemSettingId int64 `json:"systemSettingId,string"`
|
|
|
SystemSettingId int64 `json:"systemSettingId,string,"`
|
|
|
// 设定的值
|
|
|
Value string `json:"value"`
|
|
|
// 值类型
|
|
|
ValueType string `json:"valueType"`
|
|
|
}
|
|
|
} `json:"list"`
|
|
|
} `json:"grid"`
|
|
|
}
|
|
|
)
|
|
|
|
...
|
...
|
|