Files
iMES_Net/iMES.Equip/Repositories/Equip/Equip_SpotMaintPlanRepository.cs

25 lines
828 B
C#
Raw Permalink Normal View History

2026-02-06 18:34:35 +08:00
/*
*,
*Repository提供数据库操作Partial文件夹Equip_SpotMaintPlanRepository编写代码
*/
using iMES.Equip.IRepositories;
using iMES.Core.BaseProvider;
using iMES.Core.EFDbContext;
using iMES.Core.Extensions.AutofacManager;
using iMES.Entity.DomainModels;
namespace iMES.Equip.Repositories
{
public partial class Equip_SpotMaintPlanRepository : RepositoryBase<Equip_SpotMaintPlan> , IEquip_SpotMaintPlanRepository
{
public Equip_SpotMaintPlanRepository(SysDbContext dbContext)
: base(dbContext)
{
}
public static IEquip_SpotMaintPlanRepository Instance
{
get { return AutofacContainerModule.GetService<IEquip_SpotMaintPlanRepository>(); } }
}
}