StorageAreaDto.cs
395 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; }
}
}