You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
606 B

using System.Collections.Generic;
namespace Win_in.Sfs.Scp.WebApi.Asns;
public class HL_T:HL
{
/// <summary>
/// label serial number
/// 器具标签号
/// </summary>
public REF REF_LS { get; set; }
/// <summary>
/// HIERARCHICAL LEVEL (ITEM)
/// 单箱列表
/// </summary>
public List<HL_I> HL_Is { get; set; }
/// <summary>
///
/// </summary>
/// <param name="code">层级代码</param>
/// <param name="parentCode">父级代码</param>
public HL_T(string code,string parentCode) : base(LevelType.T,code,parentCode)
{
}
}