SiChuanShengErZhong8/MasaBlazorApp3/Pojo/BoxModel.cs

20 lines
398 B
C#
Raw Normal View History

2025-10-11 17:27:12 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MasaBlazorApp3.Pojo
{
public class BoxModel
{
//库位号
public int BoxNo { get; set; }
//药箱号
public int BoxName { get; set; }
public string {
get => BoxName + "-" + BoxNo;
}
}
}