|
|
@@ -34,7 +34,8 @@ public interface SearchDao {
|
|
|
|
|
|
@Select("SELECT RTRIM(code) as code,rtrim(name) as name," +
|
|
|
"gender_restriction,min_age_restriction,max_age_restriction " +
|
|
|
- "from ${table} where isnull(del_flag,0)!=1 and ${method} like #{content}")
|
|
|
+ "from ${table} where isnull(del_flag,0)!=1 and isnull(mz_flag,0)!=1 " +
|
|
|
+ "and ${method} like #{content}")
|
|
|
IPage<CodeName> searchJcJyItem(IPage<CodeName> iPage, String method, String content, String table);
|
|
|
|
|
|
@Select("select code,name,charge_amount as price from zd_charge_item " +
|