You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
764 B
32 lines
764 B
9 months ago
|
using System;
|
||
|
using System.Text;
|
||
|
using System.IO;
|
||
|
using System.Net;
|
||
|
using System.Data;
|
||
|
|
||
|
namespace FangYar.FYMQTT
|
||
|
{
|
||
|
public class MessageLog
|
||
|
{
|
||
|
|
||
|
/// <summary>
|
||
|
/// 消息日志添加
|
||
|
/// </summary>
|
||
|
/// <param name="model">消息日志对象</param>
|
||
|
/// <returns></returns>
|
||
|
public bool MessageLogAdd(FangYar.Model.TBL.TBL_MESSAGE_LOG model)
|
||
|
{
|
||
|
try
|
||
|
{
|
||
|
FangYar.OracleDAL.TBL.SysMessageLogDAL sysMessageLogDAL = new FangYar.OracleDAL.TBL.SysMessageLogDAL ();
|
||
|
return true;
|
||
|
//return sysMessageLogDAL.AddLog(model);
|
||
|
}
|
||
|
catch (Exception e)
|
||
|
{
|
||
|
return false;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|