雷神教育集团
2026-03-06 75c4ed0d3c640e66bc95dc170de52b753629e3ed
ÏîÄ¿´úÂë/WCS/WCSServices/WIDESEAWCS_Model/Models/PackInfo/Dt_Packaxis.cs
@@ -6,16 +6,20 @@
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>
        /// ä¸»é”®
        /// </summary>
        [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")]
<<<<<<< HEAD
        public int id { get; set; }
=======
        public int Id { get; set; }
>>>>>>> main
        /// <summary>
        /// è®¾å¤‡ç¼–号
@@ -27,72 +31,86 @@
        /// ç«™å°ç¼–号
        /// </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 = "码垛数量")]
<<<<<<< HEAD
        public int PackNum { get; set; }
=======
        public int PackNum { get; set; } = 0;
>>>>>>> main
        /// <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>
<<<<<<< HEAD
        [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "备注")]
=======
        [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "备注")]
>>>>>>> main
        public string Remark { get; set; }
    }
}