| | |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | | import java.io.Serializable; |
| | | import java.math.BigDecimal; |
| | | import java.util.Date; |
| | | |
| | | /** |
| | |
| | | /**数量*/ |
| | | @Excel(name = "数量", width = 15) |
| | | @ApiModelProperty(value = "数量") |
| | | private Double quantity; |
| | | private BigDecimal quantity; |
| | | /**剩余数量*/ |
| | | @Excel(name = "剩余数量", width = 15) |
| | | @ApiModelProperty(value = "剩余数量") |
| | | private Double remainingQuantity; |
| | | private BigDecimal remainingQuantity; |
| | | @TableField(exist = false) |
| | | @ApiModelProperty(value = "工单号") |
| | | private String workOrderCode; |