- 浏览: 46888 次
- 性别:
- 来自: 长沙
最新评论
-
vegbird:
顶!
for each循环
文章列表
/**
* 每周客户情况统计 liuwang 说明: 1、客户数=新认识的客户数+约访后回访的客户数+有效的访客数+转介绍客户数
* 2、分值数=新认识的客户数*1+约访后回访的客户数*10+有效的访客数*10+转介绍客户数*2 3、面谈数=有效访客数+约访后回访的客户数
* 合计中的总数就等于每天的数值之和
*
* @Date 2013-12-11
* @param params
* @return
*/
public List getCustomerStaWeekly(Data params) {
/*
* 营业组 营业 ...
/*
This file is part of BORG.
BORG is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
BORG is distribut ...
//就不提被虐了多少次了,明明一样的方式用HQL就是效果不同,被逼无路,又不得不实现分页,因此就有了下面的代码 public Page getAllWaitWork(String staffID, String roleIDs, Page page) {
StringBuilder sb = new StringBuilder(
"select count( distinct v.processInstanceId) from WaitWorkVO v ");
sb.append("where (v.actorId = 's_" + ...
package com.surekam.cpm.order.excel;
import java.io.InputStream;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import org.apache.poi.xssf.usermodel.XSSFRow;
import org.apache.poi.xssf.usermodel.XSSFSheet;
import org ...
测试类pojo和json打太极
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Map;
import net.sf.json.JSONObject;
/**
* JSON对象和pojo的互相转换
*
* 运用的ezmorph-1.0.2.jar
* @author myth
*
*/
public class JSONTestForStruts {
/**
* 将普通的pojo(Plain Old Java Objects)转换成JSON字符 ...
onkeypress="if (event.keyCode==13){doQuery();}"
if (null != caseList && 0 != caseList.size()) {
for (Iterator it = caseList.iterator(); it.hasNext();) {
int beginRow = ++r;
Object[] row = (Object[]) it.next();
requisitionTime=(Date) row[0];
businessTitle= (String) row[1];
problem=(String) row[2];
s ...
<c:forEach items="${feeApplyList}" var="feeApply" varStatus="status">
<c:if test="${status.count == 1}">
<c:out value="${feeApply.feesPrice}" />
</c:if>
</c:forEach>
select count(*) from tabs t where t.tablespace_name='ITSM';
select distinct tablespace_name from tabs;
数据库三范式
脚本执行顺序
普通的script
页面的script
defer的script
onload的script
即: 普通的,边解释,边执行。
DEFER,网页脚本代码加载完后执行。
ONLOAD,所有内容(包括图片等)加载完后执行。
<script type="text/javascript" defer="defer">
initDept();
</script>
update m_mpm_erp_project p set p.department_id = (
select d.dept_id from t_system_staff s ,t_system_dept d
where s.staff_id = p.project_manager_id and s.dept_code = d.dept_code
)
alter table m_bag_info_change modify project_type varchar2(50)
<c:out value="${bagInf ...
<c:out value="${ requestScope.cutoverStatus}"
function disableKeys(eve)
{
var ev = (document.all) ? window.event : eve;
var evCode = (document.all) ? ev.keyCode : ev.which;
var srcElement = (document.all) ? ev.srcElement : ev.target;
if(srcElement.type != "tex ...
var width=(screen.width-798)/2;
var height=(screen.height-503)/2*0.7;
document.getElementById('maindiv').style.left=width+'px';
document.getElementById('maindiv').style.top=height+'px';
可用性和用户体验。
可用性:可行性(使用有效果)
l 有效性(工作效率高)
l 安全性(能安全使用)
l 通用性(具备良好的通用性)
l 易学性(易于学习)
l 易记性(使用方法便于记忆)
用户体验目标:令人感到满意
l 令 ...