using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.DataDockingApi { public class SrcHelper { private const string _logName = "ZY-Src"; /// /// 生成 /// public static void Src(string responseText) { if (string.IsNullOrEmpty(responseText)) return; LogHelper.Custom(_logName, responseText); } } }