You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
492 B
C#
24 lines
492 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Aucma.Core.SheetMetalTasks.Models
|
|
{
|
|
/// <summary>
|
|
/// 前后板料仓型号
|
|
/// </summary>
|
|
public class Bin
|
|
{
|
|
/// <summary>
|
|
/// 料仓Id
|
|
/// </summary>
|
|
public string? ProductId { get; set; }
|
|
/// <summary>
|
|
/// 是否启用
|
|
/// </summary>
|
|
public bool Status { get; set; }
|
|
}
|
|
}
|