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.
25 lines
901 B
Plaintext
25 lines
901 B
Plaintext
<%@ page import="com.engine.kq.biz.KQWorkTime" %>
|
|
<%@ page import="com.engine.kq.entity.WorkTimeEntity" %>
|
|
<%@ page import="com.engine.kq.entity.TimeScopeEntity" %>
|
|
<%@ page import="java.util.List" %>
|
|
<%@ page import="com.alibaba.fastjson.JSONObject" %>
|
|
<%@ page language="java" contentType="text/html; charset=UTF-8" %>
|
|
|
|
<%
|
|
out.println("-----------start-------------");
|
|
|
|
String resourceid = "138";
|
|
String belongDate = "2023-09-13";
|
|
|
|
KQWorkTime kqWorkTime = new KQWorkTime();
|
|
WorkTimeEntity workTime = kqWorkTime.getWorkTime(resourceid, belongDate);
|
|
out.println("----------------getWorkTime end-----------");
|
|
|
|
List<TimeScopeEntity> workTime1 = workTime.getWorkTime();
|
|
out.println("----------workTime1: "+ JSONObject.toJSONString(workTime1));
|
|
|
|
int workMins = workTime.getWorkMins();
|
|
out.println("-------------workMins: "+ JSONObject.toJSONString(workMins));
|
|
|
|
%>
|