廖井涛
4 天以前 cf4b24b7757bc76bb9c01fe936140073cb150711
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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;
 
}