E1ED922C1E9526DD63272D7EC5C6CB77
2020-09-27 89ac7f9b30215669a15fb4fec39d698cb1892c6d
src/main/java/com/hx/mybatisTool/SqlSentence.java
@@ -15,8 +15,6 @@
   private String sqlSentence;
   private Map<String,Object> m;
   /**类型*/
   private Integer type = TYPE_NORMAL;
    /**排序*/
   private String orderBy;
    /**开始页数*/
@@ -25,10 +23,6 @@
   private Integer pageNum = 0;
   //////////////////////////////////////////////////////////////
   /**正常*/
   public static final int TYPE_NORMAL = 0;
   /**动态*/
   public static final int TYPE_DYN = 1;
   /********************mother****************************/
@@ -90,16 +84,6 @@
      m = values;
   }
   /**
    * 设置动态查询
    * @param map 查询
    */
   public void setDynSql(Map<String, Object> map)
   {
      this.type = TYPE_DYN;
      this.m = map;
   }
   
   /************************************************************************/
@@ -117,14 +101,6 @@
   public void setSqlSentence(String sqlSentence) {
      this.sqlSentence = sqlSentence;
   }
   public Integer getType() {
      return type;
   }
   public void setType(Integer type) {
      this.type = type;
   }
    public String getOrderBy() {