|
@@ -1,32 +1,56 @@
|
|
|
package cn.hnthyy.thmz.controller;
|
|
|
|
|
|
import cn.hnthyy.thmz.Utils.AddressResolutionUtil;
|
|
|
-import cn.hnthyy.thmz.Utils.AssertUtil;
|
|
|
import cn.hnthyy.thmz.Utils.R;
|
|
|
-import cn.hnthyy.thmz.Utils.TokenUtil;
|
|
|
import cn.hnthyy.thmz.Utils.Tools;
|
|
|
import cn.hnthyy.thmz.comment.UserLoginToken;
|
|
|
import cn.hnthyy.thmz.entity.his.mz.CodeNameEntity;
|
|
|
import cn.hnthyy.thmz.entity.his.mz.MzOrderFrequency;
|
|
|
-import cn.hnthyy.thmz.enums.*;
|
|
|
+import cn.hnthyy.thmz.enums.CertificateTypeEnum;
|
|
|
+import cn.hnthyy.thmz.enums.ClassCodeEnum;
|
|
|
+import cn.hnthyy.thmz.enums.NumberEnum;
|
|
|
+import cn.hnthyy.thmz.enums.OrderFrequencyEnum;
|
|
|
+import cn.hnthyy.thmz.enums.TemplateKindTypeEnum;
|
|
|
+import cn.hnthyy.thmz.enums.TemplateTypeEnum;
|
|
|
import cn.hnthyy.thmz.service.his.RegionService;
|
|
|
-import cn.hnthyy.thmz.service.his.mz.*;
|
|
|
-import cn.hnthyy.thmz.service.his.zd.*;
|
|
|
+import cn.hnthyy.thmz.service.his.mz.MzBillItemService;
|
|
|
+import cn.hnthyy.thmz.service.his.mz.MzOrderFrequencyService;
|
|
|
+import cn.hnthyy.thmz.service.his.mz.MzZdCommonService;
|
|
|
+import cn.hnthyy.thmz.service.his.mz.MzZdDeptNoService;
|
|
|
+import cn.hnthyy.thmz.service.his.mz.MzZdSupplyTypeService;
|
|
|
+import cn.hnthyy.thmz.service.his.mz.MzZdWorkTimeService;
|
|
|
+import cn.hnthyy.thmz.service.his.mz.ZdChargeBaClassService;
|
|
|
+import cn.hnthyy.thmz.service.his.zd.DictDataService;
|
|
|
+import cn.hnthyy.thmz.service.his.zd.JcZdClassService;
|
|
|
+import cn.hnthyy.thmz.service.his.zd.MzYshZdFysmService;
|
|
|
+import cn.hnthyy.thmz.service.his.zd.YshZdPartCodeService;
|
|
|
+import cn.hnthyy.thmz.service.his.zd.ZdChargeItemService;
|
|
|
+import cn.hnthyy.thmz.service.his.zd.ZdIcdCodeService;
|
|
|
+import cn.hnthyy.thmz.service.his.zd.ZdMaritalStatusService;
|
|
|
+import cn.hnthyy.thmz.service.his.zd.ZdMzClassService;
|
|
|
import cn.hnthyy.thmz.service.thmz.UserService;
|
|
|
import cn.hutool.core.convert.Convert;
|
|
|
import cn.hutool.core.util.StrUtil;
|
|
|
import cn.hutool.http.HttpRequest;
|
|
|
import cn.hutool.http.HttpStatus;
|
|
|
-import cn.hutool.http.HttpUtil;
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
import org.apache.commons.lang3.StringUtils;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.beans.factory.annotation.Value;
|
|
|
-import org.springframework.web.bind.annotation.*;
|
|
|
+import org.springframework.web.bind.annotation.GetMapping;
|
|
|
+import org.springframework.web.bind.annotation.PostMapping;
|
|
|
+import org.springframework.web.bind.annotation.RequestBody;
|
|
|
+import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
+import org.springframework.web.bind.annotation.RequestMethod;
|
|
|
+import org.springframework.web.bind.annotation.RequestParam;
|
|
|
+import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
|
import javax.annotation.Resource;
|
|
|
-import javax.servlet.http.HttpServletRequest;
|
|
|
-import java.util.*;
|
|
|
+import java.util.ArrayList;
|
|
|
+import java.util.Arrays;
|
|
|
+import java.util.HashMap;
|
|
|
+import java.util.List;
|
|
|
+import java.util.Map;
|
|
|
|
|
|
@Slf4j
|
|
|
@RestController
|
|
@@ -101,6 +125,14 @@ public class CommonController {
|
|
|
}
|
|
|
|
|
|
|
|
|
+ @UserLoginToken
|
|
|
+ @RequestMapping(value = "/getDownFilePlus", method = {RequestMethod.GET})
|
|
|
+ public R getDownFilePlus() {
|
|
|
+ String dictVlaue = dictDataService.queryDictVlaue("2.9", "down_file_puls", null);
|
|
|
+ return R.ok().put("data", dictVlaue);
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
/**
|
|
|
* 查询门诊分类码
|
|
|
*
|