- package thyyxxk.webserver.dao.his.dictionary;
- import org.apache.ibatis.annotations.Mapper;
- import org.apache.ibatis.annotations.Select;
- import thyyxxk.webserver.entity.dictionary.CodeName;
- import java.util.List;
- @Mapper
- public interface ServiceNumberDao {
- @Select(" select * from zd_health_education_type ")
- List<CodeName> selectHealthEducationType();
- }
|