using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SKMC.Api.Vision { /// /// 结果字符串解析接口 /// public interface IResultParser { /// /// 将结果字符串解析并注入到目标对象中 /// /// 目标对象 /// 结果字符串 /// void Parse(ref T t, string resultMsg); } }