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.
|
|
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks;
namespace ICSSoft.Entity { public class CartScheduleModel { /// <summary>
/// 车次编号
/// </summary>
public string CartNo { get; set; } /// <summary>
/// 站点
/// </summary>
public string WorkPoint { get; set; } /// <summary>
/// 用户
/// </summary>
public string User { get; set; } public List<CartScheduleDetailModel> detail { get; set; }
public class CartScheduleDetailModel { /// <summary>
/// 物料条码
/// </summary>
public string LotNo { set; get; } public string Quantity { set; get; } } } }
|