Explorar el Código

获取某个机构下的最新版本号

chenyongxing hace 6 años
padre
commit
040f7fe1b3

+ 13 - 0
src/main/java/com/yihu/hos/standard/controller/StandardController.java

@ -15,6 +15,7 @@ import com.yihu.hos.web.framework.util.controller.BaseController;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import io.swagger.annotations.ApiParam;
import org.apache.commons.lang.StringUtils;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RequestParam;
@ -195,4 +196,16 @@ public class StandardController extends BaseController {
                              @RequestParam(value = "orgCode", required = true) String orgCode){
        return standardService.getStandByOrgCode(orgCode);
    }
    @RequestMapping(value = "/getLastStandByOrgCode", method = RequestMethod.GET)
    @ApiOperation(value = "获取某个机构已发布的最新版本号", response = DictionaryResult.class,  notes = "获取某个机构已发布的最新版本号")
    public String getLastStandByOrgCode(@ApiParam(value="机构code")
            @RequestParam(value = "orgCode") String orgCode){
        String ver = standardService.getLastStandByOrgCode(orgCode);
        if(StringUtils.isBlank(ver)){
           return "";
        }
        return ver;
    }
}

+ 22 - 0
src/main/java/com/yihu/hos/standard/service/standard/StandardService.java

@ -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);
        }
    }
}