JobPostRepository.cs 403 B

123456789101112131415161718
  1. using OASystem.Domain.Dtos.System;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace OASystem.Infrastructure.Repositories.System
  8. {
  9. public class JobPostRepository : BaseRepository<Sys_JobPost, QueryJobPostDto>
  10. {
  11. public JobPostRepository(SqlSugarClient sqlSugar) : base(sqlSugar)
  12. {
  13. }
  14. }
  15. }