| | |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | |
| | | @Mapper |
| | | public interface VolunteerMerchantDao extends BaseMapper<VolunteerMerchant> |
| | | { |
| | | |
| | | |
| | | VolunteerMerchant getById(@Param("id") String id); |
| | | |
| | | |
| | | /** |
| | | * 分页查询 |
| | | * @param |
| | |
| | | * @param |
| | | * @return |
| | | */ |
| | | SysUser getUser(@Param("communityId") String communityId, |
| | | @Param("userName") String userName, |
| | | @Param("userPhone") String userPhone); |
| | | List<SysUser> getUser(@Param("communityId") String communityId, |
| | | @Param("userName") String userName, |
| | | @Param("userPhone") String userPhone); |
| | | |
| | | |
| | | |