chenjiahe
2021-12-27 89085b3f5d8971a08aac4e0b804e9e505baa3c69
phi_platform_common/src/main/java/com/hx/phip/tool/ApplyParameterTool.java
@@ -81,5 +81,22 @@
        return spplyParameter;
    }
    /**his账号
     * @param hisAppId
     * @param commonService
     * @return
     */
    public static ApplyParameter getHisAccount(String hisAppId, CommonService commonService){
        SqlSentence sqlSentence = new SqlSentence();
        Map<String,Object> values = new HashMap<>();
        values.put("isDel",ApplyParameter.NO);
        values.put("hisAppId",hisAppId);
        values.put("type",ApplyParameter.TYPE_HIS_ACCOUNT);
        sqlSentence.sqlSentence("SELECT * FROM pla_apply_parameter WHERE isDel = #{m.isDel} AND hisAppId = #{m.hisAppId} AND type = #{m.type}",values);
        ApplyParameter spplyParameter = commonService.selectOne(ApplyParameterMapper.class,sqlSentence);
        return spplyParameter;
    }
}