using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace JSMachine.PrintACS.Common.Dto.PLCDto.Adjustment { /// /// 间隙挡板 /// public class GapBaffle { /// /// 送纸部 /// public PaperFeedPartGap PaperFeedPartGap { get; set; } /// /// 压线部 /// public PressLinePart PressLinePart { get; set; } /// /// 开槽部 /// public SlottedPart SlottedPart { get; set; } /// /// 横切部 /// public CrossCutPart CrossCutPart { get; set; } /// /// 清费部 /// public ClearancePart ClearancePart { get; set; } /// /// 压印间隙 /// public EmbossingGap EmbossingGap { get; set; } /// /// 着印间隙 /// public ImprintGap ImprintGap { get; set; } /// /// 挡板 /// public Baffle Baffle { get; set; } } /// /// 送纸部 /// public class PaperFeedPartGap { public float FrontBezel { get; set; } /// /// 前输纸间隙 /// public float FrontFeedPaper { get; set; } /// /// 后输纸间隙 /// public float BackFeedPaper { get; set; } } /// /// 压线部 /// public class PressLinePart { public float Preload { get; set; } public float SecondaryPress { get; set; } public float Line { get; set; } public float BackFeedPaper { get; set; } } /// /// 开槽部 /// public class SlottedPart { public float BoxHeightKnife { get; set; } public float FrontFeedPaper { get; set; } public float BoxCoverKnife { get; set; } public float BackFeedPaper { get; set; } } /// /// 横切部 /// public class CrossCutPart { public float CrossCut { get; set; } } /// /// 清费部 /// public class ClearancePart { /// /// 前输纸 /// public float FrontFeedPaper { get; set; } /// /// 后输纸 /// public float BackFeedPaper { get; set; } } /// /// 压印间隙 /// public class EmbossingGap { /// /// 印刷1部 /// public float PrintPartOne { get; set; } /// /// 印刷2部 /// public float PrintPartTwo { get; set; } /// /// 印刷3部 /// public float PrintPartThree { get; set; } /// /// 印刷4部 /// public float PrintPartFour { get; set; } /// /// 印刷5部 /// public float PrintPartFive { get; set; } /// /// 印刷6部 /// public float PrintPartSix { get; set; } /// /// 印刷7部 /// public float PrintPartSeven { get; set; } } /// /// 着印间隙 /// public class ImprintGap { /// /// 印刷1部 /// public float PrintPartOne { get; set; } /// /// 印刷2部 /// public float PrintPartTwo { get; set; } /// /// 印刷3部 /// public float PrintPartThree { get; set; } /// /// 印刷4部 /// public float PrintPartFour { get; set; } /// /// 印刷5部 /// public float PrintPartFive { get; set; } /// /// 印刷6部 /// public float PrintPartSix { get; set; } /// /// 印刷7部 /// public float PrintPartSeven { get; set; } } /// /// 挡板 /// public class Baffle { /// /// 左挡板 /// public float LeftBaffle { get; set; } /// /// 右挡板 /// public float RightBaffle { get; set; } /// /// 后挡板 /// public float BackBaffle { get; set; } } }