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