作者 tangxuhui

更新

@@ -37,9 +37,11 @@ type ( @@ -37,9 +37,11 @@ type (
37 } 37 }
38 38
39 DataSystemSettingSearch struct { 39 DataSystemSettingSearch struct {
40 - SystemSetting []struct { 40 + Grid struct {
  41 + Total int `json:"total"`
  42 + List []struct {
41 // 公司id 43 // 公司id
42 - CompanyId int64 `json:"companyId,string"` 44 + CompanyId int64 `json:"companyId,string,"`
43 // 管控层级 45 // 管控层级
44 ControlLevel string `json:"controlLevel"` 46 ControlLevel string `json:"controlLevel"`
45 // 描述 47 // 描述
@@ -49,12 +51,13 @@ type ( @@ -49,12 +51,13 @@ type (
49 // 设置对应的名称 51 // 设置对应的名称
50 SettingName string `json:"settingName"` 52 SettingName string `json:"settingName"`
51 // 数据id 53 // 数据id
52 - SystemSettingId int64 `json:"systemSettingId,string"` 54 + SystemSettingId int64 `json:"systemSettingId,string,"`
53 // 设定的值 55 // 设定的值
54 Value string `json:"value"` 56 Value string `json:"value"`
55 // 值类型 57 // 值类型
56 ValueType string `json:"valueType"` 58 ValueType string `json:"valueType"`
57 - } 59 + } `json:"list"`
  60 + } `json:"grid"`
58 } 61 }
59 ) 62 )
60 63