business_apply.go 286 B

1234567891011121314
  1. package services
  2. import (
  3. "context"
  4. "hongze/hongze_task/models"
  5. "hongze/hongze_task/utils"
  6. "time"
  7. )
  8. func CheckBusinessTripApply(cont context.Context) (err error) {
  9. endDate := time.Now().Format(utils.FormatDate)
  10. err = models.BusinessTripApplyStatusOutTime(endDate)
  11. return err
  12. }