wangxinhui
2026-01-12 ded9c653b4bd5f45cb23124068687135c29e6915
ÏîÄ¿´úÂë/WCS/WCSServices/WIDESEAWCS_Model/Models/PackInfo/Dt_Packaxis.cs
@@ -6,9 +6,9 @@
using System.Threading.Tasks;
using WIDESEAWCS_Core.DB.Models;
namespace WIDESEAWCS_Model.Models.PackInfo
namespace WIDESEAWCS_Model.Models
{
    [SugarTable(nameof(Dt_Packaxis), "码垛坐标")]
    [SugarTable(nameof(Dt_Packaxis), "码垛坐标表")]
    public class Dt_Packaxis : BaseEntity
    {
        /// <summary>
@@ -27,72 +27,78 @@
        /// ç«™å°ç¼–号
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "站台编号")]
        public int StationCode { get; set; }
        public string StationCode { get; set; }
        /// <summary>
        /// åž›åž‹
        /// </summary>
        [SugarColumn(IsNullable = false, Length = 200, ColumnDescription = "垛型")]
        public string PackType { get; set; }
        [SugarColumn(IsNullable = false, ColumnDescription = "垛型")]
        public int PackType { get; set; }
        /// <summary>
        /// ç åž›æ•°é‡
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "码垛数量")]
        [SugarColumn(IsNullable = true, ColumnDescription = "码垛数量")]
        public int PackNum { get; set; }
        /// <summary>
        /// X坐标
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "X坐标")]
        [SugarColumn(IsNullable = true, ColumnDescription = "X坐标")]
        public int AxisX { get; set; }
        /// <summary>
        /// X坐标个数
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "X坐标个数")]
        [SugarColumn(IsNullable = true, ColumnDescription = "X坐标个数")]
        public int AxisXCount { get; set; }
        /// <summary>
        /// X坐标间距
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "X坐标间距")]
        [SugarColumn(IsNullable = true, ColumnDescription = "X坐标间距")]
        public int AxisXSpacing { get; set; }
        /// <summary>
        /// Y坐标
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "Y坐标")]
        [SugarColumn(IsNullable = true, ColumnDescription = "Y坐标")]
        public int AxisY { get; set; }
        /// <summary>
        /// Y坐标个数
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "Y坐标个数")]
        [SugarColumn(IsNullable = true, ColumnDescription = "Y坐标个数")]
        public int AxisYCount { get; set; }
        /// <summary>
        /// Y坐标间距
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "Y坐标间距")]
        [SugarColumn(IsNullable = true, ColumnDescription = "Y坐标间距")]
        public int AxisYSpacing { get; set; }
        /// <summary>
        /// Z坐标
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "Z坐标")]
        [SugarColumn(IsNullable = true, ColumnDescription = "Z坐标")]
        public int AxisZ { get; set; }
        /// <summary>
        /// Z坐标个数
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "Z坐标个数")]
        [SugarColumn(IsNullable = true, ColumnDescription = "Z坐标个数")]
        public int AxisZCount { get; set; }
        /// <summary>
        /// Z坐标间距
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "Z坐标间距")]
        [SugarColumn(IsNullable = true,  ColumnDescription = "Z坐标间距")]
        public int AxisZSpacing { get; set; }
        /// <summary>
        /// å¤‡æ³¨
        /// </summary>
        [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "备注")]
        public string Remark { get; set; }
    }
}