赖素文
authored
|
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
|
using Hh.Mes.Common.log;
using Hh.Mes.Common.Request;
using Hh.Mes.POJO.Entity;
using Hh.Mes.POJO.Response;
using Hh.Mes.Service.Repository;
using SqlSugar;
using System;
using System.Linq;
using System.Linq.Expressions;
using Hh.Mes.Pojo.System;
namespace Hh.Mes.Service.Configure
{
/// <summary>
/// 客户端状态
/// </summary>
public class DaqClientStatusService : RepositorySqlSugar<daq_client_status>
{
public dynamic Load(PageReq pageReq, daq_client_status entity)
{
return ExceptionsHelp.Instance.ExecuteT(() =>
{
var result = new Response();
var expression = LinqWhere(entity);
//先组合查询表达式(多表查询查看IOT 设备列表案例)
|
唐召明
authored
|
26
|
var query = Context.Queryable<daq_client_status, base_project>((c, p) => new JoinQueryInfos(JoinType.Left, c.projectCode == p.projectCode)).Where(expression).OrderBy((c, p) => c.projectCode);
|
赖素文
authored
|
27
28
29
30
|
//Exel false 分页
if (!entity.Exel)
{
int total = 0;
|
唐召明
authored
|
31
32
33
34
35
36
37
38
39
40
|
result.Result = query.Select((c, p) => new
{
c.id,
c.clientKeys,
c.clientName,
c.projectCode,
p.projectName,
c.lastSeenDate,
c.remark,
}).ToOffsetPage(pageReq.page, pageReq.limit, ref total);
|
赖素文
authored
|
41
42
43
44
|
result.Count = total;
}
else
{
|
唐召明
authored
|
45
46
47
48
49
50
51
52
53
|
result.Result = query.Select((c, p) => new
{
c.id,
c.clientKeys,
c.clientName,
c.projectCode,
p.projectName,
c.lastSeenDate
}).ToList();
|
赖素文
authored
|
54
55
56
57
58
|
result.Count = result.Result.Count;
}
return result;
}, catchRetrunValue: "list");
}
|
唐召明
authored
|
59
|
|
赖素文
authored
|
60
61
62
63
64
65
66
67
|
public dynamic Ins(daq_client_status entity)
{
return ExceptionsHelp.Instance.ExecuteT(() =>
{
var response = new Response();
//entity.createBy = sysWebUser.Account;
//entity.createTime = DateTime.Now;
response.Status = Add(entity);
|
唐召明
authored
|
68
|
if (!response.Status) response.Message = SystemVariable.dataActionError;
|
赖素文
authored
|
69
70
71
|
return response;
});
}
|
唐召明
authored
|
72
|
|
赖素文
authored
|
73
74
75
76
77
78
79
80
81
82
83
84
|
public dynamic Upd(daq_client_status entity)
{
return ExceptionsHelp.Instance.ExecuteT(() =>
{
var response = new Response();
//entity.updateBy = sysWebUser.Account;
//entity.updateTime = DateTime.Now;
response.Status = Update(entity);
if (!response.Status) response.Message = SystemVariable.dataActionError;
return response;
});
}
|
唐召明
authored
|
85
|
|
赖素文
authored
|
86
87
88
89
90
91
92
93
94
|
public dynamic DelByIds(int[] ids)
{
return ExceptionsHelp.Instance.ExecuteT(() =>
{
var response = new Response();
Context.Deleteable<daq_client_status>(t => ids.Contains(t.id)).ExecuteCommand();
return response;
});
}
|
唐召明
authored
|
95
|
|
赖素文
authored
|
96
97
98
99
|
public Response ExportData(daq_client_status entity)
{
return Load(null, entity);
}
|
唐召明
authored
|
100
101
|
public Expression<Func<daq_client_status, base_project, bool>> LinqWhere(daq_client_status client)
|
赖素文
authored
|
102
|
{
|
唐召明
authored
|
103
104
105
106
|
var exp = Expressionable.Create<daq_client_status, base_project>();
//数据过滤条件
//if (!string.IsNullOrWhiteSpace(model.XXX)) exp.And(x => x.XXX.Contains(model.XXX));
if (!string.IsNullOrWhiteSpace(client.clientName))
|
赖素文
authored
|
107
|
{
|
唐召明
authored
|
108
109
110
111
112
|
exp.And((c, p) => c.clientName.Contains(client.clientName));
}
if (!string.IsNullOrWhiteSpace(client.remark))
{
exp.And((c, p) => c.remark.Contains(client.remark));
|
赖素文
authored
|
113
|
}
|
唐召明
authored
|
114
|
if (!string.IsNullOrWhiteSpace(client.projectCode))
|
赖素文
authored
|
115
|
{
|
唐召明
authored
|
116
|
exp.And((c, p) => c.projectCode == client.projectCode);
|
赖素文
authored
|
117
|
}
|
唐召明
authored
|
118
119
120
121
122
123
124
125
|
string user = sysWebUser.Account;
if (user != SystemVariable.DefaultCreated)
{
var projectRoleKeys = GetProjectRoleKeys(user);
exp.And((c, p) => SqlFunc.Subqueryable<sys_role_projects_rel>().Where(x => projectRoleKeys.Contains(x.project_roles_key) && x.project_key == p.keys).Any());
}
|
唐召明
authored
|
126
|
return exp.ToExpression();//拼接表达式
|
赖素文
authored
|
127
128
129
|
}
}
}
|