Commit ebff4428 authored by Administrator's avatar Administrator

CountyList查询方式修改为只通过taskId

parent fd3d585f
......@@ -20,8 +20,8 @@ public class CountyServiceImpl implements CountyService {
public CountyListMapper countyListMapper;
@Override
public List <CountyEntity> findCountyList( String taskId, String taskStateId, String cardType ) {
List<CountyEntity> county = countyListMapper.findCountyList(taskId,taskStateId,cardType);
public List <CountyEntity> findCountyList( String taskId ) {
List<CountyEntity> county = countyListMapper.findCountyList(taskId);
return county;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment