- 后台端
- 公共管理
- 文章管理
- 登录管理
- 代码生成
- 权限管理
- 系统监控
- 通知设置
- 短信设置
- 系统设置
- 渠道设置
- 装修管理
- 用户管理
- 计划任务
- 财务管理
- 营销管理
- 手机端
- 电脑端
通知设置保存
POST
/api/setting/notice/save
请求参数
Body 参数application/json
id
integer
必需
systemNotice
object
必需
status
integer
必需
title
string
必需
content
string
必需
smsNotice
object
必需
status
integer
必需
templateId
string
必需
content
string
必需
oaNotice
object
必需
status
integer
必需
name
string
必需
first
string
必需
remark
string
必需
templateId
string
必需
templateSn
string
必需
tpl
array [object]
必需
mnpNotice
object
必需
status
integer
必需
name
string
必需
templateId
string
必需
templateSn
string
必需
tpl
array [object {3}]
必需
示例
{
"id": 0,
"systemNotice": {
"status": 0,
"title": "string",
"content": "string"
},
"smsNotice": {
"status": 0,
"templateId": "string",
"content": "string"
},
"oaNotice": {
"status": 0,
"name": "string",
"first": "string",
"remark": "string",
"templateId": "string",
"templateSn": "string",
"tpl": [
{}
]
},
"mnpNotice": {
"status": 0,
"name": "string",
"templateId": "string",
"templateSn": "string",
"tpl": [
{
"tplName": "string",
"tplKeyword": "string",
"tplContent": "string"
}
]
}
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://java-admin.likeadmin.cn//api/setting/notice/save' \
--header 'Content-Type: application/json' \
--data-raw ''
返回响应
🟢200成功
application/json
Body
code
integer
必需
msg
string
必需
data
array[string]
必需
示例
{
"code": 200,
"msg": "成功",
"data": []
}
修改于 2023-01-10 02:29:52