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.
DS7/DSWeb/Areas/MvcShipping/Models/Message/HCHX_DATA/STORE_INIT.cs

28 lines
991 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 STORE_INIT
{
public string EMS_NO { get; set; }//电子账册号
public string COP_G_NO { get; set; }//料号
public string QTY { get; set; }//期初数量
public string UNIT { get; set; }//申报单位
public string CHECK_DATE { get; set; }//期初日期
public string GOODS_NATURE { get; set; }//料件性质
public string BOM_VERSION { get; set; }//BOM版本
public string DATA_TYPE { get; set; }//库存类型
public string WHS_CODE { get; set; }//库别
public string LOCATION_CODE { get; set; }//储位
public string NOTE { get; set; }//备注
public string NOTE_1 { get; set; }//备用代码1
public string NOTE_2 { get; set; }//备用代码2
}
}