屠宰场客户端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
884 B

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; }
}
}