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