Changes between Version 24 and Version 25 of Ticket #130


Ignore:
Timestamp:
11/27/2012 06:15:10 PM (13 years ago)
Author:
chenchongqi
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #130 – Description

    v24 v25  
    6363}}} 
    6464 
    65 * 不需要眼花缭乱地传参数,各种条件自由组合,处理的时候不需要每个参数判断是否存在。。。 
     65* 不需要眼花缭乱地传参数,各种条件自由组合,有需要才加参数,处理的时候不需要每个参数判断是否存在。。。 
    6666{{{ 
    6767ProductTypeSqlBuilder productTypeSqlBuilder = new ProductTypeSqlBuilder(); 
     
    6969productTypeSqlBuilder 
    7070  .setBrand(123) 
    71   .setSmallType(456) 
    72   .allPriceBetween(1000, 2000) 
     71  .productPriceBetween(1000, 2000)//全国价区间 
     72  .setSmallType(456)   
    7373  .orderByLastCount() 
    7474  .page(0,100);