HKC_Blazor/MasaBlazorApp3/Pojo/Vo/OperationVo.cs

38 lines
910 B
C#

using Radzen.Blazor;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MasaBlazorApp3.Pojo.Vo
{
public class OperationVo<T>
{
public DrugInfo Drug { get; set; }
public T data { get; set; }
public List<ChannelStock> ChannelStocks { 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;
public int ReturnQuantity { get; set; } = 0;
public RadzenDataGrid<ChannelStock> Grid { get; set; }
}
}