| | |
| | | import com.ruoyi.stock.pojo.StockInventory; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import lombok.EqualsAndHashCode; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.time.LocalDate; |
| | | import java.time.LocalDateTime; |
| | | |
| | | @EqualsAndHashCode(callSuper = true) |
| | | @Data |
| | | public class StockInventoryDto extends StockInventory { |
| | | |
| | |
| | | |
| | | @ApiModelProperty("磅单文件路径") |
| | | private String weighbridgeDocPath; |
| | | |
| | | @ApiModelProperty("产品类型") |
| | | private Integer productType; |
| | | |
| | | @ApiModelProperty("现净重(吨)") |
| | | private BigDecimal currentWeight; |
| | | } |