🆗 由于默认密码变更,已无法后台登录,改为使用jsessionID登录

🆗 兼容新的打卡
🆗 增加自动打卡开关
This commit is contained in:
jimlee
2023-03-22 18:10:03 +08:00
parent f69ec33050
commit becdffe1d4
13 changed files with 681 additions and 253 deletions

View File

@@ -0,0 +1,30 @@
package com.pomelotea.hoperun.sign.api.model
/**
*
* @version 0.0.1
* @author jimlee
* date 2023-03-22 13:52
*
**/
data class AttendancesDetailResponse(
val data: String,
val success: Boolean = false
)
data class AttendancesDetail(
val area_id: String? = null,
val area_id_begin: String? = null,
val area_id_end: String? = null,
val attState: String? = null,
val att_type: String? = null,
val begin_time: String? = null,
val dateType: String? = null,
val departmentcode: String? = null,
val end_time: String? = null,
val project_id: String? = null,
val projectcode: String? = null,
val projectname: String? = null,
val staff_code: String? = null,
val yearmonth: String? = null,
)