| | |
| | | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.example.erp.entity.sd.Order; |
| | | import com.example.erp.entity.sd.OrderDetail; |
| | | import lombok.Data; |
| | | |
| | | import java.time.LocalDate; |
| | |
| | | |
| | | private Long id; |
| | | private String operationOrderNumber; |
| | | private Long productNumber; |
| | | private String orderId; |
| | | private Integer operationNumber; |
| | | private Integer quantity; |
| | | private String operateType; |
| | | private String operator; |
| | | private LocalDate operateTime; |
| | | private String staterOperationOrderNumber; |
| | | private String endOperationOrderNumber;; |
| | | private String endOperationOrderNumber; |
| | | |
| | | private String status; |
| | | private Boolean isState; |
| | | private String reviewed; |
| | | private LocalDate reviewedTime; |
| | | private String type; |
| | | private String remarks; |
| | | private String processId; |
| | | |
| | | private OrderDetail orderDetail; |
| | | |
| | | private Order order; |
| | | |
| | | |
| | | } |