Exemplo n.º 1
0
 /**
  * 查询采购列表数据条数
  *
  * @param buyExample
  * @return
  */
 public int searchCount(BuyExample buyExample) {
   return buyMapper.countByExample(buyExample);
 }
Exemplo n.º 2
0
 /**
  * 发布采购信息
  *
  * @param buy
  * @return
  */
 public int add(Buy buy) {
   return buyMapper.insert(buy);
 }
Exemplo n.º 3
0
 /**
  * 展示采购列表
  *
  * @param buyExample
  * @return
  */
 public List<Buy> search(BuyExample buyExample) {
   return buyMapper.selectByExample(buyExample);
 }