ActOrderPojo.java 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. package thyyxxk.webserver.pojo.yibao.dismiss;
  2. import lombok.Data;
  3. import java.util.Date;
  4. @Data
  5. public class ActOrderPojo {
  6. private String actOrderNo;
  7. private String orderName;
  8. private String chargeFee;
  9. private String frequCode;
  10. private String cxFlag;
  11. private String drugSpecification;
  12. private Date startTime;
  13. private Date endTime;
  14. private String chargeAmount;
  15. private String chargeStatus;
  16. private String supplyCode;
  17. private String physician;
  18. private String enterOper;
  19. private String orderCode;
  20. private String wardCode;
  21. private String groupNo;
  22. private String chargeDate;
  23. private String chargeCode;
  24. private String chargeName;
  25. private String pageNo;
  26. private String execUnit;
  27. public String getChargeStatus() {
  28. return null == chargeStatus ? "-" : (chargeStatus).trim();
  29. }
  30. public String getActOrderNo() {
  31. return (actOrderNo) == null ? "" : (actOrderNo.split("\\.")[0]).trim();
  32. }
  33. public String getChargeDate() {
  34. return (chargeDate) == null ? "" : (chargeDate.split("\\.")[0]).trim();
  35. }
  36. }