Compare commits

..

No commits in common. "8619d8ba2e74e0a46e1e8faefefe512ba9478c0b" and "959a2bf64255739ba1a35b0d2d19b913aa787f31" have entirely different histories.

View File

@ -752,17 +752,7 @@ namespace DH.Commons.Base
[Description("中处理-模型标签路径")]
public string In_lable_path
{
get
{
if (string.IsNullOrEmpty(ModelPath) || string.IsNullOrWhiteSpace(ModelPath))
{
return string.Empty;
}
string dir = Path.GetDirectoryName(ModelPath);
string file = $"{Path.GetFileNameWithoutExtension(ModelPath)}.txt";
return Path.Combine(dir, file);
}
get => _in_lable_path;
set
{
if (_in_lable_path == value) return;