package com.ruoyi.procurementrecord.dto;
|
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
import java.util.List;
|
|
/**
|
* @author :yys
|
* @date : 2025/7/8 10:40
|
*/
|
@Data
|
public class ProcurementUpdateDto {
|
|
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;
|
|
}
|