19 lines
576 B
C#
Raw Permalink Normal View History

2025-06-06 16:00:39 +08:00
/*
*,
*Repository提供数据库操作Partial文件夹IApp_NewsRepository编写接口
*/
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using VOL.Core.BaseProvider;
using VOL.Entity.DomainModels;
using VOL.Core.Extensions.AutofacManager;
namespace VOL.AppManager.IRepositories
{
public partial interface IApp_NewsRepository : IDependency,IRepository<App_News>
{
}
}