using CommunityToolkit.Mvvm.ComponentModel;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Aucma.Core.Palletiz.Models
{
///
/// 货道模型
///
public class SpaceModel : ObservableObject
{
///
/// 货道编号
///
public string SpaceCode { get; set; }
///
/// 货道名称
///
public string? SpaceName { get; set; }
///
/// 仓库编号
///
public string? StoreCode { get; set; }
///
/// 产品编码
///
public string? MaterialType { get; set; }
///
/// 产品名称
///
public string? typeNameA { get; set; }
///
/// 转向角度
///
public int? RotationRange { get; set; }
///
/// 是否占两道
///
public int? IsTwoSpace { get; set; }
}
}