| | |
| | | package com.ruoyi.procurementrecord.dto; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import lombok.Data; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @author :yys |
| | |
| | | @Data |
| | | public class ProcurementUpdateDto { |
| | | |
| | | private String inboundDate; |
| | | |
| | | private Integer id; |
| | | |
| | | private BigDecimal warnNum; |
| | | |
| | | private BigDecimal quantityStock; |
| | | |
| | | private BigDecimal unitPrice; |
| | | |
| | | private BigDecimal totalPrice; |
| | | |
| | | private List<Integer> ids; |
| | | |
| | | /** |
| | | * 出库类型 1-采购 2-销售 3-自定义 |
| | | */ |
| | | private Integer type; |
| | | |
| | | } |