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.
33 lines
804 B
33 lines
804 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace ICSSoft.Entity
|
|
{
|
|
/// <summary>
|
|
/// 获取源头单据信息
|
|
/// </summary>
|
|
public class WMSSourceDocumentModel
|
|
{
|
|
/// <summary>
|
|
/// 源头单号
|
|
/// </summary>
|
|
public string TransCode { get; set; }
|
|
/// <summary>
|
|
/// 单据类型(数据库名称中文)
|
|
/// </summary>
|
|
public string TransType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 站点
|
|
/// </summary>
|
|
public string WorkPoint { get; set; }
|
|
//public enum Type
|
|
//{
|
|
// ICSASNDetail = 0,//送货单子表
|
|
// ICSOASNDetail = 1,//委外送货单子表
|
|
// ICSTransfer = 2//调拨单
|
|
//}
|
|
}
|
|
}
|