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