2025-08-27 08:38:00 +08:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
|
|
namespace MasaBlazorApp3.Pojo
|
|
|
|
|
|
{
|
|
|
|
|
|
public class BoxModel
|
|
|
|
|
|
{
|
2025-09-04 15:19:32 +08:00
|
|
|
|
//库位号
|
2025-08-27 08:38:00 +08:00
|
|
|
|
public int BoxNo { get; set; }
|
2025-09-04 15:19:32 +08:00
|
|
|
|
//药箱号
|
|
|
|
|
|
public int BoxName { get; set; }
|
|
|
|
|
|
public string 药箱号 { get; set; } = "药箱号";
|
2025-08-27 08:38:00 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|