12345678910111213141516171819202122232425262728293031323334353637 |
- package com.kmall.admin.dto;
- /**
- * @author zhangchuangbiao
- * @version 1.0
- * 2021-01-21 15:37
- */
- public class UpdateGoodPriceDto {
- private String mseprId;
- private String type;
- private String customPriceInput;
- public String getMseprId() {
- return mseprId;
- }
- public void setMseprId(String mseprId) {
- this.mseprId = mseprId;
- }
- public String getType() {
- return type;
- }
- public void setType(String type) {
- this.type = type;
- }
- public String getCustomPriceInput() {
- return customPriceInput;
- }
- public void setCustomPriceInput(String customPriceInput) {
- this.customPriceInput = customPriceInput;
- }
- }
|