package com.yeshi.fanli.vo.user.cloud;
|
|
import java.math.BigDecimal;
|
|
public class CloudOrderMenuVO {
|
private String type;
|
private String desc;
|
private BigDecimal money;
|
|
public String getType() {
|
return type;
|
}
|
|
public void setType(String type) {
|
this.type = type;
|
}
|
|
public String getDesc() {
|
return desc;
|
}
|
|
public void setDesc(String desc) {
|
this.desc = desc;
|
}
|
|
public BigDecimal getMoney() {
|
return money;
|
}
|
|
public void setMoney(BigDecimal money) {
|
this.money = money;
|
}
|
|
}
|