This commit is contained in:
454313500@qq.com
2021-05-13 01:39:34 +08:00
parent 2e5b991db0
commit fe850bbc2c
53 changed files with 1318 additions and 404 deletions

View File

@@ -18,6 +18,7 @@ using CC.Yi.Model;
using System;
using System.Collections.Generic;
using System.Text;
using Microsoft.EntityFrameworkCore;
namespace CC.Yi.DAL
{
@@ -25,8 +26,9 @@ namespace CC.Yi.DAL
#>
public partial class <#=k #>Dal : BaseDal<<#=k #>>, I<#=k #>Dal
{
public <#=k #>Dal(DataContext _Db) : base(_Db)
public <#=k #>Dal(DataContext _Db):base(_Db)
{
Db = _Db;
}
}
<# } #>