Commit 2aaad2bc authored by 季圣华's avatar 季圣华
Browse files

新增收支项目和结算账户功能

parent 55135aca
...@@ -16,8 +16,6 @@ public interface DepotItemIService extends BaseIService<DepotItem> ...@@ -16,8 +16,6 @@ public interface DepotItemIService extends BaseIService<DepotItem>
{ {
void findByType(PageUtil<DepotItem> depotItem, String type, Long MId, String MonthTime,Boolean isPrev)throws JshException; void findByType(PageUtil<DepotItem> depotItem, String type, Long MId, String MonthTime,Boolean isPrev)throws JshException;
void findOrderByMaterial(PageUtil<DepotItem> depotItem)throws JshException;
/** /**
* 导出信息 * 导出信息
* @return * @return
......
...@@ -50,12 +50,6 @@ public class DepotItemService extends BaseService<DepotItem> implements DepotIte ...@@ -50,12 +50,6 @@ public class DepotItemService extends BaseService<DepotItem> implements DepotIte
depotItemDao.findByType(pageUtil, type, MId, MonthTime,isPrev); depotItemDao.findByType(pageUtil, type, MId, MonthTime,isPrev);
} }
@Override
public void findOrderByMaterial(PageUtil<DepotItem> pageUtil) throws JshException
{
depotItemDao.findOrderByMaterial(pageUtil);
}
/** /**
* 导出Excel表格 * 导出Excel表格
*/ */
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment