UpdateGoodPriceDto.java 708 B

12345678910111213141516171819202122232425262728293031323334353637
  1. package com.kmall.admin.dto;
  2. /**
  3. * @author zhangchuangbiao
  4. * @version 1.0
  5. * 2021-01-21 15:37
  6. */
  7. public class UpdateGoodPriceDto {
  8. private String mseprId;
  9. private String type;
  10. private String customPriceInput;
  11. public String getMseprId() {
  12. return mseprId;
  13. }
  14. public void setMseprId(String mseprId) {
  15. this.mseprId = mseprId;
  16. }
  17. public String getType() {
  18. return type;
  19. }
  20. public void setType(String type) {
  21. this.type = type;
  22. }
  23. public String getCustomPriceInput() {
  24. return customPriceInput;
  25. }
  26. public void setCustomPriceInput(String customPriceInput) {
  27. this.customPriceInput = customPriceInput;
  28. }
  29. }