| 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 FinishedGlassShelfLog { |
| | | @TableId(type = IdType.AUTO) |
| | | |
| | | private Long id; |
| | | private String documentId; |
| | | private Integer documentNumber; |
| | | private Integer type; |
| | | private String glassShelfName; |
| | | private String glassShelfNumber; |
| | | private Integer quantity; |
| | | private String unit; |
| | | private Double price; |
| | | private Double money; |
| | | private String remarks; |
| | | private Double maxWeight; |
| | | private Double maxWidth; |
| | | private Double maxHeight; |
| | | private LocalDate createTime; |
| | | private String operator; |
| | | |
| | | |
| | | |
| | | } |