| | |
| | | package com.hx.mybatisTool; |
| | | |
| | | import com.hx.exception.TipsException; |
| | | import com.hx.util.SimpleTool; |
| | | import com.hx.util.StringUtils; |
| | | |
| | | import java.util.Map; |
| | |
| | | */ |
| | | public class SqlSentence { |
| | | |
| | | /**执行语句*/ |
| | | private String sqlSentence; |
| | | |
| | | /**新增存在查询判断*/ |
| | | private String whereExist; |
| | | |
| | | private Map<String,Object> m; |
| | | /**类型*/ |
| | | private Integer type = TYPE_NORMAL; |
| | | /**排序*/ |
| | | private String orderBy; |
| | | /**开始页数*/ |
| | |
| | | private Integer pageNum = 0; |
| | | |
| | | ////////////////////////////////////////////////////////////// |
| | | /**正常*/ |
| | | public static final int TYPE_NORMAL = 0; |
| | | /**动态*/ |
| | | public static final int TYPE_DYN = 1; |
| | | |
| | | /********************mother****************************/ |
| | | |
| | |
| | | } |
| | | |
| | | /** |
| | | * 设置动态查询 |
| | | * @param map 查询 |
| | | * 查询的语句 |
| | | * @param sql 如:id = #{m.userId} order by age DESC |
| | | * @param values 存放的值如:values.put("userId","123456") |
| | | */ |
| | | public void setDynSql(Map<String, Object> map) |
| | | { |
| | | this.type = TYPE_DYN; |
| | | this.m = map; |
| | | public void sqlWhere(String sql,Map<String,Object> values) { |
| | | if(!SimpleTool.checkNotNull(values)){ |
| | | throw new TipsException("values is null"); |
| | | } |
| | | if(!SimpleTool.checkNotNull(sql)) { |
| | | sql = "1=1"; |
| | | } |
| | | sqlSentence = sql; |
| | | m = values; |
| | | } |
| | | |
| | | /** |
| | | * 更新语句的语句 |
| | | * @param sql 如:name = #{m.name},age = ? WHERE id = #{m.id} |
| | | * @param values 存放的值 |
| | | */ |
| | | public void sqlUpdate(String sql,Map<String,Object> values) { |
| | | if(!SimpleTool.checkNotNull(values)){ |
| | | throw new TipsException("values is null"); |
| | | } |
| | | m = values; |
| | | sqlSentence = sql; |
| | | } |
| | | |
| | | |
| | |
| | | |
| | | public void setSqlSentence(String sqlSentence) { |
| | | this.sqlSentence = sqlSentence; |
| | | } |
| | | |
| | | public Integer getType() { |
| | | return type; |
| | | } |
| | | |
| | | public void setType(Integer type) { |
| | | this.type = type; |
| | | } |
| | | |
| | | public String getOrderBy() { |
| | |
| | | return (startPage - 1) * pageNum; |
| | | } |
| | | |
| | | public String getWhereExist() { |
| | | return whereExist; |
| | | } |
| | | |
| | | public void setWhereExist(String whereExist) { |
| | | if(StringUtils.isNull(whereExist)){ |
| | | whereExist = null; |
| | | } |
| | | this.whereExist = whereExist; |
| | | } |
| | | } |
| | | |
| | | |