受访者下拉框后端接口修改

This commit is contained in:
chenglijuan
2026-04-28 15:32:26 +08:00
parent 0cf6cf11aa
commit 153000bef0
6 changed files with 13 additions and 8 deletions
@@ -2,10 +2,11 @@ package com.example.mini_program.mapper;
import com.example.mini_program.entity.ReceptionPersonPO;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import java.util.List;
@Mapper
public interface ReceptionPersonMapper {
List<ReceptionPersonPO> selectReceptionPerson();
List<ReceptionPersonPO> selectReceptionPerson(@Param("department") String department);
}