package com.landtool.lanbase.modules.sys.service.impl; import com.landtool.lanbase.modules.sys.dao.SysSysteminfoApplyDao; import com.landtool.lanbase.modules.sys.entity.SysSysteminfoApply; import com.landtool.lanbase.modules.sys.entity.SysSysteminfoApplyJoinOrgUser; import com.landtool.lanbase.modules.sys.service.SysSysteminfoApplyService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import java.util.HashMap; import java.util.List; import java.util.Map; @Service("systeminfoapplyService") public class SysSysteminfoApplyServiceImpl implements SysSysteminfoApplyService { @Autowired private SysSysteminfoApplyDao sysSysteminfoApplyDao; @Override public List queryListByAppid(Map paramMap) { return sysSysteminfoApplyDao.queryListByAppid(paramMap); } @Override public Integer selectCount(Integer appid,Integer auditresult){ Map paramMap = new HashMap(); paramMap.put("appid",appid); paramMap.put("auditresult",auditresult); return sysSysteminfoApplyDao.selectCount(paramMap); } @Override public Integer queryTotalByAppid(Map paramMap){ return sysSysteminfoApplyDao.queryTotalByAppid(paramMap); } @Override public int updateResult(Map paramMap){ return sysSysteminfoApplyDao.updateResult(paramMap); } @Override public SysSysteminfoApply byId(Map map) { return sysSysteminfoApplyDao.byId(map); } @Override public Integer add(SysSysteminfoApply sysSysteminfoApply) { return sysSysteminfoApplyDao.add(sysSysteminfoApply); } }