招聘后台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

32 lines
1.1 KiB

using Dapper;
using System.Threading.Tasks;
using Znyc.Recruitment.Admin.Commons.IDbContext;
using Znyc.Recruitment.Admin.Commons.Repositories;
using Znyc.Recruitment.Admin.Security.Entitys;
using Znyc.Recruitment.Admin.Security.IRepositories;
namespace Znyc.Recruitment.Admin.Security.Repositories
{
public class CertificationRepository : BaseRepository<CertificationEntity, long>, ICertificationRepository
{
public CertificationRepository()
{
}
public CertificationRepository(IDbContextCore dbContext) : base(dbContext)
{
}
/// <summary>
/// </summary>
/// <param name="UnionId"></param>
/// <returns></returns>
public async Task<CertificationEntity> GetAsync(string UnionId)
{
string sql = string.Format(
"SELECT Id,Gender,IdCard,IssuedAddress,PositivePhoto,ReversePhoto,Status from znyc.sys_certification where UnionId='{0}'",
UnionId);
return await DapperConn.QueryFirstOrDefaultAsync<CertificationEntity>(sql);
}
}
}