Exemplo n.º 1
0
 public PurchaseRecordBean insert(PurchaseRecordBean bean) {
   return (PurchaseRecordBean) dao.insert(bean);
 }
Exemplo n.º 2
0
 public List<Map<String, Object>> selectByProductId(String productId) {
   return this.jfomat(dao.selectByProductId(productId));
 }
Exemplo n.º 3
0
 public List<Map<String, Object>> selectByDate(String date) {
   return this.jfomat(dao.selectByDate(date));
 }
Exemplo n.º 4
0
 public List<Map<String, Object>> selectByType(String type) {
   return this.jfomat(dao.selectByType(type));
 }
Exemplo n.º 5
0
 public List<Map<String, Object>> select() {
   return this.jfomat(dao.select());
 }