/***********************************************************************
* Project: baifenBinfa
* ProjectName: 百分兵法管理系统
* Web: http://chuanyin.com
* Author:
* Email:
* CreateTime: 202403/02
* Description: 暂无
***********************************************************************/
using System;
using System.IO;
using System.Net;
using System.Text;
using CoreCms.Net.IRepository;
using CoreCms.Net.IRepository.UnitOfWork;
using CoreCms.Net.Model.Entities;
using Microsoft.AspNetCore.Http;
using Microsoft.Extensions.Options;
using Newtonsoft.Json;
using SqlSugar;
namespace CoreCms.Net.Repository
{
///
/// 短信发送日志 接口实现
///
public class CoreCmsSmsRepository : BaseRepository, ICoreCmsSmsRepository
{
public CoreCmsSmsRepository(IUnitOfWork unitOfWork) : base(unitOfWork)
{
}
}
}