From bd9b6a58beb6b478ad27d645aa1cc0da99c25d7d Mon Sep 17 00:00:00 2001 From: 青城 <1662047068@qq.com> Date: 星期三, 09 七月 2025 18:02:37 +0800 Subject: [PATCH] 协调审批 --- src/main/java/com/ruoyi/procurementrecord/dto/Details.java | 24 ++++++++++++++++++++++++ 1 files changed, 24 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/ruoyi/procurementrecord/dto/Details.java b/src/main/java/com/ruoyi/procurementrecord/dto/Details.java new file mode 100644 index 0000000..510b62d --- /dev/null +++ b/src/main/java/com/ruoyi/procurementrecord/dto/Details.java @@ -0,0 +1,24 @@ +package com.ruoyi.procurementrecord.dto; + +import java.math.BigDecimal; + +/** + * @author :yys + * @date : 2025/7/7 16:17 + */ +public class Details { + private Integer id; + private BigDecimal inboundQuantity; + public Integer getId() { + return id; + } + public void setId(Integer id) { + this.id = id; + } + public BigDecimal getInboundQuantity() { + return inboundQuantity; + } + public void setInboundQuantity(BigDecimal inboundQuantity) { + this.inboundQuantity = inboundQuantity; + } +} -- Gitblit v1.9.3