yujian
2020-06-11 20bb4f95184453d4addfd27e40a78f3c63bcf6c3
fanli/src/main/java/com/yeshi/fanli/entity/bus/user/cloud/CloudOrderMenuEnum.java
@@ -3,18 +3,23 @@
import com.yeshi.fanli.util.StringUtil;
public enum CloudOrderMenuEnum {
   robotMonth(20.00, 1, 1, "机器人月套餐");
   robotMonth(20.00, 1, 1, "机器人月套餐", "一个月"),
   robotMonth1(20.00, 1, 1, "机器人月套餐", "三个月"),
   robotMonth2(20.00, 1, 1, "机器人月套餐", "半年"),
   robotMonth3(20.00, 1, 1, "机器人月套餐", "一年");
   private double money;
   private Integer type;
   private Integer month;
   private String desc;
   private String descShow;
   private CloudOrderMenuEnum(double money, Integer type, Integer month, String desc) {
   private CloudOrderMenuEnum(double money, Integer type, Integer month, String desc, String descShow) {
      this.money = money;
      this.type = type;
      this.month = month;
      this.desc = desc;
      this.descShow = descShow;
   }
   public double getMoney() {
@@ -33,6 +38,9 @@
      return desc;
   }
   
   public String getDescShow() {
      return descShow;
   }
   public static CloudOrderMenuEnum  getMenuEnum(String type) {
      if (StringUtil.isNullOrEmpty(type))