23 lines
619 B
C#
23 lines
619 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace Face.Domain.ViewModels
|
|||
|
|
{
|
|||
|
|
public class VM_OrderInternalDetails
|
|||
|
|
{
|
|||
|
|
public int ID { get; set; }
|
|||
|
|
public int OrderID { get; set; }
|
|||
|
|
public string InternalNo { get; set; }
|
|||
|
|
public System.DateTime CreateTime { get; set; }
|
|||
|
|
public int ObjectiveYield { get; set; }
|
|||
|
|
public int ObjectiveYieldTotal { get; set; }
|
|||
|
|
|
|||
|
|
public List<Entities.TBL_Orders> OrdersList { get; set; }
|
|||
|
|
|
|||
|
|
public VM_OrderInfoOnMO OrderInfoOnMO { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|