看板自定义参数

yun-zuoyi
joke.wang 5 years ago
parent 4300201f99
commit 928c643031

@ -3540,4 +3540,24 @@ public class MesHqlPack {
}
return packBean;
}
/**
* MES_
*
* @param boardCustomParamCfg
* @return
*/
public static DdlPackBean getBoardCustomParamCfg(MesBoardCustomParamCfg boardCustomParamCfg) {
DdlPackBean packBean = getAllBaseDataByNormalPro(boardCustomParamCfg, boardCustomParamCfg.getOrganizeCode());
if (!StringUtils.isEmpty(boardCustomParamCfg.getBoardCode())) {
DdlPreparedPack.getStringLikerPack(boardCustomParamCfg.getBoardCode(), "boardCode", packBean);
}
if (!StringUtils.isEmpty(boardCustomParamCfg.getParamCode())) {
DdlPreparedPack.getStringLikerPack(boardCustomParamCfg.getParamCode(), "paramCode", packBean);
}
if (!StringUtils.isEmpty(boardCustomParamCfg.getParamName())) {
DdlPreparedPack.getStringLikerPack(boardCustomParamCfg.getParamName(), "paramName", packBean);
}
return packBean;
}
}

Loading…
Cancel
Save