廖井涛
5 天以前 cf4b24b7757bc76bb9c01fe936140073cb150711
north-glass-erp/src/main/java/com/example/erp/entity/sd/BomBase.java
New file
@@ -0,0 +1,24 @@
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;
}