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 MaterialOutboundDetail { |
| | | @TableId(type = IdType.AUTO) |
| | | |
| | | private Long id; |
| | | private Long inventoryId; |
| | | private String materialOutboundId; |
| | | private Long materialOutboundNumber; |
| | | private String inventoryOrganization; |
| | | private String materialName; |
| | | private String materialCode; |
| | | private Integer useId; |
| | | private String producer; |
| | | private Double width; |
| | | private Double height; |
| | | private Double thickness; |
| | | private String unit; |
| | | private Integer outboundQuantity; |
| | | private Double singlePieceArea; |
| | | private String inventoryArea; |
| | | private LocalDate dateOfManufacture; |
| | | private String remarks; |
| | | private MaterialInventory materialInventory; |
| | | private MaterialOutbound materialOutbound; |
| | | |
| | | |
| | | |
| | | |
| | | } |