namespace JSMachine.WMS.Common.Dto.PLCDto
{
///
/// 机器配置
///
public class MachineConfig
{
///
/// 机型
///
public string MachineType { get; set; }
/// <幅宽>
/// 机型
///
public string MachineWidth { get; set; }
///
/// 印刷1部
///
public bool IsPrintPartOneEnable { get; set; }
///
/// 印刷2部
///
public bool IsPrintPartTwoEnable { get; set; }
///
/// 印刷3部
///
public bool IsPrintPartThreeEnable { get; set; }
///
/// 印刷4部
///
public bool IsPrintPartFourEnable { get; set; }
///
/// 印刷5部
///
public bool IsPrintPartFiveEnable { get; set; }
///
/// 印刷6部
///
public bool IsPrintPartSixEnable { get; set; }
///
/// 印刷7部
///
public bool IsPrintPartSevenEnable { get; set; }
///
/// 印刷8部
///
public bool IsPrintPartEightEnable { get; set; }
///
/// 输送1部
///
public bool IsConveyingPartOneEnable { get; set; }
///
/// 输送2部
///
public bool IsConveyingPartTwoEnable { get; set; }
///
/// 输送3部
///
public bool IsConveyingPartThreeEnable { get; set; }
///
/// 压线部
///
public bool IsPressLinePartEnable { get; set; }
///
/// 开槽部
///
public bool IsSlottedPartEnable { get; set; }
///
/// 模切部
///
public bool IsMoldCutPartEnable { get; set; }
///
/// 清费部
///
public bool IsClearancePartEnable { get; set; }
///
/// 沾箱机
///
public bool IsGlueBoxMachineEnable { get; set; }
///
/// 堆码机
///
public bool IsStackerEnable { get; set; }
///
/// 切角基准
///
public string ChamferDatum { get; set; }
///
/// 中线是否移动
///
public bool IsMidlineMove { get; set; }
///
/// 中刀是否移动
///
public bool IsMidlknifeMove { get; set; }
///
/// 粘箱机驱动侧是否喷胶
///
public bool IsGlueBoxMachineDrivenSideSprayGlue { get; set; }
///
/// 是否捷普瑞机型
///
public bool IsJPR { get; set; }
///
/// 是否捷福机型
///
public bool IsJF { get; set; }
///
/// 是否捷豹机型
///
public bool IsJB { get; set; }
///
/// 伺服送纸(1:为伺服送纸,0:为太阳送纸
///
public bool IsServoFeed { get; set; }
///
/// 单轴开槽(1:为单轴开槽,0:为双轴开槽)
///
public bool IsUniaxialSlot { get; set; }
}
}