33 lines
771 B
C#
33 lines
771 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MasaBlazorApp3.Pojo.Vo
|
|
{
|
|
public class OrderTakeVo
|
|
{
|
|
public DrugInfo Drug { get; set; }
|
|
|
|
public OrderDetail OrderDetail { get; set; }
|
|
|
|
public ChannelStock ChannelStock { get; set; }
|
|
|
|
public int StockQuantity { get; set; }
|
|
|
|
public int Quantity { get; set;}
|
|
|
|
public int GetQuantity { get; set; } = 0;
|
|
|
|
public int Status { get; set; } = 0;
|
|
|
|
public int[] BeforeQuantity { get; set; } = new int[] { 0,0,0,0,0,0,0,0,0 };
|
|
|
|
public int[] AfterQuantity { get; set; } = new int[] { 0, 0, 0, 0, 0, 0, 0, 0, 0 };
|
|
|
|
public int AddQuantity { get; set; } = 0;
|
|
|
|
}
|
|
}
|