using OASystem.Domain.Dtos.System;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace OASystem.Infrastructure.Repositories.System
{
    public class JobPostRepository : BaseRepository<Sys_JobPost, QueryJobPostDto>
    {
        public JobPostRepository(SqlSugarClient sqlSugar) : base(sqlSugar)
        {

        }
    }
}