You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
816 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Aucma.Core.Palletiz.Models
{
/// <summary>
/// 配置文件旋转角度规则--对象
/// </summary>
public class JumpRange
{
public int ObjId { get; set; }
/// <summary>
/// 最小型号
/// </summary>
public int MinModel { get; set; }
/// <summary>
/// 最大型号
/// </summary>
public int MaxModel { get; set; }
/// <summary>
/// 奇数货道旋转角度
/// </summary>
public int OddSpaceRange { get; set; }
/// <summary>
/// 偶数货道旋转角度
/// </summary>
public int EvenSpaceRange { get; set; }
}
}