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

54 lines
983 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_item
*
* @author Joshi
* @date 2025-07-29
*/
@Data
@EqualsAndHashCode(callSuper = true)
@TableName("wms_bom_item")
public class WmsBomItem extends BaseEntity {
private static final long serialVersionUID=1L;
/**
* BOM 明细ID
*/
@TableId(value = "item_id")
private Long itemId;
/**
* 关联 wms_bom.bom_id
*/
private Long bomId;
/**
* 属性名称
*/
private String attrKey;
/**
* 属性值
*/
private String attrValue;
/**
* 是否启用0=否1=是)
*/
private Integer isEnabled;
/**
* 删除标志0=正常1=删除)
*/
@TableLogic
private Integer delFlag;
/**
* 备注
*/
private String remark;
}