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

43 lines
670 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.bo;
import com.klp.common.core.domain.BaseEntity;
import lombok.Data;
import lombok.EqualsAndHashCode;
import javax.validation.constraints.*;
/**
* BOM 明细,存放属性–值业务对象 wms_bom_item
*
* @author Joshi
* @date 2025-07-29
*/
@Data
@EqualsAndHashCode(callSuper = true)
public class WmsBomItemBo extends BaseEntity {
private Long itemId;
/**
* 属性名称
*/
private String attrKey;
/**
* 属性值
*/
private String attrValue;
/**
* 是否启用0=否1=是)
*/
private Integer isEnabled;
/**
* 备注
*/
private String remark;
}