...
|
...
|
@@ -12,6 +12,22 @@ type ( |
|
|
}
|
|
|
|
|
|
DataSystemSettingUpdate struct {
|
|
|
// 公司id
|
|
|
CompanyId int64 `json:"companyId,string"`
|
|
|
// 管控层级
|
|
|
ControlLevel string `json:"controlLevel"`
|
|
|
// 描述
|
|
|
Description string `json:"description"`
|
|
|
// 设置对应的编码
|
|
|
SettingCode string `json:"settingCode"`
|
|
|
// 设置对应的名称
|
|
|
SettingName string `json:"settingName"`
|
|
|
// 数据id
|
|
|
SystemSettingId int64 `json:"systemSettingId,string"`
|
|
|
// 设定的值
|
|
|
Value string `json:"value"`
|
|
|
// 值类型
|
|
|
ValueType string `json:"valueType"`
|
|
|
}
|
|
|
)
|
|
|
|
...
|
...
|
@@ -23,7 +39,7 @@ type ( |
|
|
DataSystemSettingSearch struct {
|
|
|
SystemSetting []struct {
|
|
|
// 公司id
|
|
|
CompanyId int64 `json:"companyId"`
|
|
|
CompanyId int64 `json:"companyId,string"`
|
|
|
// 管控层级
|
|
|
ControlLevel string `json:"controlLevel"`
|
|
|
// 描述
|
...
|
...
|
@@ -33,7 +49,7 @@ type ( |
|
|
// 设置对应的名称
|
|
|
SettingName string `json:"settingName"`
|
|
|
// 数据id
|
|
|
SystemSettingId int64 `json:"systemSettingId"`
|
|
|
SystemSettingId int64 `json:"systemSettingId,string"`
|
|
|
// 设定的值
|
|
|
Value string `json:"value"`
|
|
|
// 值类型
|
...
|
...
|
@@ -50,7 +66,7 @@ type ( |
|
|
|
|
|
DataSystemSettingGet struct {
|
|
|
// 公司id
|
|
|
CompanyId int64 `json:"companyId"`
|
|
|
CompanyId int64 `json:"companyId,string"`
|
|
|
// 管控层级
|
|
|
ControlLevel string `json:"controlLevel"`
|
|
|
// 描述
|
...
|
...
|
@@ -60,7 +76,7 @@ type ( |
|
|
// 设置对应的名称
|
|
|
SettingName string `json:"settingName"`
|
|
|
// 数据id
|
|
|
SystemSettingId int64 `json:"systemSettingId"`
|
|
|
SystemSettingId int64 `json:"systemSettingId,string"`
|
|
|
// 设定的值
|
|
|
Value string `json:"value"`
|
|
|
// 值类型
|
...
|
...
|
|