New file |
| | |
| | | package com.example.erp.entity.mm; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import lombok.Data; |
| | | |
| | | import java.time.LocalDate; |
| | | |
| | | @Data |
| | | public class MaterialOutbound { |
| | | @TableId(type = IdType.AUTO) |
| | | |
| | | private Long id; |
| | | private String materialOutboundId; |
| | | private String materialRequisitionPersonnel; |
| | | private String materialRequisitionTeam; |
| | | private String orderId; |
| | | private String outboundType; |
| | | private String warehouseManager; |
| | | private LocalDate materialRequisitionDate; |
| | | private String reviewed; |
| | | private LocalDate reviewedTime; |
| | | private Integer reviewedState; |
| | | private LocalDate createTime; |
| | | |
| | | |
| | | |
| | | } |