using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace SOH.JianYan { [AttributeUsage(AttributeTargets.Assembly, AllowMultiple = false)] public class JianYanAttribute : Attribute { /// /// 仪器编号 /// public string YQ { get; set; } /// /// 仪器公共程序集 /// public string YQType { get; set; } /// /// 仪器名称 /// public string YQMC { get; set; } /// /// 仪器大类 /// public int YQDL { get; set; } } }