| New file |
| | |
| | | package com.example.erp.entity.sd; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import lombok.Data; |
| | | import org.apache.poi.hpsf.Decimal; |
| | | |
| | | import java.time.LocalDate; |
| | | |
| | | @Data |
| | | @TableName("sd.bom_base") |
| | | public class BomBase { |
| | | @TableId(type = IdType.AUTO) |
| | | private Integer id; |
| | | private Integer materialId; |
| | | private String material; |
| | | private Integer status; |
| | | private Integer type; |
| | | private Decimal price; |
| | | private Double consume; |
| | | private LocalDate createTime; |
| | | |
| | | } |