文档
测试
POST
/api/v1.0/attend/savePeriod

接口描述

新增考勤周期

请求体

参数名
类型
描述
必填
endDate
Integer
结束日期
必填
endMonth
Integer
结束日期为当月还是次月,0:当月,1:次月
必填
name
String
考勤周期名称
必填
startDate
Integer
开始日期
必填

响应体

参数名
类型
描述
必填
code
必填
message
保存成功
必填
result
NULL
必填

请求体示例

```json { "endDate": 31, "endMonth": 0, "name": "自定义考勤周期", "startDate": 1 } ```