主页面输入查询条件后未按查询条件查询

tags/yfai-mes-ext-v1.0
LML丶 12 months ago
parent f91e0f5ea6
commit 1231b2c1c9

@ -1,6 +1,9 @@
package cn.estsh.i3plus.ext.mes.apiservice.serviceimpl.base; package cn.estsh.i3plus.ext.mes.apiservice.serviceimpl.base;
import cn.estsh.i3plus.ext.mes.api.base.IMesPartTransferService; import cn.estsh.i3plus.ext.mes.api.base.IMesPartTransferService;
import cn.estsh.i3plus.pojo.base.bean.DdlPackBean;
import cn.estsh.i3plus.pojo.base.tool.DdlPreparedPack;
import cn.estsh.i3plus.pojo.mes.bean.MesErpWorkCenter;
import cn.estsh.i3plus.pojo.mes.bean.MesPartTransfer; import cn.estsh.i3plus.pojo.mes.bean.MesPartTransfer;
import lombok.extern.slf4j.Slf4j; import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
@ -9,4 +12,8 @@ import org.springframework.stereotype.Service;
@Slf4j @Slf4j
public class MesPartTransferService extends BaseMesService<MesPartTransfer> implements IMesPartTransferService { public class MesPartTransferService extends BaseMesService<MesPartTransfer> implements IMesPartTransferService {
protected void setPackQueryBean(MesPartTransfer bean, DdlPackBean packBean) {
DdlPreparedPack.getStringLikerPack(bean.getCustomerCode(), "customerCode", packBean);
DdlPreparedPack.getStringLikerPack(bean.getMessageNo(), "messageNo", packBean);
}
} }

Loading…
Cancel
Save