You cannot 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
637 B
C#
28 lines
637 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
|
|
namespace DSWeb.Areas.MvcShipping.Models.Message.HCHX_DATA
|
|
{
|
|
/// <summary>
|
|
/// 期初库存报文
|
|
/// </summary>
|
|
public class HCHX_DATA
|
|
{
|
|
/// <summary>
|
|
/// 签名
|
|
/// </summary>
|
|
public TRANSMIT TRANSMIT { get; set; }
|
|
|
|
/// <summary>
|
|
/// 期初库存信息
|
|
/// </summary>
|
|
public List<STORE_INIT> STORE_INIT { get; set; }
|
|
|
|
// <summary>
|
|
/// 出入库信息信息
|
|
/// </summary>
|
|
public List<STORE_TRANS> STORE_TRANS { get; set; }
|
|
}
|
|
} |