考勤,出勤津贴数据生成功能测试类

zm_dev
sy 1 year ago
parent 59f176cd60
commit c034115cfd

@ -0,0 +1,27 @@
import com.engine.attendance.workflow.service.AllowanceService;
import com.engine.attendance.workflow.service.impl.AllowanceServiceImpl;
import com.engine.common.util.ServiceUtil;
import com.google.common.collect.Maps;
import org.junit.Test;
import java.util.Map;
/**
* @Author: sy
* @Description:
* @Date: 2024/4/10
**/
public class Tset_sy {
@Test
public void test() {
System.out.println("hello");
AllowanceService getAllowanceService = ServiceUtil.getService(AllowanceServiceImpl.class);
Map<String,Object> param = Maps.newHashMap();
param.put("startDate","2024-04-01");
param.put("endDate","2024-04-09");
getAllowanceService.addAllowanceRecords(param);
}
}
Loading…
Cancel
Save