package com.ruoyi.production.dto; import lombok.AllArgsConstructor; import lombok.Data; import lombok.NoArgsConstructor; import java.io.Serializable; /** * 制版DTO * @author buhuazhen * @date 2026/4/22 * @email 3038525872@qq.com */ @Data @AllArgsConstructor @NoArgsConstructor public class PlateMakingDto implements Serializable { private String designProductionFee; // 设计制作费 private String impositionFee; // 拼版费 private String filmOutputFee; // 出片费 private String proofingFee; // 打样费 private String doctorBladePlateFee; // 刮刀版费 private String hotEmbossingPlateFee; // 烫/凸版费 private String subtotalFee; // 小计 }