using Central.Control.WebApi.Enum; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Central.Control.WebApi.Service.Interface { /// /// 业务日志相关 /// public interface IYWLogService { /// /// 写入订单日志 /// /// /// /// /// void WriteOrderLog(string orderId, string title, string content, string opreater); /// /// 写入支付回写日志 /// /// 支付流水号 /// 外部订单号 /// 支付类型 /// 回写原始内容 void WritePayCallLog(string paySerialId, string outTradeNo, PayWayEnum payWay, string payResponse); /// /// 写入订单流程信息 /// /// /// /// /// /// void WriteOrderProcess(string orderId, string deviceId, OrderStatusEnum orderStatus, string message, string opreater); } }