- 公共功能
- 登录注册
- 工作区
- 邀请成员
- 通讯录(用户、部门、角色)
- 应用包
- 应用分组
- 应用
- 工作台
- 应用设置(表单引擎,流程引擎,拓展设置,应用发布)
- 应用展现层
- 公式
- 个人中心
- 企业管理
- 开放平台
- 官方网站
- 子管理员
- 报表
- 门户
- 购买相关
- OCR
- 代码生成
- 数据导入
- 流程测试
- 考勤
- 农业大屏
- 应用模板商城
- 应用包上线配置
- study
- 站内信
- sand测试流程测试模板
- 测试接口
- 响水大屏
- tplus
- 协办
- 费用管控
- 首页相关内容
- pm
- 水产养殖
- 应用商城
- 联系我们
- 图零后台管理
- 知识库
- doris相关
- Ai后台管理
- CRM二
- 自建应用设置
- EHR二期
- APP应用测试
- 未命名接口GET
- 数据上报GET
修改考勤
开发中
PUT
/checkin/update
暂无描述
请求参数
Authorization
在 Header 添加参数
Authorization
,其值为在 Bearer 之后拼接 Token示例:
Authorization: Bearer ********************
Body 参数application/json
id
integer
id
checkinDay
string
考勤日期
sbTime
string
上班时间
xbTime
string
下班时间
a
boolean
A迟
b
boolean
B迟
shouldTimes
integer
应出勤时长(h)
actualTimes
integer
实际出勤时长(h)
sbQka
boolean
上班无卡
xbQka
boolean
下班无卡
workEndOvertimes
integer
周末加班(h)
workOvertimes
integer
工作日加班(h)
sjTimes
integer
事假(h)
bjTimes
integer
病假(h)
gsjTimes
integer
工伤假(h)
cjTimes
integer
产假(h)
njTimes
integer
年假(h)
txjTimes
integer
调休假(h)
chanjjTimes
integer
产检假(h)
pcjTimes
integer
陪产假(h)
hjTimes
number
婚假(h)
示例
{
"id": 1190,
"checkinDay": "2022-05-05",
"sbTime": "08:19:55",
"xbTime": "17:39:30",
"a": false,
"b": false,
"shouldTimes": 8,
"actualTimes": 8,
"sbQka": false,
"xbQka": false,
"workEndOvertimes": 0,
"workOvertimes": 0,
"sjTimes": 0,
"bjTimes": 0,
"gsjTimes": 0,
"cjTimes": 0,
"njTimes": 0,
"txjTimes": 0,
"chanjjTimes": 0,
"pcjTimes": 0,
"hjTimes": 1.52
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request PUT 'https://api.tolink.cloud/checkin/update' \
--header 'Content-Type: application/json' \
--data-raw '{
"id": 1190,
"checkinDay": "2022-05-05",
"sbTime": "08:19:55",
"xbTime": "17:39:30",
"a": false,
"b": false,
"shouldTimes": 8,
"actualTimes": 8,
"sbQka": false,
"xbQka": false,
"workEndOvertimes": 0,
"workOvertimes": 0,
"sjTimes": 0,
"bjTimes": 0,
"gsjTimes": 0,
"cjTimes": 0,
"njTimes": 0,
"txjTimes": 0,
"chanjjTimes": 0,
"pcjTimes": 0,
"hjTimes": 1.52
}'
返回响应
🟢200成功
application/json
Body
code
integer
示例:-
data
string
返回数据
msg
string
返回文字描述
示例
{
"code": 0,
"data": "修改成功",
"msg": "success"
}
🟢200错误
修改于 2023-06-08 08:07:04