Infrastructure/OpenAuth.Repository/SugarDbContext_Bus.cs

15 lines
314 B
C#
Raw Normal View History

2025-05-14 11:56:29 +08:00
using OpenAuth.Repository.Domain;
using System;
2024-11-13 09:19:06 +08:00
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
2025-05-13 15:18:14 +08:00
namespace OpenAuth.Repository
2024-11-13 09:19:06 +08:00
{
2025-05-13 15:18:14 +08:00
public partial class SugarDbContext
2024-11-13 09:19:06 +08:00
{
2025-05-14 11:56:29 +08:00
public SugarRepositiry<DroneCaseInfo> DroneCaseInfo { get; set; }
2024-11-13 09:19:06 +08:00
}
}