tijian_jichuang/Code/SOH.Kernel/JianYan/JianYanAttribute.cs
2025-02-20 11:54:48 +08:00

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; }
}
}