using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WIDESEAWCS_Core.DB.Models;
namespace WIDESEAWCS_Model.Models.PackInfo
{
[SugarTable(nameof(Dt_Packaxis), "码垛坐标")]
public class Dt_Packaxis : BaseEntity
{
///
/// 主键
///
[SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")]
public int id { get; set; }
///
/// 设备编号
///
[SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "设备编号")]
public string DeviceCode { get; set; }
///
/// 站台编号
///
[SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "站台编号")]
public int StationCode { get; set; }
///
/// 垛型
///
[SugarColumn(IsNullable = false, Length = 200, ColumnDescription = "垛型")]
public string PackType { get; set; }
///
/// 码垛数量
///
[SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "码垛数量")]
public int PackNum { get; set; }
///
/// X坐标
///
[SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "X坐标")]
public int AxisX { get; set; }
///
/// X坐标个数
///
[SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "X坐标个数")]
public int AxisXCount { get; set; }
///
/// X坐标间距
///
[SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "X坐标间距")]
public int AxisXSpacing { get; set; }
///
/// Y坐标
///
[SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "Y坐标")]
public int AxisY { get; set; }
///
/// Y坐标个数
///
[SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "Y坐标个数")]
public int AxisYCount { get; set; }
///
/// Y坐标间距
///
[SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "Y坐标间距")]
public int AxisYSpacing { get; set; }
///
/// Z坐标
///
[SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "Z坐标")]
public int AxisZ { get; set; }
///
/// Z坐标个数
///
[SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "Z坐标个数")]
public int AxisZCount { get; set; }
///
/// Z坐标间距
///
[SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "Z坐标间距")]
public int AxisZSpacing { get; set; }
}
}