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
678 B
29 lines
678 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace ICSSoft.Entity
|
|
{
|
|
public class ICSManufactureOrder
|
|
{
|
|
public string MOCode;
|
|
public string User;
|
|
public DateTime MTime;
|
|
public string ID;
|
|
public List<ICSManufactureOrders> details = new List<ICSManufactureOrders>();
|
|
}
|
|
public class ICSManufactureOrders
|
|
{
|
|
|
|
public string Sequence;
|
|
public string InvCode;
|
|
public decimal Quantity;
|
|
public decimal Amount;
|
|
public string DepCode;
|
|
public string WHCode;
|
|
public DateTime StartDate;
|
|
public DateTime DueDate;
|
|
}
|
|
|
|
}
|