You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
932 B
Java
30 lines
932 B
Java
package web;
|
|
|
|
import com.engine.attendance.component.persongroup.service.SchedulingResultsService;
|
|
import com.engine.attendance.component.persongroup.service.impl.SchedulingResultsServiceImpl;
|
|
import com.engine.common.util.ServiceUtil;
|
|
import com.google.common.collect.Maps;
|
|
import org.junit.Test;
|
|
|
|
|
|
import java.util.Map;
|
|
|
|
public class TestSchedulingResultsAction extends beforlog {
|
|
|
|
@Test
|
|
public void test1() {
|
|
SchedulingResultsService basicsetService = ServiceUtil.getService(SchedulingResultsServiceImpl.class);
|
|
Map<String,Object> params = Maps.newHashMap();
|
|
// params.put("ids","182857,182858,182859,182860");
|
|
// params.put("type","0");
|
|
|
|
params.put("type","1");
|
|
params.put("startDate","2024-07-06");
|
|
params.put("endDate","2024-07-09");
|
|
params.put("pbdxry","31");
|
|
params.put("pbtj","0");
|
|
|
|
basicsetService.deleteBatchSchedule(params);
|
|
}
|
|
}
|