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.
41 lines
958 B
41 lines
958 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ICSSoft.Entity.Dispatchlist
|
|
{
|
|
public class Dispatchlists
|
|
{
|
|
/// <summary>
|
|
/// 销售发货单表体主键ID
|
|
/// </summary>
|
|
public string iDLsID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 物料编号
|
|
/// </summary>
|
|
public string cInvCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 数量
|
|
/// </summary>
|
|
public decimal iQuantity { get; set; }
|
|
|
|
public decimal iNum { get; set; }
|
|
|
|
/// <summary>
|
|
/// 批次
|
|
/// </summary>
|
|
public string cBatch { get; set; }
|
|
/// <summary>
|
|
/// 客户零件号
|
|
/// </summary>
|
|
public string cBatchProperty7 { get; set; }
|
|
/// <summary>
|
|
/// 工程号
|
|
/// </summary>
|
|
public string cBatchProperty6 { get; set; }
|
|
}
|
|
}
|