using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace LightSetupMd5 { /// /// 字符串格式化参数 /// @author 颜佐光 /// internal interface StringFormatHandle { /** * 对模板进行格式化处理 * * @param sb 返回得结果模板 * @param group 带{xxx}的全格式 * @param fieldFull 全格式 * @param field 字段 * @param command 字段格式化 */ void addPos(StringBuilder sb, string group, string fieldFull, string field, string command); } }