using iWare.Wms.Core.Util.LowCode.Dto;
using System;
namespace iWare.Wms.Application
{
///
/// 站点信息输出参数
///
public class WareSiteOutput
{
///
/// 站点名称
///
public string Name { get; set; }
///
/// 站点编码
///
public string Code { get; set; }
///
/// 描述
///
public string Describe { get; set; }
///
/// x坐标
///
public decimal Xcoordinate { get; set; }
///
/// y坐标
///
public decimal Ycoordinate { get; set; }
///
/// 站点类型
///
public int? SiteType { get; set; }
///
/// 状态
///
public iWare.Wms.Core.CommonStatus Status { get; set; }
///
/// 所属巷道
///
public int? Lane { get; set; }
///
/// 操作备注
///
public string OperationRemarks { get; set; }
///
/// 用户所属线别
///
public int? LineType { get; set; }
///
/// Id主键
///
public long Id { get; set; }
}
}