22 lines
526 B
Java
22 lines
526 B
Java
package com.zioinfo.mro.materialbom;
|
|
|
|
import lombok.Data;
|
|
import java.time.LocalDateTime;
|
|
|
|
/**
|
|
* 자재 BOM (mro_material_bom) — 설비별 소요 부품/자재.
|
|
*/
|
|
@Data
|
|
public class MroMaterialBom {
|
|
private Long id;
|
|
private String equipmentCode;
|
|
private String materialCode;
|
|
private Double qtyPer;
|
|
private String unit;
|
|
private String position;
|
|
private String remark;
|
|
private String status; // ACTIVE / INACTIVE
|
|
private String createdBy;
|
|
private LocalDateTime createdAt;
|
|
}
|