正在显示
3 个修改的文件
包含
11 行增加
和
7 行删除
@@ -6,6 +6,7 @@ type NoticeSettingItem struct { | @@ -6,6 +6,7 @@ type NoticeSettingItem struct { | ||
6 | IsPush int `json:"isPush"` | 6 | IsPush int `json:"isPush"` |
7 | Module string `json:"module"` | 7 | Module string `json:"module"` |
8 | ModuleAction string `json:"moduleAction"` | 8 | ModuleAction string `json:"moduleAction"` |
9 | + ActionName string `json:"actionName"` | ||
9 | NoticeSettingID int `json:"noticeSettingId,string"` | 10 | NoticeSettingID int `json:"noticeSettingId,string"` |
10 | OrgID int `json:"orgId,string"` | 11 | OrgID int `json:"orgId,string"` |
11 | } | 12 | } |
@@ -66,6 +66,7 @@ func (noticeSettingService *NoticeSettingService) NoticeSettingList(noticeSettin | @@ -66,6 +66,7 @@ func (noticeSettingService *NoticeSettingService) NoticeSettingList(noticeSettin | ||
66 | ModuleAction: v.ModuleAction, | 66 | ModuleAction: v.ModuleAction, |
67 | NoticeSettingID: v.NoticeSettingID, | 67 | NoticeSettingID: v.NoticeSettingID, |
68 | OrgID: v.OrgID, | 68 | OrgID: v.OrgID, |
69 | + ActionName: v.ModuleActionName, | ||
69 | } | 70 | } |
70 | dataList = append(dataList, item) | 71 | dataList = append(dataList, item) |
71 | } | 72 | } |
@@ -75,13 +75,15 @@ type ( | @@ -75,13 +75,15 @@ type ( | ||
75 | DataNoticeSettingSearch struct { | 75 | DataNoticeSettingSearch struct { |
76 | Count int64 `json:"count"` | 76 | Count int64 `json:"count"` |
77 | List []struct { | 77 | List []struct { |
78 | - CompanyID int `json:"companyId"` | ||
79 | - Content string `json:"content"` | ||
80 | - IsPush int `json:"isPush"` | ||
81 | - Module string `json:"module"` | ||
82 | - ModuleAction string `json:"moduleAction"` | ||
83 | - NoticeSettingID int `json:"noticeSettingId"` | ||
84 | - OrgID int `json:"orgId"` | 78 | + CompanyID int `json:"companyId"` |
79 | + Content string `json:"content"` | ||
80 | + IsPush int `json:"isPush"` | ||
81 | + Module string `json:"module"` | ||
82 | + ModuleAction string `json:"moduleAction"` | ||
83 | + ModuleName string `json:"moduleName"` | ||
84 | + ModuleActionName string `json:"moduleActionName"` | ||
85 | + NoticeSettingID int `json:"noticeSettingId"` | ||
86 | + OrgID int `json:"orgId"` | ||
85 | } `json:"list"` | 87 | } `json:"list"` |
86 | } | 88 | } |
87 | ) | 89 | ) |
-
请 注册 或 登录 后发表评论