基线 SVN r240
SVN-Revision: r240
This commit is contained in:
@@ -0,0 +1,48 @@
|
||||
/******************************
|
||||
* 说明:PubSpec 模块
|
||||
* 创建人:龚宇超
|
||||
* 创建日期:2018-01-02
|
||||
* 修改人:
|
||||
* 修改日期:
|
||||
* 修改备注:
|
||||
* 版本:1.0.0.0
|
||||
******************************/
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using Lskj.Util;
|
||||
using Lskj.Model;
|
||||
using Lskj.Business;
|
||||
using System.Windows.Forms;
|
||||
|
||||
namespace Lskj.PubSpec
|
||||
{
|
||||
/// <summary>
|
||||
/// PubSpec 模块
|
||||
/// </summary>
|
||||
public class DllBaseClass : IForm
|
||||
{
|
||||
public DllBaseClass()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public DllBaseClass(string[] obj)
|
||||
{
|
||||
try
|
||||
{
|
||||
FrmMain main = new FrmMain();
|
||||
this.SubForm = main;
|
||||
|
||||
main.Model = new DynamicSpecModel(obj);
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
LogUtil.WriteError("Lskj.PubSpec.dll--参数错误-->" + obj.ToString(), ex);
|
||||
}
|
||||
}
|
||||
|
||||
public Form SubForm { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user