1234567891011121314151617181920212223242526272829303132333435363738 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using Library;
- using MySystem.Models.Main;
- namespace MySystem
- {
- public class Utils
- {
- public readonly static Utils Instance = new Utils();
- private Utils()
- { }
- #region 推送激活数据信息
- public void SendActData(MerchantInfo pos, int actType = 3)
- {
-
-
-
-
-
-
-
-
-
-
-
- }
- #endregion
-
-
-
-
- }
- }
|