chenlu
9 天以前 97fba4a0e38c0b8455d43d2935aa996676407361
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;
}