StorageAreaDto.cs
600 Bytes
using System;
namespace Rcs.Application.DTOs
{
/// <summary>
/// 库区DTO
/// @author zzy
/// </summary>
public class StorageAreaDto
{
public string AreaId { get; set; }
public string AreaCode { get; set; }
public string? AreaName { get; set; }
public string? Description { get; set; }
public bool IsActive { get; set; }
/// <summary>
/// 关联储位集合
/// @author zzy
/// </summary>
public List<StorageLocationDto> StorageLocations { get; set; } = new List<StorageLocationDto>();
}
}