UpdateStatus 更新审核状态
(ctx context.Context, check domain.Check)
| 41 | |
| 42 | // UpdateStatus 更新审核状态 |
| 43 | func (r *checkRepository) UpdateStatus(ctx context.Context, check domain.Check) error { |
| 44 | return r.dao.UpdateStatus(ctx, toDAOCheck(check)) |
| 45 | } |
| 46 | |
| 47 | // FindAll 获取审核列表 |
| 48 | func (r *checkRepository) FindAll(ctx context.Context, pagination domain.Pagination) ([]domain.Check, error) { |
nothing calls this directly
no test coverage detected