using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Admin.NET.Application
{
public class SrmCoordinate
{
///
///一号堆垛机的X轴坐标
///
public int? Srm1Coordinate { get; set; }
///
/// 二号堆垛机的X轴坐标
///
public int? Srm2Coordinate { get; set; }
}
}