Uep查询语句总结
今天没事干总结一下uep查询语句:
第一种方法:
注意在实体写上对应的构造方法
package com.haiyisoft.entity.wz;
import java.math.BigDecimal;
import java.sql.Timestamp;
import java.util.Date;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Table;
import javax.persistence.Transient;
import com.haiyisoft.entity.EntityBean;
import com.haiyisoft.ep.common.db.Record;
import com.haiyisoft.ep.common.jpa.meta.EntityMetaData;
import com.haiyisoft.ep.common.jpa.util.EntityMetaDataUtil;
import com.haiyisoft.ep.common.util.PrintUtil;
import com.haiyisoft.ep.exception.BaseRunException;
@Entity
@Table(name = "wz_initialize_store_info")
public class WzInitializeStoreInfo extends EntityBean{
private static final long serialVersionUID = 1L;
@Id
@Column(name = "INCODE")
private Long incode;
@Column(name = "BATCH_ID")
private Long batchId;
@Column(name = "HS_UNIT")
private Long hsUnit;
@Column(name = "WZ_INCODE")
private Long wzIncode;
@Column(name = "STORE_ID")
private Long storeId;
@Column(name = "BUY_PRICE")
private BigDecimal buyPrice;
@Column(name = "TAX_RATIO")
private BigDecimal taxRatio;
@Column(name = "STORE_SITE")
private String storeSite;
@Column(name = "PAN_NUM")
private Integer panNum;
@Column(name = "MONTH_END_NUM")
private BigDecimal monthEndNum;
@Column(name = "MONTH_END_MONEY")
private BigDecimal monthEndMoney;
@Column(name = "STORE_ADVANCE_NUM")
private BigDecimal storeAdvanceNum;
@Column(name = "STORE_FACT_NUM")
private BigDecimal storeFactNum;
@Column(name = "STORE_CW_NUM")
private BigDecimal storeCwNum;
@Column(name = "CW_END_MONEY")
private BigDecimal cwEndMoney;
@Column(name = "MADE_DATE")
private Timestamp madeDate;
@Column(name = "VALID_DATE")
private Timestamp validDate;
@Column(name = "ACCOUNT_ID")
private Long accountId;
@Column(name = "PROJECT_CODE")
private Long projectCode;
@Column(name = "STORE_STATUS")
private String storeStatus;
@Column(name = "MADE_INCODE")
private Long madeIncode;
@Column(name = "PRODUCT_INCODE")
private Long productIncode;
@Column(name = "DEDUCE_POINT")
private BigDecimal deducePoint;
@Column(name = "JSFS")
private String jsfs;
@Column(name = "MODEL_DES")
private String modelDes;
@Column(name = "TAX_RATIO1")
private BigDecimal taxRatio1;
@Column(name = "STORE_FACT_NUM_ACCOUNT")
private Long storeFactNumAccount;
@Column(name = "STORE_ADVANCE_NUM_ACCOUNT")
private Long storeAdvanceNumAccount;
@Column(name = "STORE_ADVANCE_NUM_LIST")
private Long storeAdvanceNumList;
@Column(name = "STORE_FACT_NUM_LIST")
private Long storeFactNumList;
@Column(name = "SFJY")
private String sfjy;
@Column(name = "REMARK")
private String remark;
@Column(name = "APP_ID")
private String appId;
@Column(name = "COMPANY_ID")
private Long companyId;
@Column(name = "batch_type")
private Integer batchType;
@Column(name = "ORDER_NO")
private Long orderNo;
@Column(name = "ORDER_CODE")
private String orderCode;
@Transient
private String modelDesc;
@Transient
private String wzCode;
//商品名称
@Transient
private String wzName;
//商品条码
@Transient
private String wzEntry;
//单位
@Transient
private String jlUnit;
@Column(name = "CREATE_DATE")
private Timestamp createDate;
@Column(name = "MODIFY_DATE")
private Timestamp modifyDate;
@Column(name = "STANDARD_BOX")
private String standardBox;
@Column(name = "BOX_TYPE_ID")
private Long boxTypeId;
public Long getBoxTypeId() {
return boxTypeId;
}
public void setBoxTypeId(Long boxTypeId) {
this.boxTypeId = boxTypeId;
}
public String getStandardBox() {
return standardBox;
}
public void setStandardBox(String standardBox) {
this.standardBox = standardBox;
}
public Timestamp getCreateDate() {
return createDate;
}
public void setCreateDate(Timestamp createDate) {
this.createDate = createDate;
}
public Timestamp getModifyDate() {
return modifyDate;
}
public void setModifyDate(Timestamp modifyDate) {
this.modifyDate = modifyDate;
}
//有参构造方法
public WzInitializeStoreInfo(){}
public WzInitializeStoreInfo(Long incode, Long batchId,
Long wzIncode, Long storeId, BigDecimal buyPrice,
BigDecimal taxRatio, String storeSite,
BigDecimal storeAdvanceNum, BigDecimal storeFactNum,
Date madeDate,Date validDate, Long productIncode, Integer batchType, String wzName, String wzEntry,String jlUnit,
String modelDesc,String wzCode,String orderCode,Long hsUnit,Date createDate,Date modifyDate,String standardBox,Long boxTypeId,Integer panNum) {
super();
this.incode = incode;
this.batchId = batchId;
this.wzIncode = wzIncode;
this.storeId = storeId;
this.buyPrice = buyPrice;
this.taxRatio = taxRatio;
this.storeSite = storeSite;
this.storeAdvanceNum = storeAdvanceNum;
this.storeFactNum = storeFactNum;
this.madeDate = (Timestamp)madeDate;
this.validDate = (Timestamp)validDate;
this.productIncode = productIncode;
this.batchType = batchType;
this.wzName = wzName;
this.wzEntry = wzEntry;
this.jlUnit = jlUnit;
this.modelDesc=modelDesc;
this.wzCode=wzCode;
this.orderCode=orderCode;
this.hsUnit=hsUnit;
this.createDate = (Timestamp)createDate;
this.modifyDate = (Timestamp)modifyDate;
this.standardBox = standardBox;
this.boxTypeId=boxTypeId;
this.panNum=panNum;
}
public String getModelDesc() {
return modelDesc;
}
public void setModelDesc(String modelDesc) {
this.modelDesc = modelDesc;
}
public String getWzCode() {
return wzCode;
}
public void setWzCode(String wzCode) {
this.wzCode = wzCode;
}
public String getWzName() {
return wzName;
}
public void setWzName(String wzName) {
this.wzName = wzName;
}
public String getWzEntry() {
return wzEntry;
}
public void setWzEntry(String wzEntry) {
this.wzEntry = wzEntry;
}
public String getJlUnit() {
return jlUnit;
}
public void setJlUnit(String jlUnit) {
this.jlUnit = jlUnit;
}
public Long getIncode() {
return incode;
}
public void setIncode(Long incode){
this.incode = incode;
}
public Long getBatchId() {
return batchId;
}
public void setBatchId(Long batchId){
this.batchId = batchId;
}
public Long getHsUnit() {
return hsUnit;
}
public void setHsUnit(Long hsUnit){
this.hsUnit = hsUnit;
}
public Long getWzIncode() {
return wzIncode;
}
public void setWzIncode(Long wzIncode){
this.wzIncode = wzIncode;
}
public Long getStoreId() {
return storeId;
}
public void setStoreId(Long storeId){
this.storeId = storeId;
}
public BigDecimal getBuyPrice() {
return buyPrice;
}
public void setBuyPrice(BigDecimal buyPrice){
this.buyPrice = buyPrice;
}
public BigDecimal getTaxRatio() {
return taxRatio;
}
public void setTaxRatio(BigDecimal taxRatio){
this.taxRatio = taxRatio;
}
public String getStoreSite() {
return storeSite;
}
public void setStoreSite(String storeSite){
this.storeSite = storeSite;
}
public Integer getPanNum() {
return panNum;
}
public void setPanNum(Integer panNum){
this.panNum = panNum;
}
public BigDecimal getMonthEndNum() {
return monthEndNum;
}
public void setMonthEndNum(BigDecimal monthEndNum){
this.monthEndNum = monthEndNum;
}
public BigDecimal getMonthEndMoney() {
return monthEndMoney;
}
public void setMonthEndMoney(BigDecimal monthEndMoney){
this.monthEndMoney = monthEndMoney;
}
public BigDecimal getStoreAdvanceNum() {
return storeAdvanceNum;
}
public void setStoreAdvanceNum(BigDecimal storeAdvanceNum){
this.storeAdvanceNum = storeAdvanceNum;
}
public BigDecimal getStoreFactNum() {
return storeFactNum;
}
public void setStoreFactNum(BigDecimal storeFactNum){
this.storeFactNum = storeFactNum;
}
public BigDecimal getStoreCwNum() {
return storeCwNum;
}
public void setStoreCwNum(BigDecimal storeCwNum){
this.storeCwNum = storeCwNum;
}
public BigDecimal getCwEndMoney() {
return cwEndMoney;
}
public void setCwEndMoney(BigDecimal cwEndMoney){
this.cwEndMoney = cwEndMoney;
}
public Timestamp getMadeDate() {
return madeDate;
}
public void setMadeDate(Timestamp madeDate){
this.madeDate = madeDate;
}
public Timestamp getValidDate() {
return validDate;
}
public void setValidDate(Timestamp validDate){
this.validDate = validDate;
}
public Long getAccountId() {
return accountId;
}
public void setAccountId(Long accountId){
this.accountId = accountId;
}
public Long getProjectCode() {
return projectCode;
}
public void setProjectCode(Long projectCode){
this.projectCode = projectCode;
}
public String getStoreStatus() {
return storeStatus;
}
public void setStoreStatus(String storeStatus){
this.storeStatus = storeStatus;
}
public Long getMadeIncode() {
return madeIncode;
}
public void setMadeIncode(Long madeIncode){
this.madeIncode = madeIncode;
}
public Long getProductIncode() {
return productIncode;
}
public void setProductIncode(Long productIncode){
this.productIncode = productIncode;
}
public BigDecimal getDeducePoint() {
return deducePoint;
}
public void setDeducePoint(BigDecimal deducePoint){
this.deducePoint = deducePoint;
}
public String getJsfs() {
return jsfs;
}
public void setJsfs(String jsfs){
this.jsfs = jsfs;
}
public String getModelDes() {
return modelDes;
}
public void setModelDes(String modelDes){
this.modelDes = modelDes;
}
public BigDecimal getTaxRatio1() {
return taxRatio1;
}
public void setTaxRatio1(BigDecimal taxRatio1){
this.taxRatio1 = taxRatio1;
}
public Long getStoreFactNumAccount() {
return storeFactNumAccount;
}
public void setStoreFactNumAccount(Long storeFactNumAccount){
this.storeFactNumAccount = storeFactNumAccount;
}
public Long getStoreAdvanceNumAccount() {
return storeAdvanceNumAccount;
}
public void setStoreAdvanceNumAccount(Long storeAdvanceNumAccount){
this.storeAdvanceNumAccount = storeAdvanceNumAccount;
}
public Long getStoreAdvanceNumList() {
return storeAdvanceNumList;
}
public void setStoreAdvanceNumList(Long storeAdvanceNumList){
this.storeAdvanceNumList = storeAdvanceNumList;
}
public Long getStoreFactNumList() {
return storeFactNumList;
}
public void setStoreFactNumList(Long storeFactNumList){
this.storeFactNumList = storeFactNumList;
}
public String getSfjy() {
return sfjy;
}
public void setSfjy(String sfjy){
this.sfjy = sfjy;
}
public String getRemark() {
return remark;
}
public void setRemark(String remark){
this.remark = remark;
}
public String getAppId() {
return appId;
}
public void setAppId(String appId){
this.appId = appId;
}
public Long getCompanyId() {
return companyId;
}
public void setCompanyId(Long companyId){
this.companyId = companyId;
}
public Integer getBatchType() {
return batchType;
}
public void setBatchType(Integer batchType) {
this.batchType = batchType;
}
public Long getOrderNo() {
return orderNo;
}
public void setOrderNo(Long orderNo) {
this.orderNo = orderNo;
}
public String getOrderCode() {
return orderCode;
}
public void setOrderCode(String orderCode) {
this.orderCode = orderCode;
}
@Override
public Record exportToRecord() {
EntityMetaData metaData = EntityMetaDataUtil.getEntityMetaData(this.getClass().getName());
if (metaData == null) {
new BaseRunException("Java类"+this.getClass().getName()+"没有元数据信息!不能导出为Record!").handle();
}
Record record = PrintUtil.genEmptyExportRecord(metaData);
record.set("INCODE", this.incode);
record.set("BATCH_ID", this.batchId);
record.set("HS_UNIT", this.hsUnit);
record.set("WZ_INCODE", this.wzIncode);
record.set("STORE_ID", this.storeId);
record.set("BUY_PRICE", this.buyPrice);
record.set("TAX_RATIO", this.taxRatio);
record.set("STORE_SITE", this.storeSite);
record.set("PAN_NUM", this.panNum);
record.set("MONTH_END_NUM", this.monthEndNum);
record.set("MONTH_END_MONEY", this.monthEndMoney);
record.set("STORE_ADVANCE_NUM", this.storeAdvanceNum);
record.set("STORE_FACT_NUM", this.storeFactNum);
record.set("STORE_CW_NUM", this.storeCwNum);
record.set("CW_END_MONEY", this.cwEndMoney);
record.set("MADE_DATE", this.madeDate);
record.set("VALID_DATE", this.validDate);
record.set("ACCOUNT_ID", this.accountId);
record.set("PROJECT_CODE", this.projectCode);
record.set("STORE_STATUS", this.storeStatus);
record.set("MADE_INCODE", this.madeIncode);
record.set("PRODUCT_INCODE", this.productIncode);
record.set("DEDUCE_POINT", this.deducePoint);
record.set("JSFS", this.jsfs);
record.set("MODEL_DES", this.modelDes);
record.set("TAX_RATIO1", this.taxRatio1);
record.set("STORE_FACT_NUM_ACCOUNT", this.storeFactNumAccount);
record.set("STORE_ADVANCE_NUM_ACCOUNT", this.storeAdvanceNumAccount);
record.set("STORE_ADVANCE_NUM_LIST", this.storeAdvanceNumList);
record.set("STORE_FACT_NUM_LIST", this.storeFactNumList);
record.set("SFJY", this.sfjy);
record.set("REMARK", this.remark);
record.set("APP_ID", this.appId);
record.set("COMPANY_ID", this.companyId);
record.set("batch_type", this.batchType);
record.set("checked", super.getChecked());
return record;
}
}
然后写查询语句,语句对应参数和实体顺序一样
public List<WzInitializeStoreInfo> retrieve(QueryParamList param, PageInfo pageInfo,SortParamList sort) throws BaseRunException {
StringBuffer jpql=new StringBuffer();
jpql.append("select new com.haiyisoft.entity.wz.WzInitializeStoreInfo(w.incode,w.batchId,w.wzIncode,w.storeId,w.buyPrice,w.taxRatio,w.storeSite,w.storeAdvanceNum,w.storeFactNum,w.madeDate,w.validDate,w.productIncode,"
+ "w.batchType,c.wzName,c.wzEntry,c.jlUnit)");
jpql.append(" from WzInitializeStoreInfo w,WzCode c where w.wzIncode=c.wzIncode");
if(param.get("batchId")!=null){
jpql.append(" and w.batchId="+param.get("batchId").getValue());
}
if(param.get("wzEntry")!=null){
jpql.append(" and c.wzEntry="+param.get("wzEntry").getValue());
}
if(param.get("wzName")!=null){
jpql.append(" and c.wzName like "+"'"+param.get("wzName").getValue()+"'");
}
if(param.get("companyId")!=null){
jpql.append(" and c.companyId="+param.get("companyId").getValue());
}
List<Object> list=supplyDAO.find(jpql.toString(), sort,pageInfo);
List<WzInitializeStoreInfo> siteList=new ArrayList<WzInitializeStoreInfo>();
for(int i=0;i<list.size();i++){
siteList.add((WzInitializeStoreInfo)list.get(i));
}
return siteList;
}
第二种方法:
public List<WzInitializeStoreInfo> retrieve(QueryParamList param, PageInfo pageInfo,SortParamList sort) throws BaseRunException {
StringBuffer jpql=new StringBuffer();
jpql.append("select new com.haiyisoft.entity.wz.WzInitializeStoreInfo(w.incode,w.batchId,w.wzIncode,w.storeId,w.buyPrice,w.taxRatio,w.storeSite,w.storeAdvanceNum,w.storeFactNum,w.madeDate,w.validDate,w.productIncode,"
+ "w.batchType,c.wzName,c.wzEntry,c.jlUnit)");
jpql.append(" from WzInitializeStoreInfo w,WzCode c where w.wzIncode=c.wzIncode");
if(param.get("batchId")!=null){
jpql.append(" and w.batchId= :batchId");
}
if(param.get("wzEntry")!=null){
jpql.append(" and c.wzEntry= :wzEntry");
}
if(param.get("wzName")!=null){
jpql.append(" and c.wzName like :wzName ");
}
if(param.get("companyId")!=null){
jpql.append(" and c.companyId= :companyId");
}
List<Object> list=supplyDAO.find(jpql.toString(), param,sort,pageInfo);
List<WzInitializeStoreInfo> siteList=new ArrayList<WzInitializeStoreInfo>();
for(int i=0;i<list.size();i++){
siteList.add((WzInitializeStoreInfo)list.get(i));
}
return siteList;
}
主要是赋值和执行语句的参数有所差别。
然后是uep前台数据传入后台的俩种方式
function showDetail(cell) {
//此时要问后台要数据,要新主数据的从数据,
var data = ajaxgrid.collectData(true, "all");
var unitDate = unitGrid.collectData(true, "all");
var a =cell["storeId"];
var dataArr = [];
dataArr.push(data);
dataArr.push(unitDate);
$.request({
action : "retrieveAll",
data : dataArr,
params : {
"storeId" : cell["storeId"], 对于这种后台Action需要private String storeId;然后setter和getter方法
"property.storeId" : a 对于这种传值后台接收只需要this.getProperty("storeId);
},
success : ajax_initdb
});
}
Uep查询语句总结的更多相关文章
- SQL Server-简单查询语句,疑惑篇(三)
前言 对于一些原理性文章园中已有大量的文章尤其是关于索引这一块,我也是花费大量时间去学习,对于了解索引原理对于后续理解查询计划和性能调优有很大的帮助,而我们只是一些内容进行概括和总结,这一节我们开始正 ...
- thinkphp中的查询语句
<?php namespace Admin\Controller; use Think\Controller; class MainController extends Controller { ...
- Oracle 查询语句(where,order by ,like,in,distinct)
select * from production;alter table production add productionprice number(7,2); UPDATE production s ...
- 45 个非常有用的 Oracle 查询语句
这里我们介绍的是 40+ 个非常有用的 Oracle 查询语句,主要涵盖了日期操作,获取服务器信息,获取执行状态,计算数据库大小等等方面的查询.这些是所有 Oracle 开发者都必备的技能,所以快 ...
- mysql查询语句select-子查询
1 子查询定义 在一个表表达中可以调用另一个表表达式,这个被调用的表表达式叫做子查询(subquery),我么也称作子选择(subselect)或内嵌选择(inner select).子查询的结果传递 ...
- mongodb的查询语句学习摘要
看了些资料,对应只需要知道怎么查询和使用mongodb的我来说,这些足够啦. 左边是mongodb查询语句,右边是sql语句.对照着用,挺方便. db.users.find() select * fr ...
- SqlServer 一个查询语句以致tempdb增大55G (转载)
SqlServer 一个查询语句导致tempdb增大55G 今天操作着服务器,突然右下角提示“C盘空间不足”! 吓一跳!~ 看看C盘,还有7M!!!这么大的C盘空间怎么会没了呢?搞不好等下服务器会动不 ...
- ThinkPHP(3)SQL查询语句
ThinkPHP中对查询语句,包含了基本的查询方式.表达方式.快速查询.区间查询.组合查询.SQL查询.动态查询和子查询. 一.查询方式 ThinkPHP提供了三种基本的查询方式:字符串条件查询.索引 ...
- MySQL知识树-查询语句
在日常的web应用开发过程中,一般会涉及到数据库方面的操作,其中查询又是占绝大部分的.我们不仅要会写查询,最好能系统的学习下与查询相关的知识点,这篇随笔我们就来一起看看MySQL查询知识相关的树是什么 ...
随机推荐
- Linux Exploit系列之七 绕过 ASLR -- 第二部分
原文地址:https://github.com/wizardforcel/sploitfun-linux-x86-exp-tut-zh/blob/master/7.md 这一节是简单暴力的一节,作者讲 ...
- 【Groovy】 Groovy笔记
一.简单了解Groovy Groovy简介: Groovy是基于JVM的敏捷开发语言,语法与Java类似,但更加简洁,容错性也比Java强,同时Java能非常好的契合(例如Groovy能够使用Java ...
- 关于Linux单机、集群部署FastDFS分布式文件系统的步骤。
集群部署:2台tarcker服务器,2台storage服务器. 192.168.201.86 ---------(trackerd+storage+nginx) 192.168.201.87 ...
- PAT Basic 1006 换个格式输出整数 (15 分)
让我们用字母 B 来表示“百”.字母 S 表示“十”,用 12...n 来表示不为零的个位数字 n(<),换个格式来输出任一个不超过 3 位的正整数.例如 234 应该被输出为 BBSSS123 ...
- 手动写一个类支持foreach循环
之前初学时看过可以实现Iterable接口实现Iterator迭代器的支持,并且也支持foreach循环.现在学习了数据结构,手动写一个单链表支持foreach循环吧. 手写foreach循环步骤: ...
- 牛客练习赛47 DongDong数颜色 (莫队算法)
链接:https://ac.nowcoder.com/acm/contest/904/E 来源:牛客网 DongDong数颜色 时间限制:C/C++ 1秒,其他语言2秒 空间限制:C/C++ 5242 ...
- 7款js文件上传插件
1. jQuery File Upload 具有多文件上传.拖拽.进度条和图像预览功能的文件上传插件,支持跨域.分块.暂停恢复和客户端图像缩放.可与任何服务端平台(如PHP.Python.Ruby ...
- 亲爱的SAP从业者们,烦请做个SAP知识学习种类的小调查
"世上再也没有比时钟更加冷漠的东西了:在您出生的那一刻,在您尽情地摘取青春幻梦的花朵的时刻,它都是同样分秒不差地滴答着." -- 高尔基 2019年马上又要离我们而去了,从2018 ...
- oozie 启动过程中--- Existing PID file found during start. Removing/clearing stale PID file.
如果oozie使用kill -9 暴力杀死了tomcat,再启动的时候,会出问题,需要删除tomcat的pid文件 彻底停止oozie的tomcat的进程,然后删除pid文件 rm -rf /exp ...
- c3p0连接池:com.mysql.cj.exceptions.InvalidConnectionAttributeException
1 遇到的错误com.mysql.cj.exceptions.InvalidConnectionAttributeException: 四月 17, 2019 10:21:13 上午 com.mcha ...