作者 yangfu

基础模块修改

@@ -10,7 +10,7 @@ import ( @@ -10,7 +10,7 @@ import (
10 10
11 // SystemSetting 更新系统设置 11 // SystemSetting 更新系统设置
12 func (gateway HttplibAlliedCreationBasic) SystemSettingUpdate(param ReqSystemSettingUpdate) (*DataSystemSettingUpdate, error) { 12 func (gateway HttplibAlliedCreationBasic) SystemSettingUpdate(param ReqSystemSettingUpdate) (*DataSystemSettingUpdate, error) {
13 - url := gateway.baseUrL + "/system-setting" 13 + url := gateway.baseUrL + "/system-settings"
14 method := "PUT" 14 method := "PUT"
15 req := gateway.CreateRequest(url, method) 15 req := gateway.CreateRequest(url, method)
16 log.Logger.Debug("向基础模块请求数据:更新系统设置。", map[string]interface{}{ 16 log.Logger.Debug("向基础模块请求数据:更新系统设置。", map[string]interface{}{
@@ -41,7 +41,7 @@ func (gateway HttplibAlliedCreationBasic) SystemSettingUpdate(param ReqSystemSet @@ -41,7 +41,7 @@ func (gateway HttplibAlliedCreationBasic) SystemSettingUpdate(param ReqSystemSet
41 41
42 // System-settingSearch 获取企业的系统设置列表 42 // System-settingSearch 获取企业的系统设置列表
43 func (gateway HttplibAlliedCreationBasic) SystemSettingSearch(param ReqSystemSettingSearch) (*DataSystemSettingSearch, error) { 43 func (gateway HttplibAlliedCreationBasic) SystemSettingSearch(param ReqSystemSettingSearch) (*DataSystemSettingSearch, error) {
44 - url := gateway.baseUrL + "/system-setting/search" 44 + url := gateway.baseUrL + "/system-settings/search"
45 method := "POST" 45 method := "POST"
46 req := gateway.CreateRequest(url, method) 46 req := gateway.CreateRequest(url, method)
47 log.Logger.Debug("向基础模块请求数据:获取企业的系统设置列表。", map[string]interface{}{ 47 log.Logger.Debug("向基础模块请求数据:获取企业的系统设置列表。", map[string]interface{}{
@@ -72,7 +72,7 @@ func (gateway HttplibAlliedCreationBasic) SystemSettingSearch(param ReqSystemSet @@ -72,7 +72,7 @@ func (gateway HttplibAlliedCreationBasic) SystemSettingSearch(param ReqSystemSet
72 72
73 // SystemSettingGet 获取企业的系统设置项 73 // SystemSettingGet 获取企业的系统设置项
74 func (gateway HttplibAlliedCreationBasic) SystemSettingGet(param ReqSystemSettingGet) (*DataSystemSettingGet, error) { 74 func (gateway HttplibAlliedCreationBasic) SystemSettingGet(param ReqSystemSettingGet) (*DataSystemSettingGet, error) {
75 - url := gateway.baseUrL + "/system-setting/get" 75 + url := gateway.baseUrL + "/system-settings/get"
76 method := "POST" 76 method := "POST"
77 req := gateway.CreateRequest(url, method) 77 req := gateway.CreateRequest(url, method)
78 log.Logger.Debug("向基础模块请求数据:获取企业的系统设置项。", map[string]interface{}{ 78 log.Logger.Debug("向基础模块请求数据:获取企业的系统设置项。", map[string]interface{}{