1234567891011121314151617181920 |
- package thyyxxk.webserver.entity.outpatient.wxmall;
- import lombok.Data;
- import java.math.BigDecimal;
- @Data
- public class WxmallPackageItem {
- private String packageId;
- private String hisCode;
- private String hisName;
- private Type type;
- private BigDecimal originPrice;
- private BigDecimal discountPrice;
- private Integer quantity;
- private BigDecimal costAmt;
- private Integer genderRestriction;
- private Integer minAgeRestriction;
- private Integer maxAgeRestriction;
- }
|