public class BaseRepository<T>:IBaseRepository<T> where T : class { protected EfConnection DbContext = ContextFactory.GetCurrentContext(); public bool Insert(T entity) { DbContext.Set<T>().Add(entity); ; } public bool InsertBatch(List<…
最近用GO写了一个后台权限管理系统,在WIN10和ubuntu下部署,在win系统下编译ububtu的部署文件要先做如下配置 set GOARCH=amd64 set GOOS=linux go build ubuntu下的部署:nohup ./程序名 开发用的vscode,配合插件挺好用的,框架用的国内大牛写的beego.…