TopDataVo.java 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. package com.yideb.audit.entity.vo;
  2. import lombok.Data;
  3. /**
  4. * <b>Application name:</b> yideb-audit-statistic <br>
  5. * <b>Application describing: </b> <br>
  6. * <b>Copyright:</b> Copyright &copy; 2019 明医众禾科技(北京)有限责任公司 版权所有。<br>
  7. * <b>Company:</b> 明医众禾科技(北京)有限责任公司 <br>
  8. * <b>@Date:</b> 2020/8/5 16:58 <br>
  9. * <b>@author:</b> <a href="mailto:Lijing@miyzh.com"> Lijing </a> <br>
  10. */
  11. @Data
  12. public class TopDataVo {
  13. /**
  14. * 累计药店注册数量
  15. */
  16. private Integer totalClinicRegCount;
  17. /**
  18. * 累计处方总量
  19. */
  20. private Integer auditCount;
  21. /**
  22. * 本周注册药店
  23. */
  24. private Integer weekClinicRegCount;
  25. /**
  26. * 今日处方总量
  27. */
  28. private Integer todayAuditCount;
  29. /**
  30. * 今日药店数量 (发生业务数据的)
  31. */
  32. private Integer todayClinicCount;
  33. /**
  34. * 今日医生数量 (发生业务数据的)
  35. */
  36. private Integer todayDoctorCount;
  37. /**
  38. * 今日药师数量 (发生业务数据的)
  39. */
  40. private Integer todayPharmacistCount;
  41. }