修改查询字段没有值的问题
This commit is contained in:
parent
368538716a
commit
7b7dc23bd9
|
|
@ -174,7 +174,7 @@ public class NuInvoicingCgdMainServiceImpl extends ServiceImpl<NuInvoicingCgdMai
|
|||
queryWrapper.apply("kcsl <= lower_limit");
|
||||
}
|
||||
queryWrapper.eq("del_flag","0");
|
||||
queryWrapper.eq("izEnabled","0");
|
||||
queryWrapper.eq("iz_enabled","0");
|
||||
Page<BlWarehouseMaterialInfo> page = new Page<>(pageNo, pageSize);
|
||||
List<BlWarehouseMaterialInfo> list = mterialInfoMapper.selectList(page,queryWrapper);
|
||||
IPage<MaterialInfoEntity> entityPage = new Page<>(page.getCurrent(), page.getSize(), page.getTotal());
|
||||
|
|
|
|||
|
|
@ -177,6 +177,10 @@ public class BlWarehouseMaterialInfo implements Serializable {
|
|||
private java.lang.String tagType;
|
||||
@TableField(exist = false)
|
||||
private java.lang.String materialImg;
|
||||
@TableField(exist = false)
|
||||
private java.lang.String salesUnitPrice;
|
||||
@TableField(exist = false)
|
||||
private java.lang.String referenceUnitPrice;
|
||||
|
||||
@TableField(exist = false)
|
||||
private java.lang.String wlParamInfo;//查询物料信息参数,可多个查询
|
||||
|
|
|
|||
|
|
@ -26,6 +26,8 @@
|
|||
b.upper_limit,
|
||||
b.lower_limit,
|
||||
b.tag_type,
|
||||
b.sales_unit_price,
|
||||
b.reference_unit_price,
|
||||
b.material_img,
|
||||
c.item_text as tagName
|
||||
from nu_warehouse_material_info a
|
||||
|
|
|
|||
Loading…
Reference in New Issue