package com.landtool.lanbase.modules.sys.dao; import com.landtool.lanbase.modules.sys.entity.SysSysteminfoApply; import com.landtool.lanbase.modules.sys.entity.SysSysteminfoApplyJoinOrgUser; import org.apache.ibatis.annotations.Mapper; import java.util.List; import java.util.Map; @Mapper public interface SysSysteminfoApplyDao extends BaseDao { List queryListByAppid(Map paramMap); Integer selectCount(Map paramMap); Integer queryTotalByAppid(Map paramMap); int updateResult(Map paramMap); SysSysteminfoApply byId(Map map); Integer add(SysSysteminfoApply sysSysteminfoApply); }