using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WIDESEA_DTO.Location
{
public class Location
{
///
/// 空位
///
public int Vacancy { get; set; }
///
/// 有货
///
public int Available { get; set; }
///
/// 空桶
///
public int Empty { get; set; }
}
}