20 lines
		
	
	
		
			398 B
		
	
	
	
		
			C#
		
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			398 B
		
	
	
	
		
			C#
		
	
	
	
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;
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 |