using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Aucma.Core.SheetMetalTasks.Models
{
///
/// 前后板料仓型号
///
public class Bin
{
///
/// 料仓Id
///
public string? ProductId { get; set; }
///
/// 是否启用
///
public bool Status { get; set; }
}
}