|
|
|
@ -299,20 +299,21 @@ public class WmsHqlPack {
|
|
|
|
|
* @param wmsLocate
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
public static String packHqlWmsLocates(WmsLocate wmsLocate) {
|
|
|
|
|
StringBuffer result = new StringBuffer();
|
|
|
|
|
public static DdlPackBean packHqlWmsLocates(WmsLocate wmsLocate) {
|
|
|
|
|
//查询参数封装
|
|
|
|
|
DdlPackBean result = new DdlPackBean();
|
|
|
|
|
|
|
|
|
|
//查询参数封装
|
|
|
|
|
HqlPack.getStringLikerPack(wmsLocate.getLocateNo(), "locateNo", result);
|
|
|
|
|
HqlPack.getStringLikerPack(wmsLocate.getLocateName(), "locateName", result);
|
|
|
|
|
HqlPack.getNumEqualPack(wmsLocate.getLocateType(), "locateType", result);
|
|
|
|
|
HqlPack.getStringLikerPack(wmsLocate.getWhNo(), "whNo", result);
|
|
|
|
|
HqlPack.getStringLikerPack(wmsLocate.getZoneNo(), "zoneNo", result);
|
|
|
|
|
HqlPack.getNumEqualPack(wmsLocate.getStatus(), "status", result);
|
|
|
|
|
DdlPreparedPack.getStringLikerPack(wmsLocate.getLocateNo(), "locateNo", result);
|
|
|
|
|
DdlPreparedPack.getStringLikerPack(wmsLocate.getLocateName(), "locateName", result);
|
|
|
|
|
DdlPreparedPack.getNumEqualPack(wmsLocate.getLocateType(), "locateType", result);
|
|
|
|
|
DdlPreparedPack.getStringLikerPack(wmsLocate.getWhNo(), "whNo", result);
|
|
|
|
|
DdlPreparedPack.getStringLikerPack(wmsLocate.getZoneNo(), "zoneNo", result);
|
|
|
|
|
DdlPreparedPack.getNumEqualPack(wmsLocate.getStatus(), "status", result);
|
|
|
|
|
|
|
|
|
|
getStringBuilderPack(wmsLocate, result);
|
|
|
|
|
|
|
|
|
|
return result.toString();
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|