namespace Admin.NET.Application;
///
/// 仓库表输出参数
///
public class WmsWarehouseOutput
{
///
/// 主键Id
///
public long Id { get; set; }
///
/// 仓库编号
///
public string Code { get; set; }
///
/// 仓库名称
///
public string Name { get; set; }
///
/// 仓库地址
///
public string? Address { get; set; }
///
/// 所属工厂
///
public string FactoryCode { get; set; }
///
/// 工厂ID
///
public long FactoryId { get; set; }
///
/// 工厂名称
///
public string? FactoryName { get; set; }
///
/// 长
///
public decimal? Length { get; set; }
///
/// 宽
///
public decimal? Width { get; set; }
///
/// 高
///
public decimal? Height { get; set; }
///
/// 基本单元
///
public string? BaseUnit { get; set; }
///
/// 定位
///
public string? Position { get; set; }
///
/// 是否禁用
///
public bool IsDisabled { get; set; }
///
/// 备注
///
public string? Remarks { get; set; }
///
/// 创建时间
///
public DateTime? CreateTime { get; set; }
///
/// 修改时间
///
public DateTime? UpdateTime { get; set; }
///
/// 创建人Id
///
public long? CreateUserId { get; set; }
///
/// 创建人
///
public string? CreateUserName { get; set; }
///
/// 修改人Id
///
public long? UpdateUserId { get; set; }
///
/// 修改人
///
public string? UpdateUserName { get; set; }
///
/// 软删除
///
public bool IsDelete { get; set; }
}