作者 tangxuhui

更新

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