|
@@ -9,7 +9,7 @@ using Microsoft.Extensions.Options;
|
|
|
|
|
|
namespace GxPress.Repository.Implement.AppStartPage
|
|
|
{
|
|
|
-
|
|
|
+
|
|
|
public class AppStartPageRepository : IAppStartPageRepository
|
|
|
{
|
|
|
private readonly Repository<Entity.tede2.AppStartPage.AppStartPage> _repository;
|
|
@@ -68,5 +68,14 @@ namespace GxPress.Repository.Implement.AppStartPage
|
|
|
{
|
|
|
return await _repository.UpdateAsync(model);
|
|
|
}
|
|
|
+ /// <summary>
|
|
|
+ /// 添加
|
|
|
+ /// </summary>
|
|
|
+ /// <param name="model"></param>
|
|
|
+ /// <returns></returns>
|
|
|
+ public async Task<bool> InsertAsync(Entity.tede2.AppStartPage.AppStartPage model)
|
|
|
+ {
|
|
|
+ return await _repository.InsertAsync(model) > 0;
|
|
|
+ }
|
|
|
}
|
|
|
}
|