|
@@ -263,19 +263,19 @@ public interface JianYanJianChaDao {
|
|
|
void xinZengShouMingMuBan(YshZdYjTemplate param);
|
|
|
|
|
|
|
|
|
- @Select("select rtrim(yb_code) as value, rtrim(yb_name) as label " +
|
|
|
+ @Select("select rtrim(yb_code) as code, rtrim(yb_name) as name " +
|
|
|
"from zd_icd_code_new with (NOLOCK) " +
|
|
|
"where (yb_code like #{name} or yb_name like #{name} or yb_py_code like #{name})")
|
|
|
- List<SelectValueObject> yiBaoZhenDuan(String name);
|
|
|
+ List<GetDropdownBox> yiBaoZhenDuan(String name);
|
|
|
|
|
|
- @Select("SELECT rtrim(a.code) as value, " +
|
|
|
- " rtrim(a.name) as label " +
|
|
|
+ @Select("SELECT rtrim(a.code) as code, " +
|
|
|
+ " rtrim(a.name) as name " +
|
|
|
"FROM zd_icd_code a with (NOLOCK) " +
|
|
|
"where (a.py_code like #{name} " +
|
|
|
" or a.code like #{name} " +
|
|
|
" or a.name like #{name}) " +
|
|
|
" and isnull(a.del_flag, '') <> '1'")
|
|
|
- List<SelectValueObject> benYuanLinChuangZhenDuan(String name);
|
|
|
+ List<GetDropdownBox> benYuanLinChuangZhenDuan(String name);
|
|
|
|
|
|
@Select("select tc_no " +
|
|
|
"from zy_tc_yj with (NOLOCK) " +
|