去除分页插件

This commit is contained in:
季圣华
2020-04-19 15:26:14 +08:00
parent 60234752f2
commit a4895d955a
15 changed files with 84 additions and 215 deletions

View File

@@ -11,7 +11,7 @@ import java.util.Map;
public interface DepotMapperEx {
List<Depot> selectByConditionDepot(
List<DepotEx> selectByConditionDepot(
@Param("name") String name,
@Param("type") Integer type,
@Param("remark") String remark,
@@ -23,7 +23,5 @@ public interface DepotMapperEx {
@Param("type") Integer type,
@Param("remark") String remark);
List<DepotEx> getDepotList(Map<String, Object> params);
int batchDeleteDepotByIds(@Param("updateTime") Date updateTime, @Param("updater") Long updater, @Param("ids") String ids[]);
}

View File

@@ -64,6 +64,8 @@ public interface MaterialMapperEx {
* */
List<Material> getMaterialEnableSerialNumberList(Map<String, Object> parameterMap);
Long getMaterialEnableSerialNumberCount(Map<String, Object> parameterMap);
int batchDeleteMaterialByIds(@Param("updateTime") Date updateTime, @Param("updater") Long updater, @Param("ids") String ids[]);
List<Material> getMaterialListByCategoryIds(@Param("categoryIds") String[] categoryIds);

View File

@@ -13,7 +13,7 @@ import java.util.Map;
public interface UserMapperEx {
List<User> selectByConditionUser(
List<UserEx> selectByConditionUser(
@Param("userName") String userName,
@Param("loginName") String loginName,
@Param("offset") Integer offset,
@@ -23,8 +23,6 @@ public interface UserMapperEx {
@Param("userName") String userName,
@Param("loginName") String loginName);
List<UserEx> getUserList(Map<String, Object> parameterMap);
List<User> getUserListByUserNameOrLoginName(@Param("userName") String userName,
@Param("loginName") String loginName);