Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix:修复请假的event消息解析错误 #104

Open
wants to merge 2 commits into
base: v3_main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions service/approval/v4/ext_model.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ type P1LeaveApprovalV4Data struct {
LeaveUnit string `json:"leave_unit,omitempty"` // 请假最小时长
LeaveStartTime string `json:"leave_start_time,omitempty"` // 请假开始时间
LeaveEndTime string `json:"leave_end_time,omitempty"` // 请假结束时间
LeaveDetail []string `json:"leave_detail,omitempty"` // 具体的请假明细时间
LeaveRange []string `json:"leave_range,omitempty"` // 具体的请假时间范围
LeaveDetail [][]string `json:"leave_detail,omitempty"` // 具体的请假明细时间(时间段)
LeaveRange [][]string `json:"leave_range,omitempty"` // 具体的请假时间范围(时间段)
LeaveInterval int64 `json:"leave_interval,omitempty"` // 请假时长,单位(秒)
LeaveReason string `json:"leave_reason,omitempty"` // 请假事由
I18nResources []*P1LeaveApprovalI18nResourceV4 `json:"i18n_resources,omitempty"` // 国际化文案
Expand Down