|
|
|
@ -2877,4 +2877,18 @@ public class WmsHqlPack {
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 插件信息分页查询条件
|
|
|
|
|
* @param rule
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
public static DdlPackBean packHqlWmsWaveRule(WmsWaveRule rule) {
|
|
|
|
|
DdlPackBean result = new DdlPackBean();
|
|
|
|
|
DdlPreparedPack.getStringEqualPack(rule.getRuleCode(), "ruleCode", result);
|
|
|
|
|
DdlPreparedPack.getStringBiggerPack(rule.getStartEffectDate(), "startEffectDate", result);
|
|
|
|
|
DdlPreparedPack.getStringSmallerPack(rule.getEndEffectDate(), "endEffectDate", result);
|
|
|
|
|
getStringBuilderPack(rule, result);
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|