wangxinhui
3 小时以前 5cf8be1f30878aeb2af568f471949d0b9190036a
ÏîÄ¿´úÂë/WCSServices/WIDESEAWCS_Model/Models/BasicInfo/Dt_LocationInfo.cs
@@ -10,15 +10,14 @@
namespace WIDESEAWCS_Model.Models
{
    /// <summary>
    /// è´§ä½ä¿¡æ¯
    /// åº“位信息
    /// </summary>
    [SugarTable(nameof(Dt_LocationInfo), "货位信息")]
    [SugarTable(nameof(Dt_LocationInfo), "库位信息")]
    public class Dt_LocationInfo : BaseEntity
    {
        /// <summary>
        /// ä¸»é”®
        /// </summary>
        [ImporterHeader(Name = "主键")]
        [ExporterHeader(DisplayName = "主键")]
        [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")]
        public int Id { get; set; }
@@ -26,8 +25,7 @@
        /// <summary>
        /// åº“区编号
        /// </summary>
        [ImporterHeader(IsIgnore = true)]
        [ExporterHeader(IsIgnore = true)]
        [ExporterHeader(DisplayName = "库区编号")]
        [SugarColumn(IsNullable = false, ColumnDescription = "库区编号")]
        public int WarehouseId { get; set; }
@@ -98,23 +96,22 @@
        /// <summary>
        /// è´§ä½çŠ¶æ€
        /// </summary>
        [ImporterHeader(Name = "货位状态")]
        [ExporterHeader(DisplayName = "货位状态")]
        [ImporterHeader(Name = "货位状态(0:空闲;1:锁定;100:有货)")]
        [ExporterHeader(DisplayName = "货位状态(0:空闲;1:锁定;100:有货)")]
        [SugarColumn(IsNullable = true, DefaultValue = "0", ColumnDescription = "货位状态")]
        public int LocationStatus {  get; set; }
        /// <summary>
        /// ç¦ç”¨çŠ¶æ€
        /// </summary>
        [ImporterHeader(Name = "禁用状态")]
        [ExporterHeader(DisplayName = "禁用状态")]
        [ImporterHeader(Name = "禁用状态(0:正常;3:禁用)")]
        [ExporterHeader(DisplayName = "禁用状态(0:正常;3:禁用)")]
        [SugarColumn(IsNullable = true, DefaultValue = "0", ColumnDescription = "禁用状态")]
        public int EnableStatus { get; set; }
        /// <summary>
        /// å¤‡æ³¨
        /// </summary>
        [ImporterHeader(Name = "备注")]
        [ExporterHeader(DisplayName = "备注")]
        [SugarColumn(IsNullable = true, Length = 200, ColumnDescription = "备注")]
        public string Remark {  get; set; }