param_system_setting.go
1.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
package allied_creation_basic
//更新系统设置
type (
ReqSystemSettingUpdate struct {
// 公司id
CompanyId int64 `json:"companyId"`
// 设定的值
Value string `json:"value"`
// 设置对应的编码
SettingCode string `json:"settingCode"`
}
DataSystemSettingUpdate struct {
}
)
//获取企业的系统设置列表
type (
ReqSystemSettingSearch struct {
}
DataSystemSettingSearch struct {
SystemSetting []struct {
// 公司id
CompanyId int64 `json:"companyId"`
// 管控层级
ControlLevel string `json:"controlLevel"`
// 描述
Description string `json:"description"`
// 设置对应的编码
SettingCode string `json:"settingCode"`
// 设置对应的名称
SettingName string `json:"settingName"`
// 数据id
SystemSettingId int64 `json:"systemSettingId"`
// 设定的值
Value string `json:"value"`
// 值类型
ValueType string `json:"valueType"`
}
}
)
//获取企业的系统设置项
type (
ReqSystemSettingGet struct {
SettingCode string `json:"settingCode"`
}
DataSystemSettingGet struct {
// 公司id
CompanyId int64 `json:"companyId"`
// 管控层级
ControlLevel string `json:"controlLevel"`
// 描述
Description string `json:"description"`
// 设置对应的编码
SettingCode string `json:"settingCode"`
// 设置对应的名称
SettingName string `json:"settingName"`
// 数据id
SystemSettingId int64 `json:"systemSettingId"`
// 设定的值
Value string `json:"value"`
// 值类型
ValueType string `json:"valueType"`
}
)