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.
38 lines
843 B
38 lines
843 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ICSSoft.Entity.Dispatchlist
|
|
{
|
|
public class Dispatchlist
|
|
{
|
|
/// <summary>
|
|
/// 销售发货单主键ID
|
|
/// </summary>
|
|
public string DLID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 用户编号
|
|
/// </summary>
|
|
public string UserCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 仓库编号
|
|
/// </summary>
|
|
public string cWhCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 是否退货
|
|
/// </summary>
|
|
public string IsReturn { get; set; }
|
|
|
|
/// <summary>
|
|
/// 发货单号
|
|
/// </summary>
|
|
public string cDLCode { get; set; }
|
|
|
|
public List<Dispatchlists> list { get; set; }
|
|
}
|
|
}
|