WxmallPackageItem.java 507 B

1234567891011121314151617181920
  1. package thyyxxk.webserver.entity.outpatient.wxmall;
  2. import lombok.Data;
  3. import java.math.BigDecimal;
  4. @Data
  5. public class WxmallPackageItem {
  6. private String packageId;
  7. private String hisCode;
  8. private String hisName;
  9. private Type type;
  10. private BigDecimal originPrice;
  11. private BigDecimal discountPrice;
  12. private Integer quantity;
  13. private BigDecimal costAmt;
  14. private Integer genderRestriction;
  15. private Integer minAgeRestriction;
  16. private Integer maxAgeRestriction;
  17. }