|
@ -20,6 +20,8 @@ import org.hibernate.Query;
|
|
|
import org.hibernate.Session;
|
|
|
import org.hibernate.criterion.Order;
|
|
|
import org.hibernate.criterion.Restrictions;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.jdbc.core.JdbcTemplate;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
import org.springframework.transaction.annotation.Transactional;
|
|
|
import org.springframework.util.CollectionUtils;
|
|
@ -38,6 +40,8 @@ import java.util.Map;
|
|
|
public class StandardService extends BaseService<StandardModel> {
|
|
|
|
|
|
public static final String BEAN_ID = "StandardService";
|
|
|
@Autowired
|
|
|
private JdbcTemplate jdbcTemplate;
|
|
|
|
|
|
public DictionaryResult getDictionaryResult(String condition,String order, Integer limit, Integer offset) {
|
|
|
try {
|
|
@ -481,4 +485,22 @@ public class StandardService extends BaseService<StandardModel> {
|
|
|
}
|
|
|
return envelop;
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 根据orgCode返回最新的已发布的版本号, 查找不到,返回空字符串
|
|
|
* @param orgCode
|
|
|
* @return
|
|
|
*/
|
|
|
public String getLastStandByOrgCode(String orgCode) {
|
|
|
List<Integer> ids = jdbcTemplate.queryForList("select id from std_info where publisher_org_code='" + orgCode + "'",Integer.class);
|
|
|
if(CollectionUtils.isEmpty(ids)){
|
|
|
return "";
|
|
|
}else{
|
|
|
List<String> list = jdbcTemplate.queryForList("select version from std_version where std_id=" + ids.get(0) + " and staged=0 order by commit_time desc",String.class);
|
|
|
if(CollectionUtils.isEmpty(list)){
|
|
|
return "";
|
|
|
}
|
|
|
return list.get(0);
|
|
|
}
|
|
|
}
|
|
|
}
|