HKC_Blazor/MasaBlazorApp3/DataAccess/ChannelStockWidthDrawerInfo.cs

17 lines
448 B
C#
Raw Permalink Normal View History

2025-05-20 11:17:07 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MasaBlazorApp3.DataAccess
{
public class ChannelStockWidthDrawerInfo<ChannelStock>
{
//抽屉信息(抽屉号,抽屉类型)
public List<Dictionary<int,int>> DrawerInfo { get; set; }
public List<ChannelStock> ChannelStocks { get; set; } = new List<ChannelStock>();
}
}