whywhyo
2023-08-21 df78e9074d62a146d68752d65a65baf8d6efa66f
zhang-content/src/main/java/com/ruoyi/mapper/ZfDoctorMapper.java
@@ -4,6 +4,9 @@
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.ruoyi.domain.ZfDoctor;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Select;
import java.util.List;
/**
 * <p>
@@ -15,5 +18,7 @@
 */
@Mapper
public interface ZfDoctorMapper extends BaseMapper<ZfDoctor> {
    @Select("select distinct type from zf_doctor")
    List<String> listType();
}