v3.0.0
This commit is contained in:
橙子
2021-05-31 21:41:27 +08:00
parent 8aa1065b37
commit 2bd67778bf
127 changed files with 3895 additions and 8 deletions

24
CC.Yi/CC.Yi.DAL/T4DAL.cs Normal file
View File

@@ -0,0 +1,24 @@
using CC.Yi.IDAL;
using CC.Yi.Model;
using System;
using System.Collections.Generic;
using System.Text;
using Microsoft.EntityFrameworkCore;
namespace CC.Yi.DAL
{
public partial class studentDal : BaseDal<student>, IstudentDal
{
public studentDal(DataContext _Db):base(_Db)
{
Db = _Db;
}
}
public partial class propDal : BaseDal<prop>, IpropDal
{
public propDal(DataContext _Db):base(_Db)
{
Db = _Db;
}
}
}