BaseWeldTechnologyEquipmentService.cs 4.06 KB
using Hh.Mes.Common.Infrastructure;
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.Collections.Generic;
using System.Linq;
using System.Linq.Expressions;
using Hh.Mes.Pojo.System;

namespace Hh.Mes.Service.Base
{
    public class BaseWeldTechnologyEquipmentService : RepositorySqlSugar<base_weld_technology_equipment>
    {
        public dynamic Load(PageReq pageReq, base_weld_technology_equipment entity)
        {
            return ExceptionsHelp.Instance.ExecuteT(() =>
            {
                var result = new Response<List<base_weld_technology_equipment>>();
                var expression = LinqWhere(entity);
                //先组合查询表达式
                var query = Context.Queryable<base_weld_technology_equipment>().Where(expression).OrderBy(x=> x.createTime, OrderByType.Desc);
                //Exel为ture就不分页,因为导出的话是全部导出
                if (pageReq != null)
                {
                    int total = 0;
                    result.Result = query.ToOffsetPage(pageReq.page, pageReq.limit, ref total);
                    result.Count = total;
                }
                else
                {
                    result.Result = query.ToList();
                    result.Count = result.Result.Count();
                }
                return result;
            }, catchRetrunValue: "list");
        }
 
        public dynamic Ins(base_weld_technology_equipment entity)
        {
            return ExceptionsHelp.Instance.ExecuteT(() =>
            {
                var response = new Response();
                //entity.createBy = sysWebUser?.Account;
                //entity.createTime = DateTime.Now;
                response.Status = Add(entity);
                if (!response.Status)response.Message = SystemVariable.dataActionError;
                return response;
            });
        }
 
        public dynamic Upd(base_weld_technology_equipment 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;
            });
        }
 
        public dynamic DelByIds(int[] ids)
        {
            return ExceptionsHelp.Instance.ExecuteT(() =>
            {
                var response = new Response();
                Context.Deleteable<base_weld_technology_equipment>(t => ids.Contains(t.id)).ExecuteCommand();
                return response;
            });
        }
 
        public Response ExportData(base_weld_technology_equipment entity)
        {
            return Load(null, entity);
        }
 
        public Expression<Func<base_weld_technology_equipment, bool>> LinqWhere(base_weld_technology_equipment model)
        {
            try
            {
                var exp = Expressionable.Create<base_weld_technology_equipment>();
                //数据过滤条件
                //if (!string.IsNullOrWhiteSpace(model.XXX)) exp.And(x => x.XXX.Contains(model.XXX));
                if (!string.IsNullOrWhiteSpace(model.equipmentCode))
                {
                    exp.And(x => x.equipmentCode.Contains(model.equipmentCode));
                }
                if (!string.IsNullOrWhiteSpace(model.createTime))
                {
                    exp.And(x => SqlSugar.SqlFunc.DateIsSame(DateTime.Parse(x.createTime), DateTime.Parse(model.createTime)));
                }
                if (model.sendStatus > -1)
                {
                    exp.And(x => x.sendStatus == model.sendStatus);
                }
                return exp.ToExpression();//拼接表达式
            }
            catch (Exception ex)
            {
                throw new Exception($"{ex.Message}");
            }
        }
    }
}