New file |
| | |
| | | package com.example.erp.entity.mm; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.example.erp.entity.sd.OrderDetail; |
| | | import lombok.Data; |
| | | |
| | | import java.time.LocalDate; |
| | | |
| | | @Data |
| | | public class FinishedOperateLog { |
| | | @TableId(type = IdType.AUTO) |
| | | |
| | | private Long id; |
| | | private String operationOrderNumber; |
| | | 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 status; |
| | | private Boolean isState; |
| | | private String reviewed; |
| | | private LocalDate reviewedTime; |
| | | private String type; |
| | | private String remarks; |
| | | private String processId; |
| | | |
| | | private OrderDetail orderDetail; |
| | | |
| | | |
| | | } |