修改bug关于bom_id
This commit is contained in:
@@ -37,6 +37,10 @@ public class WmsBomItemBo extends BaseEntity {
|
||||
* 备注
|
||||
*/
|
||||
private String remark;
|
||||
/**
|
||||
* BOM ID
|
||||
*/
|
||||
private Long bomId;
|
||||
|
||||
|
||||
}
|
||||
|
||||
@@ -43,6 +43,11 @@ public class WmsBomItemVo {
|
||||
*/
|
||||
@ExcelProperty(value = "备注")
|
||||
private String remark;
|
||||
/**
|
||||
* BOM ID
|
||||
*/
|
||||
@ExcelProperty(value = "BOM ID")
|
||||
private Long bomId;
|
||||
|
||||
|
||||
}
|
||||
|
||||
@@ -64,6 +64,7 @@ public class WmsBomItemServiceImpl implements IWmsBomItemService {
|
||||
lqw.eq(StringUtils.isNotBlank(bo.getAttrKey()), WmsBomItem::getAttrKey, bo.getAttrKey());
|
||||
lqw.eq(StringUtils.isNotBlank(bo.getAttrValue()), WmsBomItem::getAttrValue, bo.getAttrValue());
|
||||
lqw.eq(bo.getIsEnabled() != null, WmsBomItem::getIsEnabled, bo.getIsEnabled());
|
||||
lqw.eq(bo.getBomId() != null, WmsBomItem::getBomId, bo.getBomId());
|
||||
return lqw;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user