using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BO
|
|
{
|
|
public class DropDownSets
|
|
{
|
|
public static readonly string 车间 = "车间";
|
|
public static readonly string 单元 = "单元";
|
|
public static readonly string 批次 = "批次";
|
|
public static readonly string 仓库 = "仓库";
|
|
public DropDownSets()
|
|
{
|
|
Details = new List<DropDownSet>();
|
|
}
|
|
|
|
public List<DropDownSet> Details { get; set; }
|
|
}
|
|
|
|
public class DropDownSet
|
|
{
|
|
public DropDownSet()
|
|
{
|
|
Details = new List<DropDownSet_Detail>();
|
|
}
|
|
|
|
public string Name { get; set; }
|
|
public List<DropDownSet_Detail> Details { get; set; }
|
|
}
|
|
|
|
public class DropDownSet_Detail
|
|
{
|
|
public long ID { get; set; }
|
|
public string Name { get; set; }
|
|
public string Code { get; set; }
|
|
|
|
}
|
|
}
|