提交当前本机整理版本

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
@@ -30,4 +30,35 @@ namespace Lskj.PubGroupSettings
main.Model = moduleModel;
this.SubForm = main;
}
catch (Excep
catch (Exception ex)
{
LogUtil.WriteError("Lskj.PubGroupSettings.dll--参数错误-->" + obj.ToString(), ex);
}
}
/// <summary>
/// 窗口
/// </summary>
public Form SubForm { get; set; }
}
public class DynamicGroupSettings : DynamicModel
{
public string FieldId { get; private set; }
public DynamicGroupSettings(string[] args) : base(args)
{
// 右键菜单打开的模块没有moduleId,部分特殊模块没有moduleId比如添加界面.
if (!string.IsNullOrEmpty(args[5]))
{
base.ModuleId = Convert.ToInt32(args[5]);
}
if (args.Length > 6 && !string.IsNullOrWhiteSpace(args[6]))
{
base.ModuleCode = args[6];
}
if (args.Length > 7 && !string.IsNullOrWhiteSpace(args[7]))
{
this.FieldId = args[7];
}
}
}
}