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

47 lines
721 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
*
* @author Joshi
* @date 2025-07-29
*/
@Data
@EqualsAndHashCode(callSuper = true)
public class WmsBomBo extends BaseEntity {
/**
* BOM 主键ID
*/
private Long bomId;
/**
* BOM 编码(可选)
*/
private String bomCode;
/**
* BOM 名称(可选)
*/
private String bomName;
/**
* 是否启用0=否1=是)
*/
private Integer isEnabled;
/**
* 备注
*/
private String remark;
}