BusPatientTest.java 13 KB

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