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
|
{
|
/// <summary>
|
/// 主键
|
/// </summary>
|
[SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")]
|
public int id { get; set; }
|
|
/// <summary>
|
/// 设备编号
|
/// </summary>
|
[SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "设备编号")]
|
public string DeviceCode { get; set; }
|
|
/// <summary>
|
/// 站台编号
|
/// </summary>
|
[SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "站台编号")]
|
public int StationCode { get; set; }
|
|
/// <summary>
|
/// 垛型
|
/// </summary>
|
[SugarColumn(IsNullable = false, Length = 200, ColumnDescription = "垛型")]
|
public string PackType { get; set; }
|
|
/// <summary>
|
/// 码垛数量
|
/// </summary>
|
[SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "码垛数量")]
|
public int PackNum { get; set; }
|
|
/// <summary>
|
/// X坐标
|
/// </summary>
|
[SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "X坐标")]
|
public int AxisX { get; set; }
|
|
/// <summary>
|
/// X坐标个数
|
/// </summary>
|
[SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "X坐标个数")]
|
public int AxisXCount { get; set; }
|
|
/// <summary>
|
/// X坐标间距
|
/// </summary>
|
[SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "X坐标间距")]
|
public int AxisXSpacing { get; set; }
|
|
/// <summary>
|
/// Y坐标
|
/// </summary>
|
[SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "Y坐标")]
|
public int AxisY { get; set; }
|
|
/// <summary>
|
/// Y坐标个数
|
/// </summary>
|
[SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "Y坐标个数")]
|
public int AxisYCount { get; set; }
|
|
/// <summary>
|
/// Y坐标间距
|
/// </summary>
|
[SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "Y坐标间距")]
|
public int AxisYSpacing { get; set; }
|
|
/// <summary>
|
/// Z坐标
|
/// </summary>
|
[SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "Z坐标")]
|
public int AxisZ { get; set; }
|
|
/// <summary>
|
/// Z坐标个数
|
/// </summary>
|
[SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "Z坐标个数")]
|
public int AxisZCount { get; set; }
|
|
/// <summary>
|
/// Z坐标间距
|
/// </summary>
|
[SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "Z坐标间距")]
|
public int AxisZSpacing { get; set; }
|
}
|
}
|