南骏 池
10 天以前 6dae2517aa69e7a81e87b8cc2bcb63f401fa77dd
util/LogUtil.cs
@@ -1,10 +1,11 @@
namespace NewPdaSqlServer.util
{
    using NewPdaSqlServer.DB;
    using NewPdaSqlServer.entity;
    using SqlSugar;
    using System;
    public class LogService
    public class LogService : RepositoryNoEntity
    {
        /// <summary>
        /// 创建日志记录
@@ -22,7 +23,7 @@
                .Select(it => it.Guid) //
                .First();
            detail = "[PDA]" + detail;
            //detail = "[PDA]" + detail;
            // 执行存储过程
            db.Ado.ExecuteCommand(
                "exec prc_log_create @edtUserGuid, @abtGuid, @abtTable, @detail, @orderNo",
@@ -36,5 +37,40 @@
                }
            );
        }
            public void CreateLogI(
        SqlSugarScope db,
        Guid edtUserGuid,
        string abtGuid,
        string abtTable,
        string detail,
        string orderNo,
        string sendJson,
        string rtnJson,
        string xkyBeginTime,
        string xkyEndTime,
        int sendStatus,
        string executeTime)
    {
            Db.Ado.ExecuteCommand(
            "exec prc_log_create @edtUserGuid, @abtGuid, @abtTable, @detail, @hNo,@RtnLogGuid, @SendJson, @RtnJson, @xkyBeginTime, @xkyEndTime, @sendStatus, @executeTime",
            new {
                edtUserGuid,
                abtGuid = string.IsNullOrEmpty(abtGuid) ? DBNull.Value : (object)abtGuid,
                abtTable = (object)abtTable ?? DBNull.Value,
                detail,
                hNo = orderNo,
                RtnLogGuid = DBNull.Value,
                SendJson = sendJson,
                RtnJson = rtnJson,
                xkyBeginTime = (object)xkyBeginTime ?? DBNull.Value,
                xkyEndTime = (object)xkyEndTime ?? DBNull.Value,
                sendStatus = (object)sendStatus ?? DBNull.Value,
                executeTime = (object)executeTime ?? DBNull.Value
            });
    }
    }
}