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 SurplusMaterialsLog { |
| | | @TableId(type = IdType.AUTO) |
| | | |
| | | private Long id; |
| | | private Double width; |
| | | private Double height; |
| | | private Double thickness; |
| | | private Integer quantity; |
| | | private String colour; |
| | | private String type; |
| | | private String projectNo; |
| | | private String creator; |
| | | private String remarks; |
| | | private LocalDate createTime; |
| | | |
| | | |
| | | |
| | | } |