招聘后台
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.
 
 

36 lines
1.1 KiB

using Dapper;
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
{
/// <summary>
/// 应用仓储实现
/// </summary>
public class AuditRepository : BaseRepository<AuditEntity, long>, IAuditRepository
{
public AuditRepository()
{
}
public AuditRepository(IDbContextCore context) : base(context)
{
}
/// <summary>
/// 根据
/// </summary>
/// <param name="productId">产品ID</param>
/// <param name="productType">产品类型</param>
/// <returns></returns>
public AuditEntity GetProductAuditByProductId(string productId, string productType)
{
string sql = string.Format(
"SELECT * from rm_ProductAudit where ProductId={0} and ProductType={1} and IsDeleted=0",
productId, productType);
return DapperConn.QueryFirstOrDefault<AuditEntity>(sql);
}
}
}