| | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.ruoyi.framework.aspectj.lang.annotation.Excel; |
| | | import com.ruoyi.production.pojo.ProductOrder; |
| | | import com.ruoyi.production.pojo.ProductWorkOrder; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.time.LocalDate; |
| | | import java.util.List; |
| | | |
| | | @Data |
| | | @ExcelIgnoreUnannotated |
| | |
| | | |
| | | @ApiModelProperty(value = "操作 1-开始 2-暂停") |
| | | private Integer operation; |
| | | |
| | | @ApiModelProperty(value = "生产任务") |
| | | private List<ProductWorkOrderDto> productWorkOrders; |
| | | } |