作者 tangxuhui

修复 系统参数设置错误

@@ -12,6 +12,22 @@ type ( @@ -12,6 +12,22 @@ type (
12 } 12 }
13 13
14 DataSystemSettingUpdate struct { 14 DataSystemSettingUpdate struct {
  15 + // 公司id
  16 + CompanyId int64 `json:"companyId,string"`
  17 + // 管控层级
  18 + ControlLevel string `json:"controlLevel"`
  19 + // 描述
  20 + Description string `json:"description"`
  21 + // 设置对应的编码
  22 + SettingCode string `json:"settingCode"`
  23 + // 设置对应的名称
  24 + SettingName string `json:"settingName"`
  25 + // 数据id
  26 + SystemSettingId int64 `json:"systemSettingId,string"`
  27 + // 设定的值
  28 + Value string `json:"value"`
  29 + // 值类型
  30 + ValueType string `json:"valueType"`
15 } 31 }
16 ) 32 )
17 33
@@ -23,7 +39,7 @@ type ( @@ -23,7 +39,7 @@ type (
23 DataSystemSettingSearch struct { 39 DataSystemSettingSearch struct {
24 SystemSetting []struct { 40 SystemSetting []struct {
25 // 公司id 41 // 公司id
26 - CompanyId int64 `json:"companyId"` 42 + CompanyId int64 `json:"companyId,string"`
27 // 管控层级 43 // 管控层级
28 ControlLevel string `json:"controlLevel"` 44 ControlLevel string `json:"controlLevel"`
29 // 描述 45 // 描述
@@ -33,7 +49,7 @@ type ( @@ -33,7 +49,7 @@ type (
33 // 设置对应的名称 49 // 设置对应的名称
34 SettingName string `json:"settingName"` 50 SettingName string `json:"settingName"`
35 // 数据id 51 // 数据id
36 - SystemSettingId int64 `json:"systemSettingId"` 52 + SystemSettingId int64 `json:"systemSettingId,string"`
37 // 设定的值 53 // 设定的值
38 Value string `json:"value"` 54 Value string `json:"value"`
39 // 值类型 55 // 值类型
@@ -50,7 +66,7 @@ type ( @@ -50,7 +66,7 @@ type (
50 66
51 DataSystemSettingGet struct { 67 DataSystemSettingGet struct {
52 // 公司id 68 // 公司id
53 - CompanyId int64 `json:"companyId"` 69 + CompanyId int64 `json:"companyId,string"`
54 // 管控层级 70 // 管控层级
55 ControlLevel string `json:"controlLevel"` 71 ControlLevel string `json:"controlLevel"`
56 // 描述 72 // 描述
@@ -60,7 +76,7 @@ type ( @@ -60,7 +76,7 @@ type (
60 // 设置对应的名称 76 // 设置对应的名称
61 SettingName string `json:"settingName"` 77 SettingName string `json:"settingName"`
62 // 数据id 78 // 数据id
63 - SystemSettingId int64 `json:"systemSettingId"` 79 + SystemSettingId int64 `json:"systemSettingId,string"`
64 // 设定的值 80 // 设定的值
65 Value string `json:"value"` 81 Value string `json:"value"`
66 // 值类型 82 // 值类型
@@ -7,6 +7,6 @@ import ( @@ -7,6 +7,6 @@ import (
7 7
8 func init() { 8 func init() {
9 web.Router("/v1/web/system-setting/search", &web_client.SystemSettingController{}, "Post:SystemSettingSearch") 9 web.Router("/v1/web/system-setting/search", &web_client.SystemSettingController{}, "Post:SystemSettingSearch")
10 - web.Router("/v1/web/syetem-setting/:settingId", &web_client.SystemSettingController{}, "Get:SystemSettingGet") 10 + web.Router("/v1/web/syetem-setting/get", &web_client.SystemSettingController{}, "Post:SystemSettingGet")
11 web.Router("/v1/web/syetem-setting", &web_client.SystemSettingController{}, "Put:SystemSettingUpdate") 11 web.Router("/v1/web/syetem-setting", &web_client.SystemSettingController{}, "Put:SystemSettingUpdate")
12 } 12 }