Skip to content

Commit

Permalink
chore: ignore lint check
Browse files Browse the repository at this point in the history
  • Loading branch information
yoogoc committed Feb 27, 2024
1 parent 0856708 commit 6f8f2fd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions models.go
Original file line number Diff line number Diff line change
Expand Up @@ -1339,9 +1339,9 @@ type TemplateCard struct {
}

type TemplateCardUpdateMessage struct {
UserIds []string `json:"userids" validate:"omitempty,max=100"`
PartyIds []int64 `json:"partyids" validate:"omitempty,max=100"`
TagIds []int32 `json:"tagids" validate:"omitempty,max=100"`
UserIds []string `json:"userids" validate:"omitempty,max=100"` //nolint:revive
PartyIds []int64 `json:"partyids" validate:"omitempty,max=100"` //nolint:revive
TagIds []int32 `json:"tagids" validate:"omitempty,max=100"` //nolint:revive
AtAll int `json:"atall,omitempty"`
ResponseCode string `json:"response_code"`
Button struct {
Expand Down
2 changes: 1 addition & 1 deletion oa.go
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ func (c *WorkwxApp) GetOAGetUserVacationQuota(userID string) ([]UserVacationQuot

// GetOASetOneUserVacationQuota 修改成员假期余额
func (c *WorkwxApp) GetOASetOneUserVacationQuota(req GetOASetOneUserVacationQuota) error {
_, err := c.execOASetOneUserVacationQuota(reqOASetOneUserVacationQuota{
_, err := c.execOASetOneUserVacationQuota(reqOASetOneUserVacationQuota{ //nolint:gosimple
UserID: req.UserID,
VacationID: req.VacationID,
LeftDuration: req.LeftDuration,
Expand Down

0 comments on commit 6f8f2fd

Please sign in to comment.