StorageLocationDto.cs 620 Bytes
using System;

namespace Rcs.Application.DTOs
{
    /// <summary>
    /// 库位DTO
    /// @author zzy
    /// </summary>
    public class StorageLocationDto
    {
        public string LocationId { get; set; }
        public string AreaId { get; set; }
        public string? MapNodeId { get; set; }
        public string LocationCode { get; set; }
        public string? LocationName { get; set; }
        public int Status { get; set; }
        public bool IsActive { get; set; }

        /// <summary>
        /// 所属库区
        /// </summary>
        public StorageAreaDto? StorageArea { get; set; }
    }
}