ServiceNumberDao.java 367 B

123456789101112131415
  1. package thyyxxk.webserver.dao.his.dictionary;
  2. import org.apache.ibatis.annotations.Mapper;
  3. import org.apache.ibatis.annotations.Select;
  4. import thyyxxk.webserver.entity.dictionary.CodeName;
  5. import java.util.List;
  6. @Mapper
  7. public interface ServiceNumberDao {
  8. @Select(" select * from zd_health_education_type ")
  9. List<CodeName> selectHealthEducationType();
  10. }