com.macro.mall.model.SmsCouponHistoryExample Java Examples
The following examples show how to use
com.macro.mall.model.SmsCouponHistoryExample.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: SmsCouponHistoryServiceImpl.java From macrozheng-mall with MIT License | 6 votes |
@Override public List<SmsCouponHistory> list(Long couponId, Integer useStatus, String orderSn, Integer pageSize, Integer pageNum) { PageHelper.startPage(pageNum,pageSize); SmsCouponHistoryExample example = new SmsCouponHistoryExample(); SmsCouponHistoryExample.Criteria criteria = example.createCriteria(); if(couponId!=null){ criteria.andCouponIdEqualTo(couponId); } if(useStatus!=null){ criteria.andUseStatusEqualTo(useStatus); } if(!StringUtils.isEmpty(orderSn)){ criteria.andOrderSnEqualTo(orderSn); } return historyMapper.selectByExample(example); }
Example #2
Source File: SmsCouponHistoryServiceImpl.java From mall-swarm with Apache License 2.0 | 6 votes |
@Override public List<SmsCouponHistory> list(Long couponId, Integer useStatus, String orderSn, Integer pageSize, Integer pageNum) { PageHelper.startPage(pageNum,pageSize); SmsCouponHistoryExample example = new SmsCouponHistoryExample(); SmsCouponHistoryExample.Criteria criteria = example.createCriteria(); if(couponId!=null){ criteria.andCouponIdEqualTo(couponId); } if(useStatus!=null){ criteria.andUseStatusEqualTo(useStatus); } if(!StringUtils.isEmpty(orderSn)){ criteria.andOrderSnEqualTo(orderSn); } return historyMapper.selectByExample(example); }
Example #3
Source File: SmsCouponHistoryServiceImpl.java From mall with Apache License 2.0 | 6 votes |
@Override public List<SmsCouponHistory> list(Long couponId, Integer useStatus, String orderSn, Integer pageSize, Integer pageNum) { PageHelper.startPage(pageNum,pageSize); SmsCouponHistoryExample example = new SmsCouponHistoryExample(); SmsCouponHistoryExample.Criteria criteria = example.createCriteria(); if(couponId!=null){ criteria.andCouponIdEqualTo(couponId); } if(useStatus!=null){ criteria.andUseStatusEqualTo(useStatus); } if(!StringUtils.isEmpty(orderSn)){ criteria.andOrderSnEqualTo(orderSn); } return historyMapper.selectByExample(example); }
Example #4
Source File: SmsCouponHistoryServiceImpl.java From macrozheng with Apache License 2.0 | 6 votes |
@Override public List<SmsCouponHistory> list(Long couponId, Integer useStatus, String orderSn, Integer pageSize, Integer pageNum) { PageHelper.startPage(pageNum,pageSize); SmsCouponHistoryExample example = new SmsCouponHistoryExample(); SmsCouponHistoryExample.Criteria criteria = example.createCriteria(); if(couponId!=null){ criteria.andCouponIdEqualTo(couponId); } if(useStatus!=null){ criteria.andUseStatusEqualTo(useStatus); } if(!StringUtils.isEmpty(orderSn)){ criteria.andOrderSnEqualTo(orderSn); } return historyMapper.selectByExample(example); }
Example #5
Source File: SmsCouponHistoryMapper.java From mall with Apache License 2.0 | votes |
long countByExample(SmsCouponHistoryExample example);
Example #6
Source File: SmsCouponHistoryMapper.java From macrozheng-mall with MIT License | votes |
int updateByExample(@Param("record") SmsCouponHistory record, @Param("example") SmsCouponHistoryExample example);
Example #7
Source File: SmsCouponHistoryMapper.java From macrozheng-mall with MIT License | votes |
int updateByExampleSelective(@Param("record") SmsCouponHistory record, @Param("example") SmsCouponHistoryExample example);
Example #8
Source File: SmsCouponHistoryMapper.java From macrozheng-mall with MIT License | votes |
List<SmsCouponHistory> selectByExample(SmsCouponHistoryExample example);
Example #9
Source File: SmsCouponHistoryMapper.java From macrozheng-mall with MIT License | votes |
int deleteByExample(SmsCouponHistoryExample example);
Example #10
Source File: SmsCouponHistoryMapper.java From macrozheng-mall with MIT License | votes |
int countByExample(SmsCouponHistoryExample example);
Example #11
Source File: SmsCouponHistoryMapper.java From mall with Apache License 2.0 | votes |
int updateByExample(@Param("record") SmsCouponHistory record, @Param("example") SmsCouponHistoryExample example);
Example #12
Source File: SmsCouponHistoryMapper.java From mall with Apache License 2.0 | votes |
int updateByExampleSelective(@Param("record") SmsCouponHistory record, @Param("example") SmsCouponHistoryExample example);
Example #13
Source File: SmsCouponHistoryMapper.java From mall with Apache License 2.0 | votes |
List<SmsCouponHistory> selectByExample(SmsCouponHistoryExample example);
Example #14
Source File: SmsCouponHistoryMapper.java From mall with Apache License 2.0 | votes |
int deleteByExample(SmsCouponHistoryExample example);
Example #15
Source File: SmsCouponHistoryMapper.java From mall-swarm with Apache License 2.0 | votes |
long countByExample(SmsCouponHistoryExample example);
Example #16
Source File: SmsCouponHistoryMapper.java From macrozheng with Apache License 2.0 | votes |
int updateByExample(@Param("record") SmsCouponHistory record, @Param("example") SmsCouponHistoryExample example);
Example #17
Source File: SmsCouponHistoryMapper.java From macrozheng with Apache License 2.0 | votes |
int updateByExampleSelective(@Param("record") SmsCouponHistory record, @Param("example") SmsCouponHistoryExample example);
Example #18
Source File: SmsCouponHistoryMapper.java From macrozheng with Apache License 2.0 | votes |
List<SmsCouponHistory> selectByExample(SmsCouponHistoryExample example);
Example #19
Source File: SmsCouponHistoryMapper.java From macrozheng with Apache License 2.0 | votes |
int deleteByExample(SmsCouponHistoryExample example);
Example #20
Source File: SmsCouponHistoryMapper.java From macrozheng with Apache License 2.0 | votes |
int countByExample(SmsCouponHistoryExample example);
Example #21
Source File: SmsCouponHistoryMapper.java From mall-swarm with Apache License 2.0 | votes |
int updateByExample(@Param("record") SmsCouponHistory record, @Param("example") SmsCouponHistoryExample example);
Example #22
Source File: SmsCouponHistoryMapper.java From mall-swarm with Apache License 2.0 | votes |
int updateByExampleSelective(@Param("record") SmsCouponHistory record, @Param("example") SmsCouponHistoryExample example);
Example #23
Source File: SmsCouponHistoryMapper.java From mall-swarm with Apache License 2.0 | votes |
List<SmsCouponHistory> selectByExample(SmsCouponHistoryExample example);
Example #24
Source File: SmsCouponHistoryMapper.java From mall-swarm with Apache License 2.0 | votes |
int deleteByExample(SmsCouponHistoryExample example);