赖素文
authored
|
1
2
3
4
5
6
7
8
9
10
|
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;
|
唐召明
authored
|
11
|
using Hh.Mes.Service.SystemAuth;
|
赖素文
authored
|
12
13
14
15
16
17
18
19
|
namespace Hh.Mes.Service.Configure
{
/// <summary>
/// 客户端状态
/// </summary>
public class DaqClientStatusService : RepositorySqlSugar<daq_client_status>
{
|
唐召明
authored
|
20
21
|
public DaqClientStatusService(IAuth auth) : base(auth) { }
|
赖素文
authored
|
22
23
24
25
26
27
28
|
public dynamic Load(PageReq pageReq, daq_client_status entity)
{
return ExceptionsHelp.Instance.ExecuteT(() =>
{
var result = new Response();
var expression = LinqWhere(entity);
//先组合查询表达式(多表查询查看IOT 设备列表案例)
|
唐召明
authored
|
29
|
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
|
30
31
32
33
|
//Exel false 分页
if (!entity.Exel)
{
int total = 0;
|
唐召明
authored
|
34
35
36
37
38
39
40
41
42
43
|
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
|
44
45
46
47
|
result.Count = total;
}
else
{
|
唐召明
authored
|
48
49
50
51
52
53
54
55
56
|
result.Result = query.Select((c, p) => new
{
c.id,
c.clientKeys,
c.clientName,
c.projectCode,
p.projectName,
c.lastSeenDate
}).ToList();
|
赖素文
authored
|
57
58
59
60
61
|
result.Count = result.Result.Count;
}
return result;
}, catchRetrunValue: "list");
}
|
唐召明
authored
|
62
|
|
赖素文
authored
|
63
64
65
66
67
68
69
70
|
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
|
71
|
if (!response.Status) response.Message = SystemVariable.dataActionError;
|
赖素文
authored
|
72
73
74
|
return response;
});
}
|
唐召明
authored
|
75
|
|
赖素文
authored
|
76
77
78
79
80
81
82
83
84
85
86
87
|
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
|
88
|
|
赖素文
authored
|
89
90
91
92
93
94
95
96
97
|
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
|
98
|
|
赖素文
authored
|
99
100
101
102
|
public Response ExportData(daq_client_status entity)
{
return Load(null, entity);
}
|
唐召明
authored
|
103
104
|
public Expression<Func<daq_client_status, base_project, bool>> LinqWhere(daq_client_status client)
|
赖素文
authored
|
105
|
{
|
唐召明
authored
|
106
107
108
109
|
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
|
110
|
{
|
唐召明
authored
|
111
112
113
114
115
|
exp.And((c, p) => c.clientName.Contains(client.clientName));
}
if (!string.IsNullOrWhiteSpace(client.remark))
{
exp.And((c, p) => c.remark.Contains(client.remark));
|
赖素文
authored
|
116
|
}
|
唐召明
authored
|
117
|
if (!string.IsNullOrWhiteSpace(client.projectCode))
|
赖素文
authored
|
118
|
{
|
唐召明
authored
|
119
|
exp.And((c, p) => c.projectCode == client.projectCode);
|
赖素文
authored
|
120
|
}
|
唐召明
authored
|
121
122
123
124
125
126
127
128
|
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
|
129
|
return exp.ToExpression();//拼接表达式
|
赖素文
authored
|
130
131
132
|
}
}
}
|