package com.example.erp.entity.mm; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableId; import com.example.erp.entity.sd.OrderDetail; import lombok.Data; import java.time.LocalDate; @Data public class MaterialLog { @TableId(type = IdType.AUTO) private Long id; private String operationOrderNumber; private String operateType; private Integer operationNumber; private Long inventoryId; private Long materialCode; private String materialName; private String producer; private String unit; private Double width; private Double height; private Double thickness; private Integer quantity; private Double singlePieceArea; private String inventoryArea; private String remarks; private String operator; private LocalDate operateTime; }