- 浏览: 12392 次
- 性别:
最新评论
文章列表
公司需求是 根据当前员工查找他对应整个分公司及部门的名字,思路:根据员工查找出他属于哪个分公司,拿到分公司PID(可以理解为是子公司的父节点ID),再使用递归方法依次查找,(在递归方法中只要你传父节点ID,不管其子下有没有子节点),
效果图:
现在贴代码:
package com.neusoft.talentbase.organization.orgunit.orgunit.vo;
import java.util.List;
import com.neusoft.talentbase.framework.core.base.vo.BaseVO;
public c ...
JqueryUI插件dialog实现遮罩的效果
通过简单的学习了JqueryUI插件的一些内容,对于dialog对话框效果我们也有了一些简单的了解。那么,我来给大家介绍一下使用jqueryUI dialog对话框实现遮罩的效果。
在实现功能之前,我们首先来看一下效果。如下图所示:
我们所谓的遮罩效果,就是当我们点击页面中的一个按钮后,弹出来一个对话框后,就不能再点击页面中的其他内容了。正如图所示,本身的页面已经变为浅灰色的了。
下面我们就来具体看一下遮罩效果具体实现的代码分析。
1、 首先,我们要新建一个JSP页面,在JSP页面中要引入相应的jQueryUI插件以及相应 ...
效果图
CSS代码
------------------begin--------------
.block_tabs {}.block_tabs .tabs {overflow:hidden; background:url(images/bg_white_tr_1.png);}.block_tabs .tabs li {margin-left:1px; display:block; float:left; font-size:10px; text-align:center;}.block_tabs .tabs li:first-child {margin-l ...
oracle 根据一个日期查询一周的数据sql
- 博客分类:
- 日期
--查询所有数据里面自己的排名第几(下面是指 自己在本周所有数据中排名第几)
select tt.rn
from (select t.*, row_number() over(order by start_time desc) rn
from tb_match_phase_user t
where t.start_time between
TRUNC(TO_DATE('2015-04-02', 'YYYY-MM-DD'), 'IW') and
TRUNC(TO_DATE('20 ...
response.setContentType("application/x-download;charset=utf-8");
String filenameDisplay = URLEncoder.encode(fileFileName,"UTF-8");
response.addHeader("Content-Disposition","attachment;filename=" + filenameDisplay );
ServletOutputStream out= ...
ByteArrayInputStream bais = new ByteArrayInputStream(bytes1);
BufferedImage bi1 =ImageIO.read(bais);
File w2 = new File("c://QQ1.png");//可以是jpg,png,gif格式
ImageIO.write(bi1, "jpg", w2);//不管输出什么格式图片,此处不需改动
第二种方法
byte[] bytes = image.array();
FileImageOutput ...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; ...
//邮件的类
public class MailSenderInfo {
// 发送邮件的服务器的IP和端口
private String mailServerHost;
private String mailServerPort = "25";
// 邮件发送者的地址
private String fromAddress;
// 邮件接收者的地址
private String toAddress;
// 登陆邮件发送服务器的用户名和密码 ...
/**
* 获取当前时间
* @return
*/
private String getCurrtime(String str){
String str_Time= "";
Timestamp currentTime = new Timestamp(System.currentTimeMillis());
//用calendar获取当天
Calendar current = Calendar.getInstance();
current.get(Calendar.YEAR);
current.get ...
第二种方法
select s.c_empid,sum(decode(dp.c_name,'基本工资一基础工资',nvl(s.c_value, 0))) as "基础工资",
sum(decode(dp.c_name,'基本工资一加班费',nvl(s.c_value, 0))) as "加班费",
sum(decode(dp.c_name,'基本工资一岗位月度工资',nvl(s.c_value, 0))) as "岗位月度工资"
from tb_cnb_otherpay ...
public String getUnitName(long orgid) {
java.sql.CallableStatement cStmt = null;
java.sql.Connection conn = null;
String returnStr = "";
try {
conn = getSession().connection();
cStmt = conn.prepareCall("{ ?=call get_unitcode_byid_new(?) }");
cStmt.register ...