MapRegions.cs
1.76 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
using Infrastructure;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Http;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Linq.Expressions;
using WebRepository;
namespace WebApp
{
/// <summary>
/// 工作流模板信息表
/// </summary>
public partial class MapRegions
{
private readonly IUnitWork _unitWork;
private static IHostingEnvironment _hostingEnvironment;
readonly ExcelHelper imp = new ExcelHelper(_hostingEnvironment);
//新增插入表数据
public IRepository<MapRegion> _mapcontent;
public MapRegions(IUnitWork unitWork, IRepository<MapRegion> repository, IHostingEnvironment hostingEnvironment)
{
_unitWork = unitWork;
_mapcontent = repository;
_hostingEnvironment = hostingEnvironment;
}
public MapRegions SetLoginInfo(LoginInfo loginInfo)
{
_mapcontent._loginInfo = loginInfo;
return this;
}
//插入新增表Map_content
public void mpcIns(MapRegion entity)
{
_mapcontent.Add(entity);
}
public void mpcIns(MapRegion[] entity)
{
_mapcontent.BatchAdd(entity);
}
public void Upd(MapRegion entity)
{
_mapcontent.Update(entity);
}
public void DelByIds(string name)
{
_mapcontent.Delete(u => u.AreaName == name);
}
public MapRegion FindSingle(Expression<Func<MapRegion, bool>> exp)
{
return _mapcontent.FindSingle(exp);
}
public IQueryable<MapRegion> Find(Expression<Func<MapRegion, bool>> exp)
{
return _mapcontent.Find(exp);
}
}
}