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.
29 lines
811 B
29 lines
811 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ICSSoft.Entity
|
|
{
|
|
public class HoldMaterialModel
|
|
{
|
|
public string TransCode { set; get; }
|
|
public string TransSequence { set; get; }
|
|
public string UserCode { set; get; }
|
|
public string UserName { set; get; }
|
|
public string MTime { set; get; }
|
|
public string WorkPoint { set; get; }
|
|
|
|
public List<HoldMaterialDetail> detail { set; get; }
|
|
}
|
|
|
|
public class HoldMaterialDetail
|
|
{
|
|
public string LotNo { set; get; }
|
|
public string InvCode { set; get; }
|
|
public string WarehouseCode { set; get; }
|
|
public string LocationCode { set; get; }
|
|
public string Quantity { set; get; }
|
|
}
|
|
}
|