diff --git a/test/Tset_sy.java b/test/Tset_sy.java new file mode 100644 index 0000000..9a8c845 --- /dev/null +++ b/test/Tset_sy.java @@ -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 param = Maps.newHashMap(); + param.put("startDate","2024-04-01"); + param.put("endDate","2024-04-09"); + + getAllowanceService.addAllowanceRecords(param); + + } +}