YD_SmartSports.Api/VOL.System/IRepositories/Quartz/ISys_QuartzOptionsRepository.cs

19 lines
599 B
C#
Raw Permalink Normal View History

2025-06-06 16:00:39 +08:00
/*
*,
*Repository提供数据库操作Partial文件夹ISys_QuartzOptionsRepository编写接口
*/
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.System.IRepositories
{
public partial interface ISys_QuartzOptionsRepository : IDependency,IRepository<Sys_QuartzOptions>
{
}
}