From 70c08d5a565139b440b73d8b9d9c8c20c7942cd6 Mon Sep 17 00:00:00 2001
From: lingling <kety1122@163.com>
Date: 星期五, 14 三月 2025 15:11:23 +0800
Subject: [PATCH] 添加逻辑
---
LifePayment/LifePayment.EntityFrameworkCore/LifePaymentServicesDbContext.cs | 13 +++++++++++++
1 files changed, 13 insertions(+), 0 deletions(-)
diff --git a/LifePayment/LifePayment.EntityFrameworkCore/LifePaymentServicesDbContext.cs b/LifePayment/LifePayment.EntityFrameworkCore/LifePaymentServicesDbContext.cs
index 6a79923..24e64e5 100644
--- a/LifePayment/LifePayment.EntityFrameworkCore/LifePaymentServicesDbContext.cs
+++ b/LifePayment/LifePayment.EntityFrameworkCore/LifePaymentServicesDbContext.cs
@@ -1,4 +1,5 @@
using LifePayment.Domain;
+using LifePayment.Domain.Models;
using Microsoft.EntityFrameworkCore;
using Volo.Abp.Data;
using Volo.Abp.EntityFrameworkCore;
@@ -15,6 +16,18 @@
}
+ public virtual DbSet<LifePayUser> LifePayUser { get; set; }
+
+ public virtual DbSet<LifePayOrder> LifePayOrder { get; set; }
+
+ public virtual DbSet<LifePayRate> LifePayRate { get; set; }
+
+
+
+ public virtual DbSet<LifePayChannles> LifePayChannles { get; set; }
+
+ public virtual DbSet<LifePayAccount> LifePayAccount { get; set; }
+
[UnitOfWork]
protected override void OnModelCreating(ModelBuilder builder)
{
--
Gitblit v1.9.1