Files
klp-oa/klp-wms/src/main/java/com/klp/domain/WmsBom.java

50 lines
922 B
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package com.klp.domain;
import com.baomidou.mybatisplus.annotation.*;
import com.klp.common.core.domain.BaseEntity;
import lombok.Data;
import lombok.EqualsAndHashCode;
/**
* BOM 头,关联产品或原材料对象 wms_bom
*
* @author Joshi
* @date 2025-07-29
*/
@Data
@EqualsAndHashCode(callSuper = true)
@TableName("wms_bom")
public class WmsBom extends BaseEntity {
private static final long serialVersionUID=1L;
/**
* BOM 主键ID
*/
@TableId(value = "bom_id")
private Long bomId;
/**
* BOM 编码(可选)
*/
private String bomCode;
/**
* BOM 名称(可选)
*/
private String bomName;
/**
* 是否启用0=否1=是)
*/
private Integer isEnabled;
/**
* 删除标志0=正常1=删除)
*/
@TableLogic
private Integer delFlag;
/**
* 备注
*/
private String remark;
}