whyclxw
2025-05-12 ff4cd28ee0535021dcc86d49bfe37545ea2fc1fd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.whyc.mapper;
 
import com.whyc.pojo.db_user.User;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
public interface UserMapper extends CustomMapper<User> {
 
    int addJudge(@Param("name") String name,@Param("phoneNumber") String phoneNumber);
 
    //当前用户所在包机组下所有的用户(下拉)
    List<User> getBaojiUserByUid(@Param("baojiIdList") List<Integer> baojiIdList);
 
}