|
@@ -522,11 +522,11 @@ public interface XiangMuLuRuDao extends BaseMapper<ZyDetailCharge> {
|
|
|
" serial='00', " +
|
|
|
" group_no='00'," +
|
|
|
" national_code," +
|
|
|
- " national_name " +
|
|
|
- "FROM zd_charge_item a,zd_unit_code b " +
|
|
|
+ " national_name," +
|
|
|
+ " descriptions " +
|
|
|
+ "FROM zd_charge_item a left join zd_unit_code b on (a.exec_unit = b.code) " +
|
|
|
"where isnull(a.del_flag,'') <> '1' and " +
|
|
|
" isnull(a.in_out_flag,'') <> '1' and " +
|
|
|
- " a.exec_unit*=b.code and " +
|
|
|
" (a.py_code like #{pyCode} or a.code like #{pyCode} or a.name like #{pyCode})")
|
|
|
List<ZyDetailCharge> queryXiangMu(String pyCode);
|
|
|
|