using Bozhon.Wms.Entity.Converter;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Text;
namespace Wms.Screen.Dto.ZhongTian.Response
{
///
/// 巷道出入设置
///
public class TunnelConfigDto
{
///
/// 主键
///
[Description("主键")]
[JsonConverter(typeof(IdConverter))]
public long Id { get; set; }
///
/// 仓库名称
///
[Description("仓库代码")]
public string WarehouseCode { get; set; }
///
/// 仓库名称
///
[Description("仓库名称")]
public string WarehouseName { get; set; }
///
/// 巷道
///
[Description("巷道")]
public string Tunnel { get; set; }
///
/// 入库状态 启用 禁用
///
[Description("入库状态")]
public string InStates { get; set; }
///
/// 入库状态 1-启用 0-禁用
///
[Description("入库状态")]
public int InState { get; set; }
///
/// 出库状态 1-启用 0-禁用
///
[Description("出库状态")]
public int OutState { get; set; }
///
/// 出库状态 启用 禁用
///
[Description("出库状态")]
public string OutStates { get; set; }
}
///
/// 巷道配置信息
///
public class TunnelConfigEntity
{
///
/// 主键
///
[Description("主键")]
[JsonConverter(typeof(IdConverter))]
public long Id { get; set; }
///
/// 仓库代码
///
public string WarehouseCode { get; set; }
///
/// 仓库名称
///
public string WarehouseName { get; set; }
///
/// 巷道
///
public string Tunnels { get; set; }
///
/// 关联的配置代码
///
public string ConfigCode { get; set; }
///
/// 关联的配置名称
///
public string ConfigName { get; set; }
///
/// 关联的配置类型
///
public string ConfigType { get; set; }
///
/// 禁用列表
///
public string ConfigContents { get; set; }
}
public class TunnelCountTemp
{
public string Tunnel { get; set; }
public int Count { get; set; }
}
}