using System;
using System.Collections.Generic;
using System.Text;
namespace wms.dto.request.fj
{
public class SyncMachineInfoRequest
{
///
/// 绕向
///
public string VehicleDirection { get; set; }
///
/// 机器类型
///
public string MachineTypeCode { get; set; }
///
/// 机台状态
///
public string MachineStatus { get; set; }
///
/// 机台名称
///
public string MachineName { get; set; }
///
/// 机台编码
///
public string MachineCode { get; set; }
///
/// 创建时间
///
public string CreateTime { get; set; }
///
///
///
public string WholeBackLogCode { get; set; }
///
/// 产线
///
public string LineCode { get; set; }
///
/// 机器类型名称
///
public string MachineTypeName { get; set; }
///
///
///
public string InputCode { get; set; }
///
/// 产线名称
///
public string LineName { get; set; }
}
}