提交当前本机整理版本

This commit is contained in:
cyf
2026-07-02 10:11:39 +00:00
parent c10a5d64c7
commit aacefa24f8
822 changed files with 196665 additions and 14263 deletions
+38 -1
View File
@@ -499,4 +499,41 @@ namespace Lskj.Model
return true;
}
return false;
}
}
}
/// <summary>
/// 页面水印层
/// </summary>
public Form WatermarkForm;
/// <summary>
/// 单据水印 草稿替换值
/// </summary>
public string DraftReplacementValue="";
/// <summary>
/// 是否有可翻译的文本
/// </summary>
public bool Translatable;
/// <summary>
/// 翻译文本存放字典
/// </summary>
public Dictionary<string, string> ContrastiveLanguage;
/// <summary>
/// 传入文本,获取对应语言的翻译文本
/// </summary>
/// <param name="text"></param>
/// <returns></returns>
public string GetTranslatedText(string text)
{
string value = text;
if (this.ContrastiveLanguage.ContainsKey(text))
{
value = this.ContrastiveLanguage[text];
}
return value;
}
}
}