|
|
@@ -6,6 +6,7 @@ import com.goafanti.common.bo.Result;
|
|
|
import com.goafanti.common.constant.ErrorConstants;
|
|
|
import com.goafanti.common.controller.CertifyApiController;
|
|
|
import com.goafanti.common.error.BusinessException;
|
|
|
+import com.goafanti.common.model.OrderPublicReleaseLog;
|
|
|
import com.goafanti.common.utils.StringUtils;
|
|
|
import com.goafanti.common.utils.excel.NewExcelUtil;
|
|
|
import com.goafanti.weChat.bo.*;
|
|
|
@@ -572,4 +573,17 @@ public class AdminReleaseApiController extends CertifyApiController{
|
|
|
}
|
|
|
return res.data(publicReleaseService.pushExamineMaxDuration(orderNo,status,remarks));
|
|
|
}
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 最大公出日志
|
|
|
+ */
|
|
|
+ @RequestMapping(value = "/maxDurationLog",method = RequestMethod.GET)
|
|
|
+ public Result<List<OrderPublicReleaseLog>> maxDurationLog (String orderNo){
|
|
|
+ Result res =new Result();
|
|
|
+ if (StringUtils.isEmpty(orderNo)){
|
|
|
+ return res().error(buildError(ErrorConstants.PARAM_ERROR,"订单编号"));
|
|
|
+ }
|
|
|
+ return res.data(publicReleaseService.maxDurationLog(orderNo));
|
|
|
+ }
|
|
|
}
|