using iWareCommon.Utils; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace iWareCommon { public class SysHelper { /// /// 翻译 /// /// 0 中文 1英文 /// /// public static string Language(int languageFlg, string chinese, string english) { if (languageFlg == 0) return chinese; return english; } } }