BusPatientTest.java 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263
  1. package com.nb.admin;
  2. import cn.hutool.core.date.DateField;
  3. import cn.hutool.core.date.DateUtil;
  4. import cn.hutool.core.util.EnumUtil;
  5. import cn.hutool.core.util.RandomUtil;
  6. import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
  7. import com.nb.bus.controller.BusDeviceManualController;
  8. import com.nb.bus.controller.vo.ClinicEditVo;
  9. import com.nb.bus.entity.BusClinicEntity;
  10. import com.nb.bus.entity.BusDeviceManualEntity;
  11. import com.nb.bus.entity.BusInfusionHistoryEntity;
  12. import com.nb.bus.entity.BusPatientEntity;
  13. import com.nb.bus.enums.DeviceManualEnum;
  14. import com.nb.bus.hospital.his.strategy.all.EqualsStrategyHandler;
  15. import com.nb.bus.service.LocalBusClinicService;
  16. import com.nb.bus.service.LocalBusInfusionHistoryService;
  17. import com.nb.bus.service.LocalBusPatientService;
  18. import com.nb.bus.service.dto.PatientDeviceRepeatResult;
  19. import com.nb.core.enums.SexEnum;
  20. import org.junit.Test;
  21. import org.junit.runner.RunWith;
  22. import org.springframework.beans.factory.annotation.Autowired;
  23. import org.springframework.boot.test.context.SpringBootTest;
  24. import org.springframework.test.context.junit4.SpringRunner;
  25. import java.io.UnsupportedEncodingException;
  26. import java.math.BigDecimal;
  27. import java.util.*;
  28. import java.util.stream.Collectors;
  29. /**
  30. * @author lifang
  31. * @version 1.0.0
  32. * @ClassName BusPatientTest.java
  33. * @Description TODO
  34. * @createTime 2022年04月19日 15:08:00
  35. */
  36. @RunWith(SpringRunner.class)
  37. @SpringBootTest(classes = AdminApplication.class)
  38. public class BusPatientTest {
  39. @Autowired
  40. private LocalBusPatientService patientService;
  41. @Autowired
  42. private LocalBusClinicService clinicService;
  43. @Autowired
  44. private LocalBusInfusionHistoryService infusionHistoryService;
  45. @Autowired
  46. private EqualsStrategyHandler equalsStrategyHandler;
  47. @Autowired
  48. private BusDeviceManualController manualController;
  49. @Test
  50. public void test(){
  51. List<PatientDeviceRepeatResult> patientDeviceRepeatResults = patientService.repeatDevice();
  52. System.out.println(getName());
  53. System.out.println(patientDeviceRepeatResults);
  54. }
  55. public static List<String> clinicNames= Arrays.asList("阑尾手术","肛门手术","肝脏手术","感冒","发烧","肠其他手术","结肠造口术","回肠造口术","肠造口闭合术","肠固定术","肠的其他修补","阑尾切除术","腹腔镜下阑尾切除术","阑尾切除术","阑尾残端切除术");
  56. public static List<String> anaTypes=Arrays.asList("局部麻醉","全麻");
  57. public static List<String> analTypes=Arrays.asList("PCIA","PCEA","PCSA","PCNA");
  58. @Test
  59. public void save(){
  60. for (int i = 0; i < 30; i++) {
  61. BusClinicEntity clinic = new BusClinicEntity();
  62. clinic.setStartTime(new Date());
  63. clinic.setSurgeryName(clinicNames.get(RandomUtil.randomInt(clinicNames.size()-1)));
  64. clinic.setPatientName(getName());
  65. clinic.setPatientGender(EnumUtil.likeValueOf(SexEnum.class,RandomUtil.randomInt(1,2)));
  66. clinic.setBedNo(String.valueOf(RandomUtil.randomInt(10,100)));
  67. clinic.setWard(String.valueOf(RandomUtil.randomInt(10,100)));
  68. clinic.setWeight(String.valueOf(RandomUtil.randomInt(90,150)));
  69. clinic.setWeight(String.valueOf(RandomUtil.randomInt(150,200)));
  70. clinic.setAnaDoctor(getName());
  71. clinic.setAnaType(anaTypes.get(RandomUtil.randomInt(anaTypes.size()-1)));
  72. clinic.setAnalType(analTypes.get(RandomUtil.randomInt(analTypes.size()-1)));
  73. clinic.setSurgeryDoctor(getName());
  74. clinic.setConfigPerson(getName());
  75. clinic.setPatientCode(String.valueOf(RandomUtil.randomInt(100000,300000)));
  76. clinic.setMonitorType(true);
  77. clinic.setTenantId("1");
  78. BusPatientEntity patient = BusPatientEntity.of(clinic);
  79. // patientService.save(patient);
  80. // clinicService.save(clinic);
  81. patientService.manualEdit(clinic);
  82. }
  83. }
  84. @Test
  85. public void fill(){
  86. List<BusClinicEntity> clinicList = clinicService.list(new QueryWrapper<BusClinicEntity>().lambda().eq(BusClinicEntity::getMonitorType, true));
  87. Map<String, List<BusClinicEntity>> groupByHospital = clinicList.stream().collect(Collectors.groupingBy(BusClinicEntity::getTenantId));
  88. groupByHospital.forEach((tenantId,list)->{
  89. Map< String, List<BusClinicEntity>> groupByPatientCode = list.stream().collect(Collectors.groupingBy(BusClinicEntity::getPatientCode));
  90. groupByPatientCode.forEach((k,targets)->{
  91. List<BusClinicEntity> source = new ArrayList<>();
  92. for (BusClinicEntity target : targets) {
  93. BusClinicEntity clinic = new BusClinicEntity();
  94. clinic.setStartTime(target.getStartTime()==null?
  95. RandomUtil.randomDate(DateUtil.beginOfMonth(new Date()), DateField.HOUR,-30,30):target.getStartTime());
  96. clinic.setSurgeryName(clinicNames.get(RandomUtil.randomInt(clinicNames.size()-1)));
  97. clinic.setPatientName(getName());
  98. clinic.setPatientGender(EnumUtil.likeValueOf(SexEnum.class,RandomUtil.randomInt(1,2)));
  99. clinic.setBedNo(target.getBedNo());
  100. clinic.setWard(target.getWard());
  101. clinic.setWeight(String.valueOf(RandomUtil.randomInt(90,150)));
  102. clinic.setWeight(String.valueOf(RandomUtil.randomInt(150,200)));
  103. clinic.setAnaDoctor(getName());
  104. clinic.setAnaType(anaTypes.get(RandomUtil.randomInt(anaTypes.size()-1)));
  105. clinic.setAnalType(analTypes.get(RandomUtil.randomInt(analTypes.size()-1)));
  106. clinic.setSurgeryDoctor(getName());
  107. clinic.setConfigPerson(getName());
  108. clinic.setPatientCode(target.getPatientCode());
  109. clinic.setMonitorType(true);
  110. clinic.setTenantId("1");
  111. source.add(clinic);
  112. }
  113. equalsStrategyHandler.handle(source,targets);
  114. });
  115. });
  116. }
  117. public void fillPatientCode(){
  118. List<BusPatientEntity> list = patientService.list();
  119. }
  120. @Test
  121. public void manualSave(){
  122. for (int i = 0; i < 30; i++) {
  123. ClinicEditVo clinicEditVo = new ClinicEditVo();
  124. BusClinicEntity clinic = new BusClinicEntity();
  125. clinic.setStartTime(new Date());
  126. clinic.setSurgeryName(clinicNames.get(RandomUtil.randomInt(clinicNames.size()-1)));
  127. clinic.setPatientAge(RandomUtil.randomInt(15,50));
  128. clinic.setPatientName(getName());
  129. clinic.setPatientGender(EnumUtil.likeValueOf(SexEnum.class,RandomUtil.randomInt(1,2)));
  130. clinic.setBedNo(String.valueOf(RandomUtil.randomInt(10,100)));
  131. clinic.setWard(String.valueOf(RandomUtil.randomInt(10,100)));
  132. clinic.setWeight(String.valueOf(RandomUtil.randomInt(90,150)));
  133. clinic.setWeight(String.valueOf(RandomUtil.randomInt(150,200)));
  134. clinic.setAnaDoctor(getName());
  135. clinic.setAnaType(anaTypes.get(RandomUtil.randomInt(anaTypes.size()-1)));
  136. clinic.setAnalType(analTypes.get(RandomUtil.randomInt(analTypes.size()-1)));
  137. clinic.setSurgeryDoctor(getName());
  138. clinic.setConfigPerson(getName());
  139. clinic.setPatientCode(String.valueOf(RandomUtil.randomInt(100000,300000)));
  140. clinic.setTenantId("1");
  141. clinicEditVo.setClinic(clinic);
  142. BusDeviceManualEntity manual = new BusDeviceManualEntity();
  143. manual.setType(DeviceManualEnum.machine);
  144. manual.setTotalDose(RandomUtil.randomInt(100));
  145. manual.setContinueDose(RandomUtil.randomBigDecimal(BigDecimal.valueOf(10)));
  146. manual.setSelfControlDose(RandomUtil.randomBigDecimal(BigDecimal.valueOf(10)));
  147. manual.setSelfControlLockTime(RandomUtil.randomInt(100));
  148. clinicEditVo.setManual(manual);
  149. // manualController.save(clinicEditVo);
  150. // patientService.save(patient);
  151. // clinicService.save(clinic);
  152. }
  153. }
  154. @Test
  155. public void updateClinicPatientId(){
  156. List<BusClinicEntity> list = clinicService.list();
  157. for (BusClinicEntity clinicEntity : list) {
  158. BusPatientEntity patientEntity = patientService.getOne(new QueryWrapper<BusPatientEntity>()
  159. .lambda().eq(BusPatientEntity::getCode, clinicEntity.getPatientCode())
  160. .eq(BusPatientEntity::getTenantId, clinicEntity.getTenantId()));
  161. if(patientEntity==null){
  162. continue;
  163. }
  164. clinicEntity.setPatientId(patientEntity.getId());
  165. }
  166. clinicService.updateBatchById(list);
  167. }
  168. @Test
  169. public void updateInfusionPatientId(){
  170. List<BusInfusionHistoryEntity> list = infusionHistoryService.list();
  171. for (BusInfusionHistoryEntity infusionHistoryEntity : list) {
  172. BusPatientEntity patientEntity = patientService.getOne(new QueryWrapper<BusPatientEntity>()
  173. .lambda().eq(BusPatientEntity::getCode, infusionHistoryEntity.getPatientCode())
  174. .eq(BusPatientEntity::getTenantId, infusionHistoryEntity.getTenantId()));
  175. if(patientEntity==null){
  176. continue;
  177. }
  178. infusionHistoryEntity.setPatientId(patientEntity.getId());
  179. }
  180. infusionHistoryService.updateBatchById(list);
  181. }
  182. public static void main(String[] args) {
  183. System.out.println(getName());
  184. }
  185. public static String getName(){
  186. Random random=new Random(System.currentTimeMillis());
  187. /* 598 百家姓 */
  188. String[] Surname= {"赵","钱","孙","李","周","吴","郑","王","冯","陈","褚","卫","蒋","沈","韩","杨","朱","秦","尤","许",
  189. "何","吕","施","张","孔","曹","严","华","金","魏","陶","姜","戚","谢","邹","喻","柏","水","窦","章","云","苏","潘","葛","奚","范","彭","郎",
  190. "鲁","韦","昌","马","苗","凤","花","方","俞","任","袁","柳","酆","鲍","史","唐","费","廉","岑","薛","雷","贺","倪","汤","滕","殷",
  191. "罗","毕","郝","邬","安","常","乐","于","时","傅","皮","卞","齐","康","伍","余","元","卜","顾","孟","平","黄","和",
  192. "穆","萧","尹","姚","邵","湛","汪","祁","毛","禹","狄","米","贝","明","臧","计","伏","成","戴","谈","宋","茅","庞","熊","纪","舒",
  193. "屈","项","祝","董","梁","杜","阮","蓝","闵","席","季","麻","强","贾","路","娄","危","江","童","颜","郭","梅","盛","林","刁","钟",
  194. "徐","邱","骆","高","夏","蔡","田","樊","胡","凌","霍","虞","万","支","柯","昝","管","卢","莫","经","房","裘","缪","干","解","应",
  195. "宗","丁","宣","贲","邓","郁","单","杭","洪","包","诸","左","石","崔","吉","钮","龚","程","嵇","邢","滑","裴","陆","荣","翁","荀",
  196. "羊","于","惠","甄","曲","家","封","芮","羿","储","靳","汲","邴","糜","松","井","段","富","巫","乌","焦","巴","弓","牧","隗","山",
  197. "谷","车","侯","宓","蓬","全","郗","班","仰","秋","仲","伊","宫","宁","仇","栾","暴","甘","钭","厉","戎","祖","武","符","刘","景",
  198. "詹","束","龙","叶","幸","司","韶","郜","黎","蓟","溥","印","宿","白","怀","蒲","邰","从","鄂","索","咸","籍","赖","卓","蔺","屠",
  199. "蒙","池","乔","阴","郁","胥","能","苍","双","闻","莘","党","翟","谭","贡","劳","逄","姬","申","扶","堵","冉","宰","郦","雍","却",
  200. "璩","桑","桂","濮","牛","寿","通","边","扈","燕","冀","浦","尚","农","温","别","庄","晏","柴","瞿","阎","充","慕","连","茹","习",
  201. "宦","艾","鱼","容","向","古","易","慎","戈","廖","庾","终","暨","居","衡","步","都","耿","满","弘","匡","国","文","寇","广","禄",
  202. "阙","东","欧","殳","沃","利","蔚","越","夔","隆","师","巩","厍","聂","晁","勾","敖","融","冷","訾","辛","阚","那","简","饶","空",
  203. "曾","毋","沙","乜","养","鞠","须","丰","巢","关","蒯","相","查","后","荆","红","游","郏","竺","权","逯","盖","益","桓","公","仉",
  204. "督","岳","帅","缑","亢","况","郈","有","琴","归","海","晋","楚","闫","法","汝","鄢","涂","钦","商","牟","佘","佴","伯","赏","墨",
  205. "哈","谯","篁","年","爱","阳","佟","言","福","南","火","铁","迟","漆","官","冼","真","展","繁","檀","祭","密","敬","揭","舜","楼",
  206. "疏","冒","浑","挚","胶","随","高","皋","原","种","练","弥","仓","眭","蹇","覃","阿","门","恽","来","綦","召","仪","风","介","巨",
  207. "木","京","狐","郇","虎","枚","抗","达","杞","苌","折","麦","庆","过","竹","端","鲜","皇","亓","老","是","秘","畅","邝","还","宾",
  208. "闾","辜","纵","侴","万俟","司马","上官","欧阳","夏侯","诸葛","闻人","东方","赫连","皇甫","羊舌","尉迟","公羊","澹台","公冶","宗正",
  209. "濮阳","淳于","单于","太叔","申屠","公孙","仲孙","轩辕","令狐","钟离","宇文","长孙","慕容","鲜于","闾丘","司徒","司空","兀官","司寇",
  210. "南门","呼延","子车","颛孙","端木","巫马","公西","漆雕","车正","壤驷","公良","拓跋","夹谷","宰父","谷梁","段干","百里","东郭","微生",
  211. "梁丘","左丘","东门","西门","南宫","第五","公仪","公乘","太史","仲长","叔孙","屈突","尔朱","东乡","相里","胡母","司城","张廖","雍门",
  212. "毋丘","贺兰","綦毋","屋庐","独孤","南郭","北宫","王孙"};
  213. int index=random.nextInt(Surname.length-1);
  214. String name = Surname[index]; //获得一个随机的姓氏
  215. /* 从常用字中选取一个或两个字作为名 */
  216. if(random.nextBoolean()){
  217. name+=getChinese()+getChinese();
  218. }else {
  219. name+=getChinese();
  220. }
  221. return name;
  222. }
  223. public static String getChinese() {
  224. String str = null;
  225. int highPos, lowPos;
  226. Random random = new Random();
  227. highPos = (176 + Math.abs(random.nextInt(71)));//区码,0xA0打头,从第16区开始,即0xB0=11*16=176,16~55一级汉字,56~87二级汉字
  228. random = new Random();
  229. lowPos = 161 + Math.abs(random.nextInt(94));//位码,0xA0打头,范围第1~94列
  230. byte[] bArr = new byte[2];
  231. bArr[0] = (new Integer(highPos)).byteValue();
  232. bArr[1] = (new Integer(lowPos)).byteValue();
  233. try {
  234. str = new String(bArr, "GB2312"); //区位码组合成汉字
  235. } catch (UnsupportedEncodingException e) {
  236. e.printStackTrace();
  237. }
  238. return str;
  239. }
  240. }