New file |
| | |
| | | package com.example.erp.entity.pp; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import lombok.Data; |
| | | |
| | | import java.time.LocalDate; |
| | | @Data |
| | | public class BaseBom { |
| | | @TableId(type = IdType.AUTO) |
| | | //自增id |
| | | private Integer id; |
| | | //产品大类编号 |
| | | private String productCategoriesId; |
| | | //大类名称 |
| | | private String productCategories; |
| | | //基数 |
| | | private Integer base; |
| | | //物料编码 |
| | | private String materialId; |
| | | //物料名称 |
| | | private String materialName; |
| | | //主单位 |
| | | private String mainUnit; |
| | | //换算率 |
| | | private String conversion; |
| | | //副单位 |
| | | private String deputyUnit; |
| | | //数量 |
| | | private String number; |
| | | //工序 |
| | | private String process; |
| | | //产地 |
| | | private String producingArea; |
| | | //审核状态 |
| | | private Integer reviewStatus; |
| | | //创建人 |
| | | private String founder; |
| | | //审核人 |
| | | private String reviewer; |
| | | //使用状态 |
| | | private Integer state; |
| | | //建立时间 |
| | | private LocalDate createTime; |
| | | //修改时间 |
| | | private LocalDate updateTime; |
| | | |
| | | } |