package com.example.erp.entity.mm; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableId; import lombok.Data; @Data public class FinishedGlassShelfWithdrawDetails { @TableId(type = IdType.AUTO) private Long id; private String withdrawId; private Integer withdrawNumber; private String glassShelfName; private Double maxWeight; private Double maxWidth; private Double maxHeight; private String emitId; private Integer emitNumber; private Integer quantity; private String unit; private Double price; private Double money; private String remarks; private FinishedGlassShelfWithdraw finishedGlassShelfWithdraw; private FinishedGlassShelfEmitDetails finishedGlassShelfEmitDetails; }