12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- 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);
- }
- }
|