17 lines
448 B
C#
17 lines
448 B
C#
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>();
|
|
}
|
|
}
|