| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- package thyyxxk.webserver.pojo.yibao.dismiss;
- import lombok.Data;
- import java.util.Date;
- @Data
- public class ActOrderPojo {
- private String actOrderNo;
- private String orderName;
- private String chargeFee;
- private String frequCode;
- private String cxFlag;
- private String drugSpecification;
- private Date startTime;
- private Date endTime;
- private String chargeAmount;
- private String chargeStatus;
- private String supplyCode;
- private String physician;
- private String enterOper;
- private String orderCode;
- private String wardCode;
- private String groupNo;
- private String chargeDate;
- private String chargeCode;
- private String chargeName;
- private String pageNo;
- private String execUnit;
- public String getChargeStatus() {
- return null == chargeStatus ? "-" : (chargeStatus).trim();
- }
- public String getActOrderNo() {
- return (actOrderNo) == null ? "" : (actOrderNo.split("\\.")[0]).trim();
- }
- public String getChargeDate() {
- return (chargeDate) == null ? "" : (chargeDate.split("\\.")[0]).trim();
- }
- }
|