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
583 B
28 lines
583 B
using System.Collections.Generic;
|
|
|
|
namespace Win_in.Sfs.Scp.WebApi.Asns;
|
|
|
|
/// <summary>
|
|
/// ASN X12 856-3060
|
|
/// 供应商发货单
|
|
/// </summary>
|
|
public class ASN_X12_856_3060
|
|
{
|
|
/// <summary>
|
|
/// Interchange Control Header
|
|
/// 报文头
|
|
/// </summary>
|
|
public ISA ISA { get; set; }
|
|
|
|
/// <summary>
|
|
/// Functional Group
|
|
/// 功能组列表
|
|
/// </summary>
|
|
public List<FunctionalGroup> SegmentGroups { get; set; }
|
|
|
|
/// <summary>
|
|
/// Interchange Control Trailer
|
|
/// 报文尾
|
|
/// </summary>
|
|
public ISE ISE { get; set; }
|
|
}
|