}
要插入的查詢條件
string sql1=" select * from t_s_user t where 1=1";
string sql2=" select count(*) from t_s_user t where 1=1";
// 某乙個時間條件的案例
string mwo_reporting_time_begin1 = "2015-01-01";
string mwo_reporting_time_end2 = "2019-12-31";
if (stringutil.isnotempty(mwo_reporting_time_begin1))
if (stringutil.isnotempty(mwo_reporting_time_end2))
sql1+=" group by id order by create_date desc";
sql2+=" group by id ";
// 獲取總數,用於分頁使用
long countmwo = systemservice.getcountforjdbc(sql2);
// 轉換為 int 整形
int allcounts = (int)countmwo;
int pagesize = cq.getpagesize();// 每頁顯示數
int curpageno = pagerutil.getcurpageno(allcounts, cq.getcurpage(),pagesize);// 當前頁
//findforjdbc(sql1); sql
//findhql(hql1); hql
// 獲取資料列表,引數一:查詢的sql、引數二三:當前頁碼、資料總數
list> listmwo=systemservice.findforjdbc(sql1, curpageno, pagesize);
cq.getdatagrid().setresults(listmwo);
cq.getdatagrid().settotal(allcounts);
其他jeecg datagrid 使用方法url:1、
2、
python最簡易的教程
原文出自 我將按照以下幾個部分來說說我理解的python,很多地方我只說一下一些非常常用的功能,具體的細節,大家都是有文化的人,完全可以google或者直接查python的庫文件,我相信這些能比我說得更好也更詳細。2.使用 開啟控制台,輸入python,然後回車,看到下面的東西的話,恭喜你,pyth...
springboot kafka最簡易入門Demo
1.pom.xml中加入kafka依賴 org.springframework.kafka spring kafka kafka spring.kafka.bootstrap servers 127.0.0.1 9092 spring.kafka.producer.key serializer or...
mongdb安裝方式 最簡易
2 安裝,預設安裝到c盤program files中你找mongodb資料夾即可。3 找到bin所以的目錄,然後同級建立db log資料夾 在log資料夾下建立乙個日誌檔案mongodb.log 4 進入dos 執行cmd.exe cd c program files mongodb bin c p...