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_TRANS.cs

48 lines
1.6 KiB
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_TRANS
{
public string EMS_NO { get; set; }//电子账册号
public string IO_NO { get; set; }//出入库单号
public string GOODS_NATURE { get; set; }//料件性质
public string IO_DATE { get; set; }//出库入库日期
public string COP_G_NO { get; set; }//料号
public string QTY { get; set; }//数量
public string UNIT { get; set; }//申报单位
/// <summary>
/// 进出库类型
///I0001非报关进区入库
///I0002 报关进区入库
///I0003 其它入库
///E0001非报关出区出库
///E0002 报关出区出库
///E0003其它出库
/// </summary>
public string TYPE { get; set; }
/// <summary>
/// 合格类型(良品/不良品)01良品、02不良品
/// </summary>
public string CHK_CODE { get; set; }
public string ENTRY_ID { get; set; }//报关单号
/// <summary>
/// 申请单号(非报关/报关)
/// 如果是非报关出入库,申请单号必填
/// </summary>
public string GATEJOB_NO { 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
}
}