From 7f2111c25184bcc3ced97cea322e55b3a105dfc5 Mon Sep 17 00:00:00 2001 From: liushijie <lslola@126.com> Date: 星期五, 14 三月 2025 09:22:26 +0800 Subject: [PATCH] 项目搭建 --- LifePayment/LifePayment.EntityFrameworkCore/LifePaymentServicesDbContext.cs | 7 +++++++ 1 files changed, 7 insertions(+), 0 deletions(-) diff --git a/LifePayment/LifePayment.EntityFrameworkCore/LifePaymentServicesDbContext.cs b/LifePayment/LifePayment.EntityFrameworkCore/LifePaymentServicesDbContext.cs index 6a79923..5b0d428 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,12 @@ } + public virtual DbSet<LifePayUser> LifePayUser { get; set; } + + public virtual DbSet<LifePayOrder> LifePayOrder { get; set; } + + public virtual DbSet<LifePayRate> LifePayRate { get; set; } + [UnitOfWork] protected override void OnModelCreating(ModelBuilder builder) { -- Gitblit v1.9.1