Browse Source

机构:
增加MybatisPlus框架。
修改BaseController中的异常拦截,加入validation校验的异常拦截返回。
添加 平台产品管理,平台服务管理,云教室流量包管理相关功能。

hgw 3 years ago
parent
commit
b3ee8c4249
58 changed files with 3891 additions and 181 deletions
  1. 28 0
      mec-biz/src/main/java/com/ym/mec/biz/dal/dao/CloudRoomFlowConfigDao.java
  2. 18 0
      mec-biz/src/main/java/com/ym/mec/biz/dal/dao/CloudRoomFlowInfoDao.java
  3. 18 0
      mec-biz/src/main/java/com/ym/mec/biz/dal/dao/CloudRoomFlowRecordDao.java
  4. 20 0
      mec-biz/src/main/java/com/ym/mec/biz/dal/dao/PlatformProductDao.java
  5. 23 0
      mec-biz/src/main/java/com/ym/mec/biz/dal/dao/PlatformServeDao.java
  6. 17 0
      mec-biz/src/main/java/com/ym/mec/biz/dal/dao/PlatformServeDetailDao.java
  7. 18 0
      mec-biz/src/main/java/com/ym/mec/biz/dal/dao/TenantConfigDao.java
  8. 18 0
      mec-biz/src/main/java/com/ym/mec/biz/dal/dao/TenantProductInfoDao.java
  9. 74 0
      mec-biz/src/main/java/com/ym/mec/biz/dal/dto/CloudRoomFlowDto.java
  10. 70 0
      mec-biz/src/main/java/com/ym/mec/biz/dal/dto/PlatformProductDto.java
  11. 70 0
      mec-biz/src/main/java/com/ym/mec/biz/dal/dto/PlatformServeDto.java
  12. 103 0
      mec-biz/src/main/java/com/ym/mec/biz/dal/dto/TenantInfoDto.java
  13. 147 0
      mec-biz/src/main/java/com/ym/mec/biz/dal/entity/CloudRoomFlowConfig.java
  14. 104 0
      mec-biz/src/main/java/com/ym/mec/biz/dal/entity/CloudRoomFlowInfo.java
  15. 131 0
      mec-biz/src/main/java/com/ym/mec/biz/dal/entity/CloudRoomFlowRecord.java
  16. 144 0
      mec-biz/src/main/java/com/ym/mec/biz/dal/entity/PlatformProduct.java
  17. 130 0
      mec-biz/src/main/java/com/ym/mec/biz/dal/entity/PlatformServe.java
  18. 88 0
      mec-biz/src/main/java/com/ym/mec/biz/dal/entity/PlatformServeDetail.java
  19. 156 0
      mec-biz/src/main/java/com/ym/mec/biz/dal/entity/TenantConfig.java
  20. 207 116
      mec-biz/src/main/java/com/ym/mec/biz/dal/entity/TenantInfo.java
  21. 143 0
      mec-biz/src/main/java/com/ym/mec/biz/dal/entity/TenantProductInfo.java
  22. 68 0
      mec-biz/src/main/java/com/ym/mec/biz/dal/vo/PlatformServeInfoVo.java
  23. 75 0
      mec-biz/src/main/java/com/ym/mec/biz/dal/vo/PlatformServeModeVo.java
  24. 40 0
      mec-biz/src/main/java/com/ym/mec/biz/dal/vo/PlatformServePageVo.java
  25. 19 0
      mec-biz/src/main/java/com/ym/mec/biz/service/CloudRoomFlowConfigService.java
  26. 4 0
      mec-biz/src/main/java/com/ym/mec/biz/service/CloudRoomFlowInfoService.java
  27. 4 0
      mec-biz/src/main/java/com/ym/mec/biz/service/CloudRoomFlowRecordService.java
  28. 17 0
      mec-biz/src/main/java/com/ym/mec/biz/service/PlatformProductService.java
  29. 4 0
      mec-biz/src/main/java/com/ym/mec/biz/service/PlatformServeDetailService.java
  30. 24 0
      mec-biz/src/main/java/com/ym/mec/biz/service/PlatformServeService.java
  31. 4 0
      mec-biz/src/main/java/com/ym/mec/biz/service/TenantConfigService.java
  32. 4 0
      mec-biz/src/main/java/com/ym/mec/biz/service/TenantProductInfoService.java
  33. 112 0
      mec-biz/src/main/java/com/ym/mec/biz/service/impl/CloudRoomFlowConfigServiceImpl.java
  34. 21 0
      mec-biz/src/main/java/com/ym/mec/biz/service/impl/CloudRoomFlowInfoServiceImpl.java
  35. 19 0
      mec-biz/src/main/java/com/ym/mec/biz/service/impl/CloudRoomFlowRecordServiceImpl.java
  36. 101 0
      mec-biz/src/main/java/com/ym/mec/biz/service/impl/PlatformProductServiceImpl.java
  37. 17 0
      mec-biz/src/main/java/com/ym/mec/biz/service/impl/PlatformServeDetailServiceImpl.java
  38. 195 0
      mec-biz/src/main/java/com/ym/mec/biz/service/impl/PlatformServeServiceImpl.java
  39. 16 0
      mec-biz/src/main/java/com/ym/mec/biz/service/impl/TenantConfigServiceImpl.java
  40. 19 12
      mec-biz/src/main/java/com/ym/mec/biz/service/impl/TenantInfoServiceImpl.java
  41. 16 0
      mec-biz/src/main/java/com/ym/mec/biz/service/impl/TenantProductInfoServiceImpl.java
  42. 166 0
      mec-biz/src/main/resources/config/mybatis/CloudRoomFlowConfigMapper.xml
  43. 134 0
      mec-biz/src/main/resources/config/mybatis/CloudRoomFlowInfoMapper.xml
  44. 134 0
      mec-biz/src/main/resources/config/mybatis/CloudRoomFlowRecordMapper.xml
  45. 131 0
      mec-biz/src/main/resources/config/mybatis/PlatformProductMapper.xml
  46. 44 0
      mec-biz/src/main/resources/config/mybatis/PlatformServeDetailMapper.xml
  47. 114 0
      mec-biz/src/main/resources/config/mybatis/PlatformServeMapper.xml
  48. 147 0
      mec-biz/src/main/resources/config/mybatis/TenantConfigMapper.xml
  49. 83 51
      mec-biz/src/main/resources/config/mybatis/TenantInfoMapper.xml
  50. 134 0
      mec-biz/src/main/resources/config/mybatis/TenantProductInfoMapper.xml
  51. 8 0
      mec-common/common-core/pom.xml
  52. 36 0
      mec-common/common-core/src/main/java/com/ym/mec/common/config/MyBatisPlusConfig.java
  53. 12 1
      mec-common/common-core/src/main/java/com/ym/mec/common/controller/BaseController.java
  54. 45 0
      mec-common/common-core/src/main/java/com/ym/mec/common/page/PageUtil.java
  55. 1 1
      mec-web/src/main/java/com/ym/mec/web/WebApplication.java
  56. 65 0
      mec-web/src/main/java/com/ym/mec/web/controller/CloudRoomFlowConfigController.java
  57. 58 0
      mec-web/src/main/java/com/ym/mec/web/controller/PlatformProductController.java
  58. 73 0
      mec-web/src/main/java/com/ym/mec/web/controller/PlatformServeController.java

+ 28 - 0
mec-biz/src/main/java/com/ym/mec/biz/dal/dao/CloudRoomFlowConfigDao.java

@@ -0,0 +1,28 @@
+package com.ym.mec.biz.dal.dao;
+
+
+import com.baomidou.mybatisplus.core.mapper.BaseMapper;
+import com.baomidou.mybatisplus.core.metadata.IPage;
+import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
+import com.ym.mec.biz.dal.entity.CloudRoomFlowConfig;
+import org.apache.ibatis.annotations.Param;
+
+import java.util.List;
+
+public interface CloudRoomFlowConfigDao extends BaseMapper<CloudRoomFlowConfig> {
+    int deleteByPrimaryKey(Integer id);
+
+    int insert(CloudRoomFlowConfig record);
+
+    int insertSelective(CloudRoomFlowConfig record);
+
+    CloudRoomFlowConfig selectByPrimaryKey(Integer id);
+
+    int updateByPrimaryKeySelective(CloudRoomFlowConfig record);
+
+    int updateByPrimaryKey(CloudRoomFlowConfig record);
+
+    <T> IPage<T> queryPage(Page<T> page, @Param("minuteUp") Integer minuteUp);
+
+    List<Integer> getGroupMinuteUp();
+}

+ 18 - 0
mec-biz/src/main/java/com/ym/mec/biz/dal/dao/CloudRoomFlowInfoDao.java

@@ -0,0 +1,18 @@
+package com.ym.mec.biz.dal.dao;
+
+
+import com.ym.mec.biz.dal.entity.CloudRoomFlowInfo;
+
+public interface CloudRoomFlowInfoDao {
+    int deleteByPrimaryKey(Integer id);
+
+    int insert(CloudRoomFlowInfo record);
+
+    int insertSelective(CloudRoomFlowInfo record);
+
+    CloudRoomFlowInfo selectByPrimaryKey(Integer id);
+
+    int updateByPrimaryKeySelective(CloudRoomFlowInfo record);
+
+    int updateByPrimaryKey(CloudRoomFlowInfo record);
+}

+ 18 - 0
mec-biz/src/main/java/com/ym/mec/biz/dal/dao/CloudRoomFlowRecordDao.java

@@ -0,0 +1,18 @@
+package com.ym.mec.biz.dal.dao;
+
+
+import com.ym.mec.biz.dal.entity.CloudRoomFlowRecord;
+
+public interface CloudRoomFlowRecordDao {
+    int deleteByPrimaryKey(Integer id);
+
+    int insert(CloudRoomFlowRecord record);
+
+    int insertSelective(CloudRoomFlowRecord record);
+
+    CloudRoomFlowRecord selectByPrimaryKey(Integer id);
+
+    int updateByPrimaryKeySelective(CloudRoomFlowRecord record);
+
+    int updateByPrimaryKey(CloudRoomFlowRecord record);
+}

+ 20 - 0
mec-biz/src/main/java/com/ym/mec/biz/dal/dao/PlatformProductDao.java

@@ -0,0 +1,20 @@
+package com.ym.mec.biz.dal.dao;
+
+
+import com.baomidou.mybatisplus.core.mapper.BaseMapper;
+import com.baomidou.mybatisplus.core.metadata.IPage;
+import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
+import com.ym.mec.biz.dal.entity.PlatformProduct;
+import org.apache.ibatis.annotations.Param;
+
+public interface PlatformProductDao extends BaseMapper<PlatformProduct> {
+    int deleteByPrimaryKey(Integer id);
+
+    int insertSelective(PlatformProduct record);
+
+    PlatformProduct selectByPrimaryKey(Integer id);
+
+    int updateByPrimaryKeySelective(PlatformProduct record);
+
+    <T> IPage<T> queryPage(Page<T> page, @Param("search") String search);
+}

+ 23 - 0
mec-biz/src/main/java/com/ym/mec/biz/dal/dao/PlatformServeDao.java

@@ -0,0 +1,23 @@
+package com.ym.mec.biz.dal.dao;
+
+
+import com.baomidou.mybatisplus.core.mapper.BaseMapper;
+import com.baomidou.mybatisplus.core.metadata.IPage;
+import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
+import com.ym.mec.biz.dal.entity.PlatformServe;
+import com.ym.mec.biz.dal.vo.PlatformServeInfoVo;
+import io.swagger.models.auth.In;
+import org.apache.ibatis.annotations.Param;
+
+public interface PlatformServeDao extends BaseMapper<PlatformServe> {
+
+    PlatformServe selectByPrimaryKey(Integer id);
+
+    int updateByPrimaryKeySelective(PlatformServe record);
+
+    int insert(PlatformServe record);
+
+    <T> IPage<T> queryPage(Page<T> page, @Param("search") String search);
+
+    PlatformServeInfoVo queryInfo(Integer id);
+}

+ 17 - 0
mec-biz/src/main/java/com/ym/mec/biz/dal/dao/PlatformServeDetailDao.java

@@ -0,0 +1,17 @@
+package com.ym.mec.biz.dal.dao;
+
+
+import com.baomidou.mybatisplus.core.mapper.BaseMapper;
+import com.ym.mec.biz.dal.entity.PlatformServeDetail;
+import com.ym.mec.biz.dal.vo.PlatformServeModeVo;
+
+import java.util.List;
+
+public interface PlatformServeDetailDao extends BaseMapper<PlatformServeDetail> {
+
+    int insert(PlatformServeDetail obj);
+
+    int deleteByServeId(Integer serveId);
+
+    List<PlatformServeModeVo> queryDetailById(Integer serveId);
+}

+ 18 - 0
mec-biz/src/main/java/com/ym/mec/biz/dal/dao/TenantConfigDao.java

@@ -0,0 +1,18 @@
+package com.ym.mec.biz.dal.dao;
+
+
+import com.ym.mec.biz.dal.entity.TenantConfig;
+
+public interface TenantConfigDao {
+    int deleteByPrimaryKey(Integer id);
+
+    int insert(TenantConfig record);
+
+    int insertSelective(TenantConfig record);
+
+    TenantConfig selectByPrimaryKey(Integer id);
+
+    int updateByPrimaryKeySelective(TenantConfig record);
+
+    int updateByPrimaryKey(TenantConfig record);
+}

+ 18 - 0
mec-biz/src/main/java/com/ym/mec/biz/dal/dao/TenantProductInfoDao.java

@@ -0,0 +1,18 @@
+package com.ym.mec.biz.dal.dao;
+
+
+import com.ym.mec.biz.dal.entity.TenantProductInfo;
+
+public interface TenantProductInfoDao {
+    int deleteByPrimaryKey(Integer id);
+
+    int insert(TenantProductInfo record);
+
+    int insertSelective(TenantProductInfo record);
+
+    TenantProductInfo selectByPrimaryKey(Integer id);
+
+    int updateByPrimaryKeySelective(TenantProductInfo record);
+
+    int updateByPrimaryKey(TenantProductInfo record);
+}

+ 74 - 0
mec-biz/src/main/java/com/ym/mec/biz/dal/dto/CloudRoomFlowDto.java

@@ -0,0 +1,74 @@
+package com.ym.mec.biz.dal.dto;
+
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+
+import javax.validation.constraints.*;
+import java.io.Serializable;
+import java.math.BigDecimal;
+
+/**
+ * @author hgw
+ * Created by 2021-12-06
+ */
+@ApiModel(value = "云教室流量包配置参数")
+public class CloudRoomFlowDto implements Serializable {
+
+    private Integer id;
+
+    /**
+     * 分钟上限
+     */
+    @Min(value = 1, message = "分钟上限不能小于等于0!")
+    @Max(value = 1000000, message = "分钟上限不能大于一百万分钟!")
+    @NotNull(message = "分钟上限不能为空!")
+    @ApiModelProperty(value = "分钟上限")
+    private Integer minuteUpLimit;
+
+    /**
+     * 单价
+     */
+    @NotNull(message = "单价不能为空!")
+    @DecimalMin(value = "0.01", message = "单价必需大于0元!")
+    @DecimalMax(value = "100000", message = "单价不能大于10万元!")
+    @ApiModelProperty(value = "单价")
+    private BigDecimal price;
+
+    /**
+     * 备注
+     */
+    @ApiModelProperty(value = "备注")
+    private String remark;
+
+    public Integer getId() {
+        return id;
+    }
+
+    public void setId(Integer id) {
+        this.id = id;
+    }
+
+    public Integer getMinuteUpLimit() {
+        return minuteUpLimit;
+    }
+
+    public void setMinuteUpLimit(Integer minuteUpLimit) {
+        this.minuteUpLimit = minuteUpLimit;
+    }
+
+    public BigDecimal getPrice() {
+        return price;
+    }
+
+    public void setPrice(BigDecimal price) {
+        this.price = price;
+    }
+
+    public String getRemark() {
+        return remark;
+    }
+
+    public void setRemark(String remark) {
+        this.remark = remark;
+    }
+}

+ 70 - 0
mec-biz/src/main/java/com/ym/mec/biz/dal/dto/PlatformProductDto.java

@@ -0,0 +1,70 @@
+package com.ym.mec.biz.dal.dto;
+
+import io.swagger.annotations.ApiModelProperty;
+
+import javax.validation.constraints.NotBlank;
+import java.io.Serializable;
+
+/**
+ * @author hgw
+ * Created by 2021-12-06
+ */
+public class PlatformProductDto implements Serializable {
+    /**
+     * 主键
+     */
+    @ApiModelProperty(value="主键")
+    private Integer id;
+
+    /**
+     * 服务名称
+     */
+    @NotBlank(message = "产品名称不能为空!")
+    @ApiModelProperty(value="服务名称")
+    private String name;
+
+    /**
+     * 菜单id
+     */
+    @ApiModelProperty(value="菜单id")
+    private String menuId;
+
+    /**
+     * 备注
+     */
+    @ApiModelProperty(value="备注")
+    private String remark;
+
+
+    public Integer getId() {
+        return id;
+    }
+
+    public void setId(Integer id) {
+        this.id = id;
+    }
+
+    public String getName() {
+        return name;
+    }
+
+    public void setName(String name) {
+        this.name = name;
+    }
+
+    public String getMenuId() {
+        return menuId;
+    }
+
+    public void setMenuId(String menuId) {
+        this.menuId = menuId;
+    }
+
+    public String getRemark() {
+        return remark;
+    }
+
+    public void setRemark(String remark) {
+        this.remark = remark;
+    }
+}

+ 70 - 0
mec-biz/src/main/java/com/ym/mec/biz/dal/dto/PlatformServeDto.java

@@ -0,0 +1,70 @@
+package com.ym.mec.biz.dal.dto;
+
+import com.ym.mec.biz.dal.entity.PlatformServeDetail;
+import io.swagger.annotations.ApiModelProperty;
+
+import javax.validation.constraints.NotBlank;
+import javax.validation.constraints.Size;
+import java.io.Serializable;
+import java.util.List;
+
+/**
+ * @author hgw
+ * Created by 2021-12-03
+ */
+public class PlatformServeDto implements Serializable {
+    /**
+     * 主键
+     */
+    @ApiModelProperty(value = "主键")
+    private Integer id;
+
+    /**
+     * 服务名称
+     */
+    @NotBlank(message = "服务名称不能为空!")
+    @Size(max = 20, message = "服务名称长度不能超过20!")
+    @ApiModelProperty(value = "服务名称")
+    private String name;
+
+    /**
+     * 产品id多个用逗号分割
+     */
+    @ApiModelProperty(value = "产品id多个用逗号分割")
+    private String productId;
+
+    @ApiModelProperty(value = "服务明细")
+    private List<PlatformServeDetail> detailList;
+
+    public String getName() {
+        return name;
+    }
+
+    public void setName(String name) {
+        this.name = name;
+    }
+
+    public String getProductId() {
+        return productId;
+    }
+
+    public void setProductId(String productId) {
+        this.productId = productId;
+    }
+
+    public List<PlatformServeDetail> getDetailList() {
+        return detailList;
+    }
+
+    public void setDetailList(List<PlatformServeDetail> detailList) {
+        this.detailList = detailList;
+    }
+
+    public Integer getId() {
+        return id;
+    }
+
+    public void setId(Integer id) {
+        this.id = id;
+    }
+}

+ 103 - 0
mec-biz/src/main/java/com/ym/mec/biz/dal/dto/TenantInfoDto.java

@@ -0,0 +1,103 @@
+package com.ym.mec.biz.dal.dto;
+
+import java.io.Serializable;
+
+/**
+ * @author hgw
+ * Created by 2021-12-02
+ */
+public class TenantInfoDto implements Serializable {
+
+    private static final long serialVersionUID = 1L;
+
+    /**
+     * 机构名称
+     */
+    private String name;
+
+    /**
+     * 机构联系人
+     */
+    private String contacts;
+
+    /**
+     * 机构联系人电话
+     */
+    private String phone;
+
+    /**
+     * 地址
+     */
+    private String address;
+
+    /**
+     * 机构邮箱
+     */
+    private String email;
+
+    /**
+     * 机构logo
+     */
+    private String logo;
+
+    /**
+     * 客服电话
+     */
+    private String customerServicePhone;
+
+    public String getName() {
+        return name;
+    }
+
+    public void setName(String name) {
+        this.name = name;
+    }
+
+    public String getContacts() {
+        return contacts;
+    }
+
+    public void setContacts(String contacts) {
+        this.contacts = contacts;
+    }
+
+    public String getPhone() {
+        return phone;
+    }
+
+    public void setPhone(String phone) {
+        this.phone = phone;
+    }
+
+    public String getAddress() {
+        return address;
+    }
+
+    public void setAddress(String address) {
+        this.address = address;
+    }
+
+    public String getEmail() {
+        return email;
+    }
+
+    public void setEmail(String email) {
+        this.email = email;
+    }
+
+    public String getLogo() {
+        return logo;
+    }
+
+    public void setLogo(String logo) {
+        this.logo = logo;
+    }
+
+    public String getCustomerServicePhone() {
+        return customerServicePhone;
+    }
+
+    public void setCustomerServicePhone(String customerServicePhone) {
+        this.customerServicePhone = customerServicePhone;
+    }
+}

+ 147 - 0
mec-biz/src/main/java/com/ym/mec/biz/dal/entity/CloudRoomFlowConfig.java

@@ -0,0 +1,147 @@
+package com.ym.mec.biz.dal.entity;
+
+import com.baomidou.mybatisplus.annotation.IdType;
+import com.baomidou.mybatisplus.annotation.TableId;
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+
+import java.io.Serializable;
+import java.math.BigDecimal;
+import java.util.Date;
+
+/**
+ * cloud_room_flow_config
+ *
+ * @author
+ */
+@ApiModel(value = "云教室流量包配置表")
+public class CloudRoomFlowConfig implements Serializable {
+    /**
+     * 主键
+     */
+    @ApiModelProperty(value = "主键")
+    @TableId(value = "id_", type = IdType.AUTO)
+    private Integer id;
+
+    /**
+     * 分钟上限
+     */
+    @ApiModelProperty(value = "分钟上限")
+    private Integer minuteUpLimit;
+
+    /**
+     * 单价
+     */
+    @ApiModelProperty(value = "单价")
+    private BigDecimal price;
+
+    /**
+     * 备注
+     */
+    @ApiModelProperty(value = "备注")
+    private String remark;
+
+    /**
+     * 是否删除0未删除 1删除
+     */
+    @ApiModelProperty(value = "是否删除0未删除 1删除")
+    private Integer deleted;
+
+    /**
+     * 创建人
+     */
+    @ApiModelProperty(value = "创建人")
+    private Integer createdBy;
+
+    /**
+     * 创建时间
+     */
+    @ApiModelProperty(value = "创建时间")
+    private Date createdTime;
+
+    /**
+     * 更新人
+     */
+    @ApiModelProperty(value = "更新人")
+    private Integer updatedBy;
+
+    /**
+     * 更新时间
+     */
+    @ApiModelProperty(value = "更新时间")
+    private Date updatedTime;
+
+    private static final long serialVersionUID = 1L;
+
+    public Integer getId() {
+        return id;
+    }
+
+    public void setId(Integer id) {
+        this.id = id;
+    }
+
+    public Integer getMinuteUpLimit() {
+        return minuteUpLimit;
+    }
+
+    public void setMinuteUpLimit(Integer minuteUpLimit) {
+        this.minuteUpLimit = minuteUpLimit;
+    }
+
+    public BigDecimal getPrice() {
+        return price;
+    }
+
+    public void setPrice(BigDecimal price) {
+        this.price = price;
+    }
+
+    public String getRemark() {
+        return remark;
+    }
+
+    public void setRemark(String remark) {
+        this.remark = remark;
+    }
+
+    public Integer getDeleted() {
+        return deleted;
+    }
+
+    public void setDeleted(Integer deleted) {
+        this.deleted = deleted;
+    }
+
+    public Integer getCreatedBy() {
+        return createdBy;
+    }
+
+    public void setCreatedBy(Integer createdBy) {
+        this.createdBy = createdBy;
+    }
+
+    public Date getCreatedTime() {
+        return createdTime;
+    }
+
+    public void setCreatedTime(Date createdTime) {
+        this.createdTime = createdTime;
+    }
+
+    public Integer getUpdatedBy() {
+        return updatedBy;
+    }
+
+    public void setUpdatedBy(Integer updatedBy) {
+        this.updatedBy = updatedBy;
+    }
+
+    public Date getUpdatedTime() {
+        return updatedTime;
+    }
+
+    public void setUpdatedTime(Date updatedTime) {
+        this.updatedTime = updatedTime;
+    }
+}

+ 104 - 0
mec-biz/src/main/java/com/ym/mec/biz/dal/entity/CloudRoomFlowInfo.java

@@ -0,0 +1,104 @@
+package com.ym.mec.biz.dal.entity;
+
+import com.baomidou.mybatisplus.annotation.IdType;
+import com.baomidou.mybatisplus.annotation.TableId;
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+
+import java.io.Serializable;
+import java.util.Date;
+
+/**
+ * cloud_room_flow_info
+ *
+ * @author
+ */
+@ApiModel(value = "云教室流量包明细表")
+public class CloudRoomFlowInfo implements Serializable {
+    /**
+     * 主键
+     */
+    @ApiModelProperty(value = "主键")
+    @TableId(value = "id_", type = IdType.AUTO)
+    private Integer id;
+
+    /**
+     * 机构id
+     */
+    @ApiModelProperty(value = "机构id")
+    private Integer tenantId;
+
+    /**
+     * 总分钟数
+     */
+    @ApiModelProperty(value = "总分钟数")
+    private Integer totalMinute;
+
+    /**
+     * 已用分钟数
+     */
+    @ApiModelProperty(value = "已用分钟数")
+    private Integer useMinute;
+
+    /**
+     * 更新人
+     */
+    @ApiModelProperty(value = "更新人")
+    private Integer updatedBy;
+
+    /**
+     * 更新时间
+     */
+    @ApiModelProperty(value = "更新时间")
+    private Date updatedTime;
+
+    private static final long serialVersionUID = 1L;
+
+    public Integer getId() {
+        return id;
+    }
+
+    public void setId(Integer id) {
+        this.id = id;
+    }
+
+    public Integer getTenantId() {
+        return tenantId;
+    }
+
+    public void setTenantId(Integer tenantId) {
+        this.tenantId = tenantId;
+    }
+
+    public Integer getTotalMinute() {
+        return totalMinute;
+    }
+
+    public void setTotalMinute(Integer totalMinute) {
+        this.totalMinute = totalMinute;
+    }
+
+    public Integer getUseMinute() {
+        return useMinute;
+    }
+
+    public void setUseMinute(Integer useMinute) {
+        this.useMinute = useMinute;
+    }
+
+    public Integer getUpdatedBy() {
+        return updatedBy;
+    }
+
+    public void setUpdatedBy(Integer updatedBy) {
+        this.updatedBy = updatedBy;
+    }
+
+    public Date getUpdatedTime() {
+        return updatedTime;
+    }
+
+    public void setUpdatedTime(Date updatedTime) {
+        this.updatedTime = updatedTime;
+    }
+}

+ 131 - 0
mec-biz/src/main/java/com/ym/mec/biz/dal/entity/CloudRoomFlowRecord.java

@@ -0,0 +1,131 @@
+package com.ym.mec.biz.dal.entity;
+
+import com.baomidou.mybatisplus.annotation.IdType;
+import com.baomidou.mybatisplus.annotation.TableId;
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+import java.io.Serializable;
+import java.math.BigDecimal;
+import java.util.Date;
+
+/**
+ * cloud_room_flow_record
+ * @author 
+ */
+@ApiModel(value="机构的云教室流量包购买记录表")
+public class CloudRoomFlowRecord implements Serializable {
+    /**
+     * 主键
+     */
+    @ApiModelProperty(value="主键")
+    @TableId(value = "id_", type = IdType.AUTO)
+    private Integer id;
+
+    /**
+     * 机构产品设置表id
+     */
+    @ApiModelProperty(value="机构产品设置表id")
+    private Integer tenantId;
+
+    /**
+     * 云教室配置对应的id
+     */
+    @ApiModelProperty(value="云教室配置对应的id")
+    private Integer cloudRoomConfigId;
+
+    /**
+     * 购买的分钟
+     */
+    @ApiModelProperty(value="购买的分钟")
+    private Integer minute;
+
+    /**
+     * 合同价
+     */
+    @ApiModelProperty(value="合同价")
+    private BigDecimal contractPrice;
+
+    /**
+     * 单价
+     */
+    @ApiModelProperty(value="单价")
+    private BigDecimal price;
+
+    /**
+     * 创建人
+     */
+    @ApiModelProperty(value="创建人")
+    private Integer createdBy;
+
+    /**
+     * 创建时间
+     */
+    @ApiModelProperty(value="创建时间")
+    private Date createdTime;
+
+    private static final long serialVersionUID = 1L;
+
+    public Integer getId() {
+        return id;
+    }
+
+    public void setId(Integer id) {
+        this.id = id;
+    }
+
+    public Integer getTenantId() {
+        return tenantId;
+    }
+
+    public void setTenantId(Integer tenantId) {
+        this.tenantId = tenantId;
+    }
+
+    public Integer getCloudRoomConfigId() {
+        return cloudRoomConfigId;
+    }
+
+    public void setCloudRoomConfigId(Integer cloudRoomConfigId) {
+        this.cloudRoomConfigId = cloudRoomConfigId;
+    }
+
+    public Integer getMinute() {
+        return minute;
+    }
+
+    public void setMinute(Integer minute) {
+        this.minute = minute;
+    }
+
+    public BigDecimal getContractPrice() {
+        return contractPrice;
+    }
+
+    public void setContractPrice(BigDecimal contractPrice) {
+        this.contractPrice = contractPrice;
+    }
+
+    public BigDecimal getPrice() {
+        return price;
+    }
+
+    public void setPrice(BigDecimal price) {
+        this.price = price;
+    }
+
+    public Integer getCreatedBy() {
+        return createdBy;
+    }
+
+    public void setCreatedBy(Integer createdBy) {
+        this.createdBy = createdBy;
+    }
+
+    public Date getCreatedTime() {
+        return createdTime;
+    }
+
+    public void setCreatedTime(Date createdTime) {
+        this.createdTime = createdTime;
+    }
+}

+ 144 - 0
mec-biz/src/main/java/com/ym/mec/biz/dal/entity/PlatformProduct.java

@@ -0,0 +1,144 @@
+package com.ym.mec.biz.dal.entity;
+
+import com.baomidou.mybatisplus.annotation.IdType;
+import com.baomidou.mybatisplus.annotation.TableId;
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+import java.io.Serializable;
+import java.util.Date;
+
+/**
+ * platform_product
+ * @author 
+ */
+@ApiModel(value="产品管理")
+public class PlatformProduct implements Serializable {
+    /**
+     * 主键
+     */
+    @ApiModelProperty(value="主键")
+    @TableId(value = "id_", type = IdType.AUTO)
+    private Integer id;
+
+    /**
+     * 产品名称
+     */
+    @ApiModelProperty(value="产品名称")
+    private String name;
+
+    /**
+     * 菜单id
+     */
+    @ApiModelProperty(value="菜单id")
+    private String menuId;
+
+    /**
+     * 备注
+     */
+    @ApiModelProperty(value="备注")
+    private String remark;
+
+    /**
+     * 是否删除0未删除 1删除
+     */
+    @ApiModelProperty(value="是否删除0未删除 1删除")
+    private Integer deleted = 0;
+
+    /**
+     * 创建人
+     */
+    @ApiModelProperty(value="创建人")
+    private Integer createdBy;
+
+    /**
+     * 创建时间
+     */
+    @ApiModelProperty(value="创建时间")
+    private Date createdTime;
+
+    /**
+     * 更新人
+     */
+    @ApiModelProperty(value="更新人")
+    private Integer updatedBy;
+
+    /**
+     * 更新时间
+     */
+    @ApiModelProperty(value="更新时间")
+    private Date updatedTime;
+
+    private static final long serialVersionUID = 1L;
+
+    public Integer getId() {
+        return id;
+    }
+
+    public void setId(Integer id) {
+        this.id = id;
+    }
+
+    public String getName() {
+        return name;
+    }
+
+    public void setName(String name) {
+        this.name = name;
+    }
+
+    public String getMenuId() {
+        return menuId;
+    }
+
+    public void setMenuId(String menuId) {
+        this.menuId = menuId;
+    }
+
+    public String getRemark() {
+        return remark;
+    }
+
+    public void setRemark(String remark) {
+        this.remark = remark;
+    }
+
+    public Integer getDeleted() {
+        return deleted;
+    }
+
+    public void setDeleted(Integer deleted) {
+        this.deleted = deleted;
+    }
+
+    public Integer getCreatedBy() {
+        return createdBy;
+    }
+
+    public void setCreatedBy(Integer createdBy) {
+        this.createdBy = createdBy;
+    }
+
+    public Date getCreatedTime() {
+        return createdTime;
+    }
+
+    public void setCreatedTime(Date createdTime) {
+        this.createdTime = createdTime;
+    }
+
+    public Integer getUpdatedBy() {
+        return updatedBy;
+    }
+
+    public void setUpdatedBy(Integer updatedBy) {
+        this.updatedBy = updatedBy;
+    }
+
+    public Date getUpdatedTime() {
+        return updatedTime;
+    }
+
+    public void setUpdatedTime(Date updatedTime) {
+        this.updatedTime = updatedTime;
+    }
+}

+ 130 - 0
mec-biz/src/main/java/com/ym/mec/biz/dal/entity/PlatformServe.java

@@ -0,0 +1,130 @@
+package com.ym.mec.biz.dal.entity;
+
+import com.baomidou.mybatisplus.annotation.IdType;
+import com.baomidou.mybatisplus.annotation.TableId;
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+import java.io.Serializable;
+import java.util.Date;
+
+/**
+ * platform_product
+ * @author 
+ */
+@ApiModel(value="产品管理")
+public class PlatformServe implements Serializable {
+    /**
+     * 主键
+     */
+    @ApiModelProperty(value="主键")
+    @TableId(value = "id_", type = IdType.AUTO)
+    private Integer id;
+
+    /**
+     * 服务名称
+     */
+    @ApiModelProperty(value="服务名称")
+    private String name;
+
+    /**
+     * 产品id多个用逗号分割
+     */
+    @ApiModelProperty(value="产品id多个用逗号分割")
+    private String productId;
+
+    /**
+     * 是否删除0未删除 1删除
+     */
+    @ApiModelProperty(value="是否删除0未删除 1删除")
+    private Integer deleted;
+
+    /**
+     * 创建人
+     */
+    @ApiModelProperty(value="创建人")
+    private Integer createdBy;
+
+    /**
+     * 创建时间
+     */
+    @ApiModelProperty(value="创建时间")
+    private Date createdTime;
+
+    /**
+     * 更新人
+     */
+    @ApiModelProperty(value="更新人")
+    private Integer updatedBy;
+
+    /**
+     * 更新时间
+     */
+    @ApiModelProperty(value="更新时间")
+    private Date updatedTime;
+
+    private static final long serialVersionUID = 1L;
+
+    public Integer getId() {
+        return id;
+    }
+
+    public void setId(Integer id) {
+        this.id = id;
+    }
+
+    public String getName() {
+        return name;
+    }
+
+    public void setName(String name) {
+        this.name = name;
+    }
+
+    public String getProductId() {
+        return productId;
+    }
+
+    public void setProductId(String productId) {
+        this.productId = productId;
+    }
+
+    public Integer getDeleted() {
+        return deleted;
+    }
+
+    public void setDeleted(Integer deleted) {
+        this.deleted = deleted;
+    }
+
+    public Integer getCreatedBy() {
+        return createdBy;
+    }
+
+    public void setCreatedBy(Integer createdBy) {
+        this.createdBy = createdBy;
+    }
+
+    public Date getCreatedTime() {
+        return createdTime;
+    }
+
+    public void setCreatedTime(Date createdTime) {
+        this.createdTime = createdTime;
+    }
+
+    public Integer getUpdatedBy() {
+        return updatedBy;
+    }
+
+    public void setUpdatedBy(Integer updatedBy) {
+        this.updatedBy = updatedBy;
+    }
+
+    public Date getUpdatedTime() {
+        return updatedTime;
+    }
+
+    public void setUpdatedTime(Date updatedTime) {
+        this.updatedTime = updatedTime;
+    }
+}

+ 88 - 0
mec-biz/src/main/java/com/ym/mec/biz/dal/entity/PlatformServeDetail.java

@@ -0,0 +1,88 @@
+package com.ym.mec.biz.dal.entity;
+
+import com.baomidou.mybatisplus.annotation.IdType;
+import com.baomidou.mybatisplus.annotation.TableId;
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+import java.io.Serializable;
+import java.math.BigDecimal;
+
+/**
+ * platform_serve_detail
+ * @author 
+ */
+@ApiModel(value="服务管理明细")
+public class PlatformServeDetail implements Serializable {
+    /**
+     * 主键
+     */
+    @ApiModelProperty(value="主键")
+    @TableId(value = "id_", type = IdType.AUTO)
+    private Integer id;
+
+    /**
+     * 服务管理表id
+     */
+    @ApiModelProperty(value="服务管理表id")
+    private Integer serveId;
+
+    /**
+     * 付费模式 月/年
+     */
+    @ApiModelProperty(value="付费模式 月/年")
+    private String mode;
+
+    /**
+     * 学员上限
+     */
+    @ApiModelProperty(value="学员上限")
+    private Integer studentUpLimit;
+
+    /**
+     * 服务原价
+     */
+    @ApiModelProperty(value="服务原价")
+    private BigDecimal originalPrice;
+
+    private static final long serialVersionUID = 1L;
+
+    public Integer getId() {
+        return id;
+    }
+
+    public void setId(Integer id) {
+        this.id = id;
+    }
+
+    public Integer getServeId() {
+        return serveId;
+    }
+
+    public void setServeId(Integer serveId) {
+        this.serveId = serveId;
+    }
+
+    public String getMode() {
+        return mode;
+    }
+
+    public void setMode(String mode) {
+        this.mode = mode;
+    }
+
+    public Integer getStudentUpLimit() {
+        return studentUpLimit;
+    }
+
+    public void setStudentUpLimit(Integer studentUpLimit) {
+        this.studentUpLimit = studentUpLimit;
+    }
+
+    public BigDecimal getOriginalPrice() {
+        return originalPrice;
+    }
+
+    public void setOriginalPrice(BigDecimal originalPrice) {
+        this.originalPrice = originalPrice;
+    }
+}

+ 156 - 0
mec-biz/src/main/java/com/ym/mec/biz/dal/entity/TenantConfig.java

@@ -0,0 +1,156 @@
+package com.ym.mec.biz.dal.entity;
+
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+import java.io.Serializable;
+import java.math.BigDecimal;
+import java.util.Date;
+
+/**
+ * tenant_config
+ * @author 
+ */
+@ApiModel(value="机构配置表")
+public class TenantConfig implements Serializable {
+    /**
+     * 主键
+     */
+    @ApiModelProperty(value="主键")
+    private Integer id;
+
+    /**
+     * 机构id
+     */
+    @ApiModelProperty(value="机构id")
+    private Integer tenantId;
+
+    /**
+     * 手续费率
+     */
+    @ApiModelProperty(value="手续费率")
+    private BigDecimal chargeRate;
+
+    /**
+     * 可用教材id,多个用逗号分割
+     */
+    @ApiModelProperty(value="可用教材id,多个用逗号分割")
+    private String teachingMaterialId;
+
+    /**
+     * 每月分润/元
+     */
+    @ApiModelProperty(value="每月分润/元")
+    private BigDecimal monthDivide;
+
+    /**
+     * 每季度分润/元
+     */
+    @ApiModelProperty(value="每季度分润/元")
+    private BigDecimal quarterDivide;
+
+    /**
+     * 每半年分润/元
+     */
+    @ApiModelProperty(value="每半年分润/元")
+    private BigDecimal halfYearDivide;
+
+    /**
+     * 每年分润/元
+     */
+    @ApiModelProperty(value="每年分润/元")
+    private BigDecimal yearDivide;
+
+    /**
+     * 更新人
+     */
+    @ApiModelProperty(value="更新人")
+    private Integer updatedBy;
+
+    /**
+     * 更新时间
+     */
+    @ApiModelProperty(value="更新时间")
+    private Date updatedTime;
+
+    private static final long serialVersionUID = 1L;
+
+    public Integer getId() {
+        return id;
+    }
+
+    public void setId(Integer id) {
+        this.id = id;
+    }
+
+    public Integer getTenantId() {
+        return tenantId;
+    }
+
+    public void setTenantId(Integer tenantId) {
+        this.tenantId = tenantId;
+    }
+
+    public BigDecimal getChargeRate() {
+        return chargeRate;
+    }
+
+    public void setChargeRate(BigDecimal chargeRate) {
+        this.chargeRate = chargeRate;
+    }
+
+    public String getTeachingMaterialId() {
+        return teachingMaterialId;
+    }
+
+    public void setTeachingMaterialId(String teachingMaterialId) {
+        this.teachingMaterialId = teachingMaterialId;
+    }
+
+    public BigDecimal getMonthDivide() {
+        return monthDivide;
+    }
+
+    public void setMonthDivide(BigDecimal monthDivide) {
+        this.monthDivide = monthDivide;
+    }
+
+    public BigDecimal getQuarterDivide() {
+        return quarterDivide;
+    }
+
+    public void setQuarterDivide(BigDecimal quarterDivide) {
+        this.quarterDivide = quarterDivide;
+    }
+
+    public BigDecimal getHalfYearDivide() {
+        return halfYearDivide;
+    }
+
+    public void setHalfYearDivide(BigDecimal halfYearDivide) {
+        this.halfYearDivide = halfYearDivide;
+    }
+
+    public BigDecimal getYearDivide() {
+        return yearDivide;
+    }
+
+    public void setYearDivide(BigDecimal yearDivide) {
+        this.yearDivide = yearDivide;
+    }
+
+    public Integer getUpdatedBy() {
+        return updatedBy;
+    }
+
+    public void setUpdatedBy(Integer updatedBy) {
+        this.updatedBy = updatedBy;
+    }
+
+    public Date getUpdatedTime() {
+        return updatedTime;
+    }
+
+    public void setUpdatedTime(Date updatedTime) {
+        this.updatedTime = updatedTime;
+    }
+}

+ 207 - 116
mec-biz/src/main/java/com/ym/mec/biz/dal/entity/TenantInfo.java

@@ -2,124 +2,215 @@ package com.ym.mec.biz.dal.entity;
 
 import org.apache.commons.lang3.builder.ToStringBuilder;
 
+import java.io.Serializable;
+import java.util.Date;
+
 /**
+ * 机构信息表
  * 对应数据库表(tenant_info):
  */
-public class TenantInfo {
-
-	/**  */
-	private Integer id;
-	
-	/** 机构名称 */
-	private String name;
-	
-	/** 机构地址 */
-	private String address;
-	
-	/** 域名 */
-	private String domainName;
-	
-	/** logo链接 */
-	private String logoUrl;
-	
-	/** 联系人 */
-	private String contactName;
-	
-	/** 联系电话 */
-	private String contactPhone;
-	
-	/** 数据源 */
-	private String dataSource;
-	
-	/**  */
-	private java.util.Date createTime;
-	
-	/**  */
-	private java.util.Date updateTime;
-	
-	public void setId(Integer id){
-		this.id = id;
-	}
-	
-	public Integer getId(){
-		return this.id;
-	}
-			
-	public void setName(String name){
-		this.name = name;
-	}
-	
-	public String getName(){
-		return this.name;
-	}
-			
-	public void setAddress(String address){
-		this.address = address;
-	}
-	
-	public String getAddress(){
-		return this.address;
-	}
-			
-	public void setDomainName(String domainName){
-		this.domainName = domainName;
-	}
-	
-	public String getDomainName(){
-		return this.domainName;
-	}
-			
-	public void setLogoUrl(String logoUrl){
-		this.logoUrl = logoUrl;
-	}
-	
-	public String getLogoUrl(){
-		return this.logoUrl;
-	}
-			
-	public void setContactName(String contactName){
-		this.contactName = contactName;
-	}
-	
-	public String getContactName(){
-		return this.contactName;
-	}
-			
-	public void setContactPhone(String contactPhone){
-		this.contactPhone = contactPhone;
-	}
-	
-	public String getContactPhone(){
-		return this.contactPhone;
-	}
-			
-	public void setDataSource(String dataSource){
-		this.dataSource = dataSource;
-	}
-	
-	public String getDataSource(){
-		return this.dataSource;
-	}
-			
-	public void setCreateTime(java.util.Date createTime){
-		this.createTime = createTime;
-	}
-	
-	public java.util.Date getCreateTime(){
-		return this.createTime;
-	}
-			
-	public void setUpdateTime(java.util.Date updateTime){
-		this.updateTime = updateTime;
-	}
-	
-	public java.util.Date getUpdateTime(){
-		return this.updateTime;
-	}
-			
-	@Override
-	public String toString() {
-		return ToStringBuilder.reflectionToString(this);
-	}
+public class TenantInfo implements Serializable {
+
+    private static final long serialVersionUID = 1L;
+
+    /**
+     * 机构id
+     */
+    private Integer id;
+
+    /**
+     * 机构名称
+     */
+    private String name;
+
+    /**
+     * 机构联系人
+     */
+    private String contacts;
+
+    /**
+     * 机构联系人电话
+     */
+    private String phone;
+
+    /**
+     * 地址
+     */
+    private String address;
+
+    /**
+     * 机构邮箱
+     */
+    private String email;
+
+    /**
+     * 机构logo
+     */
+    private String logo;
+
+    /**
+     * 客服电话
+     */
+    private String customerServicePhone;
+
+    /**
+     * 域名
+     */
+    private String domainName;
+
+    /**
+     * 数据源
+     */
+    private String dataSource;
+
+    /**
+     * 状态0 草稿 1启动 2停用
+     */
+    private Integer state;
+
+    /**
+     * 创建人
+     */
+    private Integer createdBy;
+
+    /**
+     * 创建时间
+     */
+    private Date createdTime;
+
+    /**
+     * 更新人
+     */
+    private Integer updatedBy;
+
+    /**
+     * 更新时间
+     */
+    private Date updatedTime;
+
+    public Integer getId() {
+        return id;
+    }
+
+    public void setId(Integer id) {
+        this.id = id;
+    }
+
+    public String getName() {
+        return name;
+    }
+
+    public void setName(String name) {
+        this.name = name;
+    }
+
+    public String getContacts() {
+        return contacts;
+    }
+
+    public void setContacts(String contacts) {
+        this.contacts = contacts;
+    }
+
+    public String getPhone() {
+        return phone;
+    }
+
+    public void setPhone(String phone) {
+        this.phone = phone;
+    }
+
+    public String getAddress() {
+        return address;
+    }
+
+    public void setAddress(String address) {
+        this.address = address;
+    }
+
+    public String getEmail() {
+        return email;
+    }
+
+    public void setEmail(String email) {
+        this.email = email;
+    }
+
+    public String getLogo() {
+        return logo;
+    }
+
+    public void setLogo(String logo) {
+        this.logo = logo;
+    }
+
+    public String getCustomerServicePhone() {
+        return customerServicePhone;
+    }
+
+    public void setCustomerServicePhone(String customerServicePhone) {
+        this.customerServicePhone = customerServicePhone;
+    }
+
+    public String getDomainName() {
+        return domainName;
+    }
+
+    public void setDomainName(String domainName) {
+        this.domainName = domainName;
+    }
+
+    public String getDataSource() {
+        return dataSource;
+    }
+
+    public void setDataSource(String dataSource) {
+        this.dataSource = dataSource;
+    }
+
+    public Integer getState() {
+        return state;
+    }
+
+    public void setState(Integer state) {
+        this.state = state;
+    }
+
+    public Date getCreatedTime() {
+        return createdTime;
+    }
+
+    public void setCreatedTime(Date createdTime) {
+        this.createdTime = createdTime;
+    }
+
+    public Date getUpdatedTime() {
+        return updatedTime;
+    }
+
+    public void setUpdatedTime(Date updatedTime) {
+        this.updatedTime = updatedTime;
+    }
+
+    public Integer getCreatedBy() {
+        return createdBy;
+    }
+
+    public void setCreatedBy(Integer createdBy) {
+        this.createdBy = createdBy;
+    }
+
+    public Integer getUpdatedBy() {
+        return updatedBy;
+    }
+
+    public void setUpdatedBy(Integer updatedBy) {
+        this.updatedBy = updatedBy;
+    }
+
+    @Override
+    public String toString() {
+        return ToStringBuilder.reflectionToString(this);
+    }
 
 }

+ 143 - 0
mec-biz/src/main/java/com/ym/mec/biz/dal/entity/TenantProductInfo.java

@@ -0,0 +1,143 @@
+package com.ym.mec.biz.dal.entity;
+
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+import java.io.Serializable;
+import java.math.BigDecimal;
+import java.util.Date;
+
+/**
+ * tenant_product_info
+ * @author 
+ */
+@ApiModel(value="机构产品设置表")
+public class TenantProductInfo implements Serializable {
+    /**
+     * 主键
+     */
+    @ApiModelProperty(value="主键")
+    private Integer id;
+
+    /**
+     * 机构id
+     */
+    @ApiModelProperty(value="机构id")
+    private Integer tenantId;
+
+    /**
+     * 选择的服务的id
+     */
+    @ApiModelProperty(value="选择的服务的id")
+    private Integer serveId;
+
+    /**
+     * 服务的付费类型id
+     */
+    @ApiModelProperty(value="服务的付费类型id")
+    private Integer serveDetailId;
+
+    /**
+     * 原价
+     */
+    @ApiModelProperty(value="原价")
+    private String originalPrice;
+
+    /**
+     * 合同价
+     */
+    @ApiModelProperty(value="合同价")
+    private BigDecimal contractPrice;
+
+    /**
+     * 有效期(数字-结合有效期单位)
+     */
+    @ApiModelProperty(value="有效期(数字-结合有效期单位)")
+    private Integer expiryCount;
+
+    /**
+     * 有效期单位(年/月)
+     */
+    @ApiModelProperty(value="有效期单位(年/月)")
+    private String expiryUnit;
+
+    /**
+     * 有效期(具体到期时间)
+     */
+    @ApiModelProperty(value="有效期(具体到期时间)")
+    private Date expiryData;
+
+    private static final long serialVersionUID = 1L;
+
+    public Integer getId() {
+        return id;
+    }
+
+    public void setId(Integer id) {
+        this.id = id;
+    }
+
+    public Integer getTenantId() {
+        return tenantId;
+    }
+
+    public void setTenantId(Integer tenantId) {
+        this.tenantId = tenantId;
+    }
+
+    public Integer getServeId() {
+        return serveId;
+    }
+
+    public void setServeId(Integer serveId) {
+        this.serveId = serveId;
+    }
+
+    public Integer getServeDetailId() {
+        return serveDetailId;
+    }
+
+    public void setServeDetailId(Integer serveDetailId) {
+        this.serveDetailId = serveDetailId;
+    }
+
+    public String getOriginalPrice() {
+        return originalPrice;
+    }
+
+    public void setOriginalPrice(String originalPrice) {
+        this.originalPrice = originalPrice;
+    }
+
+    public BigDecimal getContractPrice() {
+        return contractPrice;
+    }
+
+    public void setContractPrice(BigDecimal contractPrice) {
+        this.contractPrice = contractPrice;
+    }
+
+    public Integer getExpiryCount() {
+        return expiryCount;
+    }
+
+    public void setExpiryCount(Integer expiryCount) {
+        this.expiryCount = expiryCount;
+    }
+
+    public String getExpiryUnit() {
+        return expiryUnit;
+    }
+
+    public void setExpiryUnit(String expiryUnit) {
+        this.expiryUnit = expiryUnit;
+    }
+
+    public Date getExpiryData() {
+        return expiryData;
+    }
+
+    public void setExpiryData(Date expiryData) {
+        this.expiryData = expiryData;
+    }
+
+}

+ 68 - 0
mec-biz/src/main/java/com/ym/mec/biz/dal/vo/PlatformServeInfoVo.java

@@ -0,0 +1,68 @@
+package com.ym.mec.biz.dal.vo;
+
+import com.ym.mec.biz.dal.entity.PlatformServeDetail;
+import io.swagger.annotations.ApiModelProperty;
+
+import java.io.Serializable;
+import java.util.List;
+
+/**
+ * @author hgw
+ * Created by 2021-12-03
+ */
+public class PlatformServeInfoVo implements Serializable {
+
+    /**
+     * 主键
+     */
+    @ApiModelProperty(value="主键")
+    private Integer id;
+
+    /**
+     * 服务名称
+     */
+    @ApiModelProperty(value="服务名称")
+    private String name;
+
+    /**
+     * 产品id多个用逗号分割
+     */
+    private String productId;
+
+    /**
+     * 详情
+     */
+    private List<PlatformServeDetail> detailList;
+
+    public Integer getId() {
+        return id;
+    }
+
+    public void setId(Integer id) {
+        this.id = id;
+    }
+
+    public String getName() {
+        return name;
+    }
+
+    public void setName(String name) {
+        this.name = name;
+    }
+
+    public String getProductId() {
+        return productId;
+    }
+
+    public void setProductId(String productId) {
+        this.productId = productId;
+    }
+
+    public List<PlatformServeDetail> getDetailList() {
+        return detailList;
+    }
+
+    public void setDetailList(List<PlatformServeDetail> detailList) {
+        this.detailList = detailList;
+    }
+}

+ 75 - 0
mec-biz/src/main/java/com/ym/mec/biz/dal/vo/PlatformServeModeVo.java

@@ -0,0 +1,75 @@
+package com.ym.mec.biz.dal.vo;
+
+import io.swagger.annotations.ApiModelProperty;
+
+import java.io.Serializable;
+import java.math.BigDecimal;
+import java.util.List;
+
+/**
+ * @author hgw
+ * Created by 2021-12-06
+ */
+public class PlatformServeModeVo implements Serializable {
+
+    /**
+     * 付费模式 月/年
+     */
+    @ApiModelProperty(value = "付费模式 月/年")
+    private String mode;
+
+    /**
+     * 各个付费模式的详情集合
+     */
+    private List<PlatformServeModeDetailVo> list;
+
+    /**
+     * 各个付费模式的详情
+     */
+    static class PlatformServeModeDetailVo implements Serializable {
+        /**
+         * 学员上限
+         */
+        @ApiModelProperty(value = "学员上限")
+        private Integer studentUpLimit;
+
+        /**
+         * 服务原价
+         */
+        @ApiModelProperty(value = "服务原价")
+        private BigDecimal originalPrice;
+
+        public Integer getStudentUpLimit() {
+            return studentUpLimit;
+        }
+
+        public void setStudentUpLimit(Integer studentUpLimit) {
+            this.studentUpLimit = studentUpLimit;
+        }
+
+        public BigDecimal getOriginalPrice() {
+            return originalPrice;
+        }
+
+        public void setOriginalPrice(BigDecimal originalPrice) {
+            this.originalPrice = originalPrice;
+        }
+
+    }
+
+    public String getMode() {
+        return mode;
+    }
+
+    public void setMode(String mode) {
+        this.mode = mode;
+    }
+
+    public List<PlatformServeModeDetailVo> getList() {
+        return list;
+    }
+
+    public void setList(List<PlatformServeModeDetailVo> list) {
+        this.list = list;
+    }
+}

+ 40 - 0
mec-biz/src/main/java/com/ym/mec/biz/dal/vo/PlatformServePageVo.java

@@ -0,0 +1,40 @@
+package com.ym.mec.biz.dal.vo;
+
+import java.io.Serializable;
+
+/**
+ * @author hgw
+ * Created by 2021-12-03
+ */
+public class PlatformServePageVo implements Serializable {
+
+    private Integer id ;
+
+    private String serveName;
+
+    private String productName;
+
+    public Integer getId() {
+        return id;
+    }
+
+    public void setId(Integer id) {
+        this.id = id;
+    }
+
+    public String getServeName() {
+        return serveName;
+    }
+
+    public void setServeName(String serveName) {
+        this.serveName = serveName;
+    }
+
+    public String getProductName() {
+        return productName;
+    }
+
+    public void setProductName(String productName) {
+        this.productName = productName;
+    }
+}

+ 19 - 0
mec-biz/src/main/java/com/ym/mec/biz/service/CloudRoomFlowConfigService.java

@@ -0,0 +1,19 @@
+package com.ym.mec.biz.service;
+
+import com.ym.mec.biz.dal.dto.CloudRoomFlowDto;
+import com.ym.mec.biz.dal.entity.CloudRoomFlowConfig;
+import com.ym.mec.common.page.PageInfo;
+
+import java.util.List;
+
+public interface CloudRoomFlowConfigService {
+    void addConfig(CloudRoomFlowDto obj);
+
+    void updateConfig(CloudRoomFlowDto obj);
+
+    void deleteConfig(Integer id);
+
+    PageInfo<CloudRoomFlowConfig> queryPage(Integer minuteUp, Integer page, Integer rows);
+
+    List<Integer> getGroupMinuteUp();
+}

+ 4 - 0
mec-biz/src/main/java/com/ym/mec/biz/service/CloudRoomFlowInfoService.java

@@ -0,0 +1,4 @@
+package com.ym.mec.biz.service;
+
+public interface CloudRoomFlowInfoService {
+}

+ 4 - 0
mec-biz/src/main/java/com/ym/mec/biz/service/CloudRoomFlowRecordService.java

@@ -0,0 +1,4 @@
+package com.ym.mec.biz.service;
+
+public interface CloudRoomFlowRecordService {
+}

+ 17 - 0
mec-biz/src/main/java/com/ym/mec/biz/service/PlatformProductService.java

@@ -0,0 +1,17 @@
+package com.ym.mec.biz.service;
+
+import com.ym.mec.biz.dal.dto.PlatformProductDto;
+import com.ym.mec.biz.dal.entity.PlatformProduct;
+import com.ym.mec.common.page.PageInfo;
+
+public interface PlatformProductService {
+
+    void addProduct(PlatformProductDto obj);
+
+    void updateProduct(PlatformProductDto obj);
+
+    PageInfo<PlatformProduct> queryPage(String search, Integer page, Integer rows);
+
+    void deleteProduct(Integer id);
+
+}

+ 4 - 0
mec-biz/src/main/java/com/ym/mec/biz/service/PlatformServeDetailService.java

@@ -0,0 +1,4 @@
+package com.ym.mec.biz.service;
+
+public interface PlatformServeDetailService {
+}

+ 24 - 0
mec-biz/src/main/java/com/ym/mec/biz/service/PlatformServeService.java

@@ -0,0 +1,24 @@
+package com.ym.mec.biz.service;
+
+import com.ym.mec.biz.dal.dto.PlatformServeDto;
+import com.ym.mec.biz.dal.vo.PlatformServeInfoVo;
+import com.ym.mec.biz.dal.vo.PlatformServeModeVo;
+import com.ym.mec.biz.dal.vo.PlatformServePageVo;
+import com.ym.mec.common.page.PageInfo;
+
+import java.util.List;
+
+public interface PlatformServeService {
+
+    void addServe(PlatformServeDto obj);
+
+    void updateServe(PlatformServeDto obj);
+
+    void deleteServe(Integer id);
+
+    PageInfo<PlatformServePageVo> queryPage(String search, Integer page, Integer rows);
+
+    PlatformServeInfoVo queryInfo(Integer id);
+
+    List<PlatformServeModeVo> queryModeDetail(Integer id);
+}

+ 4 - 0
mec-biz/src/main/java/com/ym/mec/biz/service/TenantConfigService.java

@@ -0,0 +1,4 @@
+package com.ym.mec.biz.service;
+
+public interface TenantConfigService {
+}

+ 4 - 0
mec-biz/src/main/java/com/ym/mec/biz/service/TenantProductInfoService.java

@@ -0,0 +1,4 @@
+package com.ym.mec.biz.service;
+
+public interface TenantProductInfoService {
+}

+ 112 - 0
mec-biz/src/main/java/com/ym/mec/biz/service/impl/CloudRoomFlowConfigServiceImpl.java

@@ -0,0 +1,112 @@
+package com.ym.mec.biz.service.impl;
+
+import com.baomidou.mybatisplus.core.metadata.IPage;
+import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
+import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
+import com.ym.mec.auth.api.client.SysUserFeignService;
+import com.ym.mec.auth.api.entity.SysUser;
+import com.ym.mec.biz.dal.dao.CloudRoomFlowConfigDao;
+import com.ym.mec.biz.dal.dto.CloudRoomFlowDto;
+import com.ym.mec.biz.dal.entity.CloudRoomFlowConfig;
+import com.ym.mec.biz.dal.entity.PlatformProduct;
+import com.ym.mec.biz.service.CloudRoomFlowConfigService;
+import com.ym.mec.common.exception.BizException;
+import com.ym.mec.common.page.PageInfo;
+import com.ym.mec.common.page.PageUtil;
+import io.swagger.models.auth.In;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.stereotype.Service;
+
+import java.util.Date;
+import java.util.List;
+import java.util.Optional;
+
+/**
+ * @author hgw
+ * Created by 2021-12-02
+ */
+@Service
+public class CloudRoomFlowConfigServiceImpl extends ServiceImpl<CloudRoomFlowConfigDao, CloudRoomFlowConfig>
+        implements CloudRoomFlowConfigService {
+
+    @Autowired
+    private SysUserFeignService sysUserFeignService;
+
+    /**
+     * 增加
+     */
+    @Override
+    public void addConfig(CloudRoomFlowDto obj) {
+        Integer userId = Optional.ofNullable(sysUserFeignService.queryUserInfo())
+                .map(SysUser::getId)
+                .orElse(null);
+        CloudRoomFlowConfig config = new CloudRoomFlowConfig();
+        config.setMinuteUpLimit(obj.getMinuteUpLimit());
+        config.setPrice(obj.getPrice());
+        config.setRemark(obj.getRemark());
+        config.setDeleted(0);
+        config.setCreatedBy(userId);
+        config.setCreatedTime(new Date());
+        baseMapper.insert(config);
+    }
+
+    /**
+     * 修改
+     */
+    @Override
+    public void updateConfig(CloudRoomFlowDto obj) {
+        Optional.ofNullable(obj.getId()).orElseThrow(()->new BizException("id不能为空!"));
+        Integer userId = Optional.ofNullable(sysUserFeignService.queryUserInfo())
+                .map(SysUser::getId)
+                .orElse(null);
+        CloudRoomFlowConfig config = new CloudRoomFlowConfig();
+        config.setId(obj.getId());
+        config.setMinuteUpLimit(obj.getMinuteUpLimit());
+        config.setPrice(obj.getPrice());
+        config.setRemark(obj.getRemark());
+        config.setUpdatedBy(userId);
+        config.setUpdatedTime(new Date());
+        baseMapper.updateByPrimaryKeySelective(config);
+    }
+
+    /**
+     * 删除
+     * @param id
+     */
+    @Override
+    public void deleteConfig(Integer id){
+        Optional.ofNullable(id).orElseThrow(()-> new BizException("Id不能为空"));
+        Integer userId = Optional.ofNullable(sysUserFeignService.queryUserInfo())
+                .map(SysUser::getId)
+                .orElse(null);
+        CloudRoomFlowConfig config = new CloudRoomFlowConfig();
+        config.setId(id);
+        config.setDeleted(1);
+        config.setUpdatedBy(userId);
+        config.setUpdatedTime(new Date());
+        baseMapper.updateByPrimaryKeySelective(config);
+    }
+
+    /**
+     * 分页查询
+     *
+     * @param minuteUp 分钟上限
+     * @param page   页数
+     * @param rows   查询数
+     */
+    @Override
+    public PageInfo<CloudRoomFlowConfig> queryPage(Integer minuteUp, Integer page, Integer rows) {
+        Page<CloudRoomFlowConfig> pageInfo = PageUtil.getPage(page, rows);
+        pageInfo.setAsc("id_");
+        IPage<CloudRoomFlowConfig> productIPage = baseMapper.queryPage(pageInfo, minuteUp);
+        return PageUtil.pageInfo(productIPage);
+    }
+
+    /**
+     * 查询分钟上限分组
+     */
+    public List<Integer> getGroupMinuteUp() {
+        return baseMapper.getGroupMinuteUp();
+    }
+
+}

+ 21 - 0
mec-biz/src/main/java/com/ym/mec/biz/service/impl/CloudRoomFlowInfoServiceImpl.java

@@ -0,0 +1,21 @@
+package com.ym.mec.biz.service.impl;
+
+import com.ym.mec.biz.dal.dao.CloudRoomFlowInfoDao;
+import com.ym.mec.biz.service.CloudRoomFlowInfoService;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.stereotype.Service;
+
+/**
+ * @author hgw
+ * Created by 2021-12-02
+ */
+@Service
+public class CloudRoomFlowInfoServiceImpl implements CloudRoomFlowInfoService {
+
+    @Autowired
+    private CloudRoomFlowInfoDao cloudRoomFlowInfoDao;
+
+
+
+
+}

+ 19 - 0
mec-biz/src/main/java/com/ym/mec/biz/service/impl/CloudRoomFlowRecordServiceImpl.java

@@ -0,0 +1,19 @@
+package com.ym.mec.biz.service.impl;
+
+import com.ym.mec.biz.dal.dao.CloudRoomFlowRecordDao;
+import com.ym.mec.biz.service.CloudRoomFlowRecordService;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.stereotype.Service;
+
+/**
+ * @author hgw
+ * Created by 2021-12-02
+ */
+@Service
+public class CloudRoomFlowRecordServiceImpl implements CloudRoomFlowRecordService {
+
+    @Autowired
+    private CloudRoomFlowRecordDao cloudRoomFlowRecordDao;
+
+
+}

+ 101 - 0
mec-biz/src/main/java/com/ym/mec/biz/service/impl/PlatformProductServiceImpl.java

@@ -0,0 +1,101 @@
+package com.ym.mec.biz.service.impl;
+
+import com.baomidou.mybatisplus.core.metadata.IPage;
+import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
+import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
+import com.ym.mec.auth.api.client.SysUserFeignService;
+import com.ym.mec.auth.api.entity.SysUser;
+import com.ym.mec.biz.dal.dao.PlatformProductDao;
+import com.ym.mec.biz.dal.dto.PlatformProductDto;
+import com.ym.mec.biz.dal.entity.PlatformProduct;
+import com.ym.mec.biz.service.PlatformProductService;
+import com.ym.mec.common.exception.BizException;
+import com.ym.mec.common.page.PageInfo;
+import com.ym.mec.common.page.PageUtil;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.stereotype.Service;
+
+import java.util.Date;
+import java.util.Optional;
+
+/**
+ * @author hgw
+ * Created by 2021-12-02
+ */
+@Service
+public class PlatformProductServiceImpl extends ServiceImpl<PlatformProductDao, PlatformProduct> implements PlatformProductService {
+    @Autowired
+    private SysUserFeignService sysUserFeignService;
+
+    /**
+     * 增加
+     */
+    @Override
+    public void addProduct(PlatformProductDto obj) {
+        Integer userId = Optional.ofNullable(sysUserFeignService.queryUserInfo())
+                .map(SysUser::getId)
+                .orElse(null);
+
+        PlatformProduct platformProduct = new PlatformProduct();
+        platformProduct.setName(obj.getName());
+        platformProduct.setMenuId(obj.getMenuId());
+        platformProduct.setRemark(obj.getRemark());
+        platformProduct.setDeleted(0);
+        platformProduct.setCreatedBy(userId);
+        platformProduct.setCreatedTime(new Date());
+        baseMapper.insert(platformProduct);
+    }
+
+    /**
+     * 修改
+     */
+    @Override
+    public void updateProduct(PlatformProductDto obj) {
+        Optional.ofNullable(obj.getId()).orElseThrow(()-> new BizException("产品Id不能为空"));
+        Integer userId = Optional.ofNullable(sysUserFeignService.queryUserInfo())
+                .map(SysUser::getId)
+                .orElse(null);
+        PlatformProduct platformProduct = new PlatformProduct();
+        platformProduct.setName(obj.getName());
+        platformProduct.setMenuId(obj.getMenuId());
+        platformProduct.setRemark(obj.getRemark());
+        platformProduct.setUpdatedBy(userId);
+        platformProduct.setUpdatedTime(new Date());
+        baseMapper.updateByPrimaryKeySelective(platformProduct);
+    }
+
+    /**
+     * 删除
+     * @param id 产品id
+     */
+    @Override
+    public void deleteProduct(Integer id) {
+        Optional.ofNullable(id).orElseThrow(()-> new BizException("产品Id不能为空"));
+        Integer userId = Optional.ofNullable(sysUserFeignService.queryUserInfo())
+                .map(SysUser::getId)
+                .orElse(null);
+        PlatformProduct platformProduct = new PlatformProduct();
+        platformProduct.setId(id);
+        platformProduct.setDeleted(1);
+        platformProduct.setUpdatedBy(userId);
+        platformProduct.setUpdatedTime(new Date());
+        baseMapper.updateByPrimaryKeySelective(platformProduct);
+    }
+
+    /**
+     * 分页查询
+     *
+     * @param search 关键字
+     * @param page   页数
+     * @param rows   查询数
+     */
+    @Override
+    public PageInfo<PlatformProduct> queryPage(String search, Integer page, Integer rows) {
+        Page<PlatformProduct> pageInfo = PageUtil.getPage(page, rows);
+        pageInfo.setAsc("id_");
+        IPage<PlatformProduct> productIPage = baseMapper.queryPage(pageInfo, search);
+        return PageUtil.pageInfo(productIPage);
+    }
+
+
+}

+ 17 - 0
mec-biz/src/main/java/com/ym/mec/biz/service/impl/PlatformServeDetailServiceImpl.java

@@ -0,0 +1,17 @@
+package com.ym.mec.biz.service.impl;
+
+import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
+import com.ym.mec.biz.dal.dao.PlatformServeDetailDao;
+import com.ym.mec.biz.dal.entity.PlatformServeDetail;
+import com.ym.mec.biz.service.PlatformServeDetailService;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.stereotype.Service;
+
+/**
+ * @author hgw
+ * Created by 2021-12-02
+ */
+@Service
+public class PlatformServeDetailServiceImpl extends ServiceImpl<PlatformServeDetailDao, PlatformServeDetail> implements PlatformServeDetailService {
+
+}

+ 195 - 0
mec-biz/src/main/java/com/ym/mec/biz/service/impl/PlatformServeServiceImpl.java

@@ -0,0 +1,195 @@
+package com.ym.mec.biz.service.impl;
+
+import com.baomidou.mybatisplus.core.metadata.IPage;
+import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
+import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
+import com.ym.mec.auth.api.client.SysUserFeignService;
+import com.ym.mec.auth.api.entity.SysUser;
+import com.ym.mec.biz.dal.dao.PlatformServeDao;
+import com.ym.mec.biz.dal.dao.PlatformServeDetailDao;
+import com.ym.mec.biz.dal.dto.PlatformServeDto;
+import com.ym.mec.biz.dal.entity.PlatformServe;
+import com.ym.mec.biz.dal.entity.PlatformServeDetail;
+import com.ym.mec.biz.dal.vo.PlatformServeInfoVo;
+import com.ym.mec.biz.dal.vo.PlatformServeModeVo;
+import com.ym.mec.biz.dal.vo.PlatformServePageVo;
+import com.ym.mec.biz.service.PlatformServeService;
+import com.ym.mec.common.exception.BizException;
+import com.ym.mec.common.page.PageInfo;
+import com.ym.mec.common.page.PageUtil;
+import org.apache.commons.collections.CollectionUtils;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.stereotype.Service;
+import org.springframework.transaction.annotation.Transactional;
+
+import java.io.Serializable;
+import java.util.Date;
+import java.util.List;
+import java.util.Optional;
+
+/**
+ * @author hgw
+ * Created by 2021-12-02
+ */
+@Service
+public class PlatformServeServiceImpl extends ServiceImpl<PlatformServeDao, PlatformServe> implements PlatformServeService {
+
+    @Autowired
+    private PlatformServeDetailDao platformServeDetailDao;
+    @Autowired
+    private SysUserFeignService sysUserFeignService;
+
+    /**
+     * 增加
+     */
+    @Override
+    @Transactional(rollbackFor = Exception.class)
+    public void addServe(PlatformServeDto obj) {
+        PlatformServeServiceInfo serveInfo = getServeInfo(obj);
+        serveInfo.getPlatformServe().setDeleted(0);
+        serveInfo.getPlatformServe().setCreatedBy(serveInfo.getUserId());
+        serveInfo.getPlatformServe().setCreatedTime(new Date());
+
+        baseMapper.insert(serveInfo.getPlatformServe());
+
+        addDetail(serveInfo.getDetailList(), serveInfo.getPlatformServe().getId());
+    }
+
+    /**
+     * 修改
+     */
+    @Override
+    @Transactional(rollbackFor = Exception.class)
+    public void updateServe(PlatformServeDto obj) {
+        PlatformServeServiceInfo serveInfo = getServeInfo(obj);
+        serveInfo.getPlatformServe().setId(obj.getId());
+        serveInfo.getPlatformServe().setUpdatedBy(serveInfo.getUserId());
+        serveInfo.getPlatformServe().setUpdatedTime(new Date());
+        baseMapper.updateByPrimaryKeySelective(serveInfo.getPlatformServe());
+
+        platformServeDetailDao.deleteByServeId(obj.getId());
+
+        addDetail(serveInfo.getDetailList(), obj.getId());
+    }
+
+    /**
+     * 删除服务
+     *
+     * @param id
+     */
+    @Override
+    @Transactional(rollbackFor = Exception.class)
+    public void deleteServe(Integer id) {
+        Optional.ofNullable(id).orElseThrow(() -> new BizException("服务Id不能为空!"));
+        Integer userId = Optional.ofNullable(sysUserFeignService.queryUserInfo())
+                .map(SysUser::getId)
+                .orElse(null);
+        PlatformServe platformServe = new PlatformServe();
+        platformServe.setId(id);
+        platformServe.setDeleted(1);
+        platformServe.setUpdatedBy(userId);
+        platformServe.setUpdatedTime(new Date());
+        baseMapper.updateByPrimaryKeySelective(platformServe);
+    }
+
+    /**
+     * 分页查询
+     *
+     * @param search 关键字
+     * @param page   页数
+     * @param rows   查询数
+     */
+    @Override
+    public PageInfo<PlatformServePageVo> queryPage(String search, Integer page, Integer rows) {
+        Page<PlatformServePageVo> pageInfo = PageUtil.getPage(page, rows);
+        pageInfo.setAsc("a.id_");
+        IPage<PlatformServePageVo> pageData = baseMapper.queryPage(pageInfo, search);
+        return PageUtil.pageInfo(pageData);
+    }
+
+    /**
+     * 查询单个服务的详情
+     *
+     * @param id 服务id
+     */
+    @Override
+    public PlatformServeInfoVo queryInfo(Integer id) {
+        return baseMapper.queryInfo(id);
+    }
+
+    /**
+     * 根据服务ID 查询付费模式和学员上限设置
+     *
+     * @param id 服务id
+     */
+    @Override
+    public List<PlatformServeModeVo> queryModeDetail(Integer id) {
+        return platformServeDetailDao.queryDetailById(id);
+    }
+
+
+    private PlatformServeServiceInfo getServeInfo(PlatformServeDto obj) {
+        List<PlatformServeDetail> detailList = getDetailList(obj);
+
+        Integer userId = Optional.ofNullable(sysUserFeignService.queryUserInfo())
+                .map(SysUser::getId)
+                .orElse(null);
+        PlatformServe platformServe = new PlatformServe();
+        platformServe.setName(obj.getName());
+        platformServe.setProductId(obj.getProductId());
+
+        PlatformServeServiceInfo platformServeInfo = new PlatformServeServiceInfo();
+        platformServeInfo.setDetailList(detailList);
+        platformServeInfo.setUserId(userId);
+        platformServeInfo.setPlatformServe(platformServe);
+        return platformServeInfo;
+    }
+
+    static class PlatformServeServiceInfo implements Serializable {
+        private List<PlatformServeDetail> detailList;
+
+        private Integer userId;
+
+        private PlatformServe platformServe;
+
+        public List<PlatformServeDetail> getDetailList() {
+            return detailList;
+        }
+
+        public void setDetailList(List<PlatformServeDetail> detailList) {
+            this.detailList = detailList;
+        }
+
+        public Integer getUserId() {
+            return userId;
+        }
+
+        public void setUserId(Integer userId) {
+            this.userId = userId;
+        }
+
+        public PlatformServe getPlatformServe() {
+            return platformServe;
+        }
+
+        public void setPlatformServe(PlatformServe platformServe) {
+            this.platformServe = platformServe;
+        }
+    }
+
+
+    private List<PlatformServeDetail> getDetailList(PlatformServeDto obj) {
+        return Optional.ofNullable(obj)
+                .filter(o -> CollectionUtils.isNotEmpty(obj.getDetailList()))
+                .map(PlatformServeDto::getDetailList)
+                .orElseThrow(() -> new BizException("请填入服务详情"));
+    }
+
+    private void addDetail(List<PlatformServeDetail> detailList, Integer id) {
+        detailList.forEach(detail -> {
+            detail.setServeId(id);
+            platformServeDetailDao.insert(detail);
+        });
+    }
+
+}

+ 16 - 0
mec-biz/src/main/java/com/ym/mec/biz/service/impl/TenantConfigServiceImpl.java

@@ -0,0 +1,16 @@
+package com.ym.mec.biz.service.impl;
+
+import com.ym.mec.biz.dal.dao.TenantConfigDao;
+import com.ym.mec.biz.service.TenantConfigService;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.stereotype.Service;
+
+/**
+ * @author hgw
+ * Created by 2021-12-02
+ */
+@Service
+public class TenantConfigServiceImpl implements TenantConfigService {
+    @Autowired
+    private TenantConfigDao tenantConfigDao;
+}

+ 19 - 12
mec-biz/src/main/java/com/ym/mec/biz/service/impl/TenantInfoServiceImpl.java

@@ -1,23 +1,30 @@
 package com.ym.mec.biz.service.impl;
 
-import org.springframework.beans.factory.annotation.Autowired;
-import org.springframework.stereotype.Service;
-
 import com.ym.mec.biz.dal.dao.TenantInfoDao;
+import com.ym.mec.biz.dal.dto.TenantInfoDto;
 import com.ym.mec.biz.dal.entity.TenantInfo;
 import com.ym.mec.biz.service.TenantInfoService;
 import com.ym.mec.common.dal.BaseDAO;
 import com.ym.mec.common.service.impl.BaseServiceImpl;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.stereotype.Service;
 
 @Service
-public class TenantInfoServiceImpl extends BaseServiceImpl<Integer, TenantInfo>  implements TenantInfoService {
-	
-	@Autowired
-	private TenantInfoDao tenantInfoDao;
+public class TenantInfoServiceImpl extends BaseServiceImpl<Integer, TenantInfo> implements TenantInfoService {
+
+    @Autowired
+    private TenantInfoDao tenantInfoDao;
+
+    @Override
+    public BaseDAO<Integer, TenantInfo> getDAO() {
+        return tenantInfoDao;
+    }
+
+    /**
+     * 新增机构
+     */
+    public void addTenantInfo(TenantInfoDto tenantInfoDto) {
+        
+    }
 
-	@Override
-	public BaseDAO<Integer, TenantInfo> getDAO() {
-		return tenantInfoDao;
-	}
-	
 }

+ 16 - 0
mec-biz/src/main/java/com/ym/mec/biz/service/impl/TenantProductInfoServiceImpl.java

@@ -0,0 +1,16 @@
+package com.ym.mec.biz.service.impl;
+
+import com.ym.mec.biz.dal.dao.TenantProductInfoDao;
+import com.ym.mec.biz.service.TenantProductInfoService;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.stereotype.Service;
+
+/**
+ * @author hgw
+ * Created by 2021-12-02
+ */
+@Service
+public class TenantProductInfoServiceImpl implements TenantProductInfoService {
+    @Autowired
+    private TenantProductInfoDao tenantProductInfoDao;
+}

+ 166 - 0
mec-biz/src/main/resources/config/mybatis/CloudRoomFlowConfigMapper.xml

@@ -0,0 +1,166 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
+<mapper namespace="com.ym.mec.biz.dal.dao.CloudRoomFlowConfigDao">
+
+    <resultMap id="BaseResultMap" type="com.ym.mec.biz.dal.entity.CloudRoomFlowConfig">
+        <id column="id_" jdbcType="INTEGER" property="id"/>
+        <result column="minute_up_limit_" jdbcType="INTEGER" property="minuteUpLimit"/>
+        <result column="price_" jdbcType="DECIMAL" property="price"/>
+        <result column="remark_" jdbcType="VARCHAR" property="remark"/>
+        <result column="deleted_" jdbcType="INTEGER" property="deleted"/>
+        <result column="created_by_" jdbcType="INTEGER" property="createdBy"/>
+        <result column="created_time_" jdbcType="TIMESTAMP" property="createdTime"/>
+        <result column="updated_by_" jdbcType="INTEGER" property="updatedBy"/>
+        <result column="updated_time_" jdbcType="TIMESTAMP" property="updatedTime"/>
+    </resultMap>
+
+    <sql id="Base_Column_List">
+        id_
+        , minute_up_limit_, price_, remark_, deleted_, created_by_, created_time_, updated_by_,
+    updated_time_
+    </sql>
+
+    <select id="selectByPrimaryKey" parameterType="java.lang.Integer" resultMap="BaseResultMap">
+        select
+        <include refid="Base_Column_List"/>
+        from cloud_room_flow_config
+        where id_ = #{id,jdbcType=INTEGER}
+    </select>
+
+    <select id="queryPage" resultMap="BaseResultMap">
+        select
+        <include refid="Base_Column_List"/>
+        from cloud_room_flow_config
+        <where>
+            deleted_ = 0
+            <if test="minuteUp != null">
+                and minute_up_limit_ = #{minuteUp}
+            </if>
+        </where>
+    </select>
+
+    <select id="getGroupMinuteUp" resultType="integer">
+        select
+            minute_up_limit_
+        from cloud_room_flow_config
+        where deleted_ = 0
+        group by minute_up_limit_
+    </select>
+
+    <delete id="deleteByPrimaryKey" parameterType="java.lang.Integer">
+        delete
+        from cloud_room_flow_config
+        where id_ = #{id,jdbcType=INTEGER}
+    </delete>
+
+    <insert id="insert" keyColumn="id_" keyProperty="id" parameterType="com.ym.mec.biz.dal.entity.CloudRoomFlowConfig"
+            useGeneratedKeys="true">
+        insert into cloud_room_flow_config (minute_up_limit_, price_, remark_,
+                                            deleted_, created_by_, created_time_,
+                                            updated_by_, updated_time_)
+        values (#{minuteUpLimit,jdbcType=INTEGER}, #{price,jdbcType=DECIMAL}, #{remark,jdbcType=VARCHAR},
+                #{deleted,jdbcType=INTEGER}, #{createdBy,jdbcType=VARCHAR}, #{createdTime,jdbcType=TIMESTAMP},
+                #{updatedBy,jdbcType=VARCHAR}, #{updatedTime,jdbcType=TIMESTAMP})
+    </insert>
+
+    <insert id="insertSelective" keyColumn="id_" keyProperty="id"
+            parameterType="com.ym.mec.biz.dal.entity.CloudRoomFlowConfig" useGeneratedKeys="true">
+        insert into cloud_room_flow_config
+        <trim prefix="(" suffix=")" suffixOverrides=",">
+            <if test="minuteUpLimit != null">
+                minute_up_limit_,
+            </if>
+            <if test="price != null">
+                price_,
+            </if>
+            <if test="remark != null">
+                remark_,
+            </if>
+            <if test="deleted != null">
+                deleted_,
+            </if>
+            <if test="createdBy != null">
+                created_by_,
+            </if>
+            <if test="createdTime != null">
+                created_time_,
+            </if>
+            <if test="updatedBy != null">
+                updated_by_,
+            </if>
+            <if test="updatedTime != null">
+                updated_time_,
+            </if>
+        </trim>
+        <trim prefix="values (" suffix=")" suffixOverrides=",">
+            <if test="minuteUpLimit != null">
+                #{minuteUpLimit,jdbcType=INTEGER},
+            </if>
+            <if test="price != null">
+                #{price,jdbcType=DECIMAL},
+            </if>
+            <if test="remark != null">
+                #{remark,jdbcType=VARCHAR},
+            </if>
+            <if test="deleted != null">
+                #{deleted,jdbcType=INTEGER},
+            </if>
+            <if test="createdBy != null">
+                #{createdBy,jdbcType=VARCHAR},
+            </if>
+            <if test="createdTime != null">
+                #{createdTime,jdbcType=TIMESTAMP},
+            </if>
+            <if test="updatedBy != null">
+                #{updatedBy,jdbcType=VARCHAR},
+            </if>
+            <if test="updatedTime != null">
+                #{updatedTime,jdbcType=TIMESTAMP},
+            </if>
+        </trim>
+    </insert>
+
+    <update id="updateByPrimaryKeySelective" parameterType="com.ym.mec.biz.dal.entity.CloudRoomFlowConfig">
+        update cloud_room_flow_config
+        <set>
+            <if test="minuteUpLimit != null">
+                minute_up_limit_ = #{minuteUpLimit,jdbcType=INTEGER},
+            </if>
+            <if test="price != null">
+                price_ = #{price,jdbcType=DECIMAL},
+            </if>
+            <if test="remark != null">
+                remark_ = #{remark,jdbcType=VARCHAR},
+            </if>
+            <if test="deleted != null">
+                deleted_ = #{deleted,jdbcType=INTEGER},
+            </if>
+            <if test="createdBy != null">
+                created_by_ = #{createdBy,jdbcType=VARCHAR},
+            </if>
+            <if test="createdTime != null">
+                created_time_ = #{createdTime,jdbcType=TIMESTAMP},
+            </if>
+            <if test="updatedBy != null">
+                updated_by_ = #{updatedBy,jdbcType=VARCHAR},
+            </if>
+            <if test="updatedTime != null">
+                updated_time_ = #{updatedTime,jdbcType=TIMESTAMP},
+            </if>
+        </set>
+        where id_ = #{id,jdbcType=INTEGER}
+    </update>
+
+    <update id="updateByPrimaryKey" parameterType="com.ym.mec.biz.dal.entity.CloudRoomFlowConfig">
+        update cloud_room_flow_config
+        set minute_up_limit_ = #{minuteUpLimit,jdbcType=INTEGER},
+            price_           = #{price,jdbcType=DECIMAL},
+            remark_          = #{remark,jdbcType=VARCHAR},
+            deleted_         = #{deleted,jdbcType=INTEGER},
+            created_by_      = #{createdBy,jdbcType=VARCHAR},
+            created_time_    = #{createdTime,jdbcType=TIMESTAMP},
+            updated_by_      = #{updatedBy,jdbcType=VARCHAR},
+            updated_time_    = #{updatedTime,jdbcType=TIMESTAMP}
+        where id_ = #{id,jdbcType=INTEGER}
+    </update>
+</mapper>

+ 134 - 0
mec-biz/src/main/resources/config/mybatis/CloudRoomFlowInfoMapper.xml

@@ -0,0 +1,134 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
+<mapper namespace="com.ym.mec.biz.dal.dao.CloudRoomFlowInfoDao">
+  <resultMap id="BaseResultMap" type="com.ym.mec.biz.dal.entity.CloudRoomFlowInfo">
+    <id column="id_" jdbcType="INTEGER" property="id" />
+    <result column="minute_up_limit_" jdbcType="INTEGER" property="minuteUpLimit" />
+    <result column="price_" jdbcType="DECIMAL" property="price" />
+    <result column="remark_" jdbcType="VARCHAR" property="remark" />
+    <result column="deleted_" jdbcType="INTEGER" property="deleted" />
+    <result column="created_by_" jdbcType="INTEGER" property="createdBy" />
+    <result column="created_time_" jdbcType="TIMESTAMP" property="createdTime" />
+    <result column="updated_by_" jdbcType="INTEGER" property="updatedBy" />
+    <result column="updated_time_" jdbcType="TIMESTAMP" property="updatedTime" />
+  </resultMap>
+  <sql id="Base_Column_List">
+    id_, minute_up_limit_, price_, remark_, deleted_, created_by_, created_time_, updated_by_, 
+    updated_time_
+  </sql>
+  <select id="selectByPrimaryKey" parameterType="java.lang.Integer" resultMap="BaseResultMap">
+    select 
+    <include refid="Base_Column_List" />
+    from cloud_room_flow_config
+    where id_ = #{id,jdbcType=INTEGER}
+  </select>
+  <delete id="deleteByPrimaryKey" parameterType="java.lang.Integer">
+    delete from cloud_room_flow_config
+    where id_ = #{id,jdbcType=INTEGER}
+  </delete>
+  <insert id="insert" keyColumn="id_" keyProperty="id" parameterType="com.ym.mec.biz.dal.entity.CloudRoomFlowInfo" useGeneratedKeys="true">
+    insert into cloud_room_flow_config (minute_up_limit_, price_, remark_, 
+      deleted_, created_by_, created_time_, 
+      updated_by_, updated_time_)
+    values (#{minuteUpLimit,jdbcType=INTEGER}, #{price,jdbcType=DECIMAL}, #{remark,jdbcType=VARCHAR}, 
+      #{deleted,jdbcType=INTEGER}, #{createdBy,jdbcType=VARCHAR}, #{createdTime,jdbcType=TIMESTAMP}, 
+      #{updatedBy,jdbcType=VARCHAR}, #{updatedTime,jdbcType=TIMESTAMP})
+  </insert>
+  <insert id="insertSelective" keyColumn="id_" keyProperty="id" parameterType="com.ym.mec.biz.dal.entity.CloudRoomFlowInfo" useGeneratedKeys="true">
+    insert into cloud_room_flow_config
+    <trim prefix="(" suffix=")" suffixOverrides=",">
+      <if test="minuteUpLimit != null">
+        minute_up_limit_,
+      </if>
+      <if test="price != null">
+        price_,
+      </if>
+      <if test="remark != null">
+        remark_,
+      </if>
+      <if test="deleted != null">
+        deleted_,
+      </if>
+      <if test="createdBy != null">
+        created_by_,
+      </if>
+      <if test="createdTime != null">
+        created_time_,
+      </if>
+      <if test="updatedBy != null">
+        updated_by_,
+      </if>
+      <if test="updatedTime != null">
+        updated_time_,
+      </if>
+    </trim>
+    <trim prefix="values (" suffix=")" suffixOverrides=",">
+      <if test="minuteUpLimit != null">
+        #{minuteUpLimit,jdbcType=INTEGER},
+      </if>
+      <if test="price != null">
+        #{price,jdbcType=DECIMAL},
+      </if>
+      <if test="remark != null">
+        #{remark,jdbcType=VARCHAR},
+      </if>
+      <if test="deleted != null">
+        #{deleted,jdbcType=INTEGER},
+      </if>
+      <if test="createdBy != null">
+        #{createdBy,jdbcType=VARCHAR},
+      </if>
+      <if test="createdTime != null">
+        #{createdTime,jdbcType=TIMESTAMP},
+      </if>
+      <if test="updatedBy != null">
+        #{updatedBy,jdbcType=VARCHAR},
+      </if>
+      <if test="updatedTime != null">
+        #{updatedTime,jdbcType=TIMESTAMP},
+      </if>
+    </trim>
+  </insert>
+  <update id="updateByPrimaryKeySelective" parameterType="com.ym.mec.biz.dal.entity.CloudRoomFlowInfo">
+    update cloud_room_flow_config
+    <set>
+      <if test="minuteUpLimit != null">
+        minute_up_limit_ = #{minuteUpLimit,jdbcType=INTEGER},
+      </if>
+      <if test="price != null">
+        price_ = #{price,jdbcType=DECIMAL},
+      </if>
+      <if test="remark != null">
+        remark_ = #{remark,jdbcType=VARCHAR},
+      </if>
+      <if test="deleted != null">
+        deleted_ = #{deleted,jdbcType=INTEGER},
+      </if>
+      <if test="createdBy != null">
+        created_by_ = #{createdBy,jdbcType=VARCHAR},
+      </if>
+      <if test="createdTime != null">
+        created_time_ = #{createdTime,jdbcType=TIMESTAMP},
+      </if>
+      <if test="updatedBy != null">
+        updated_by_ = #{updatedBy,jdbcType=VARCHAR},
+      </if>
+      <if test="updatedTime != null">
+        updated_time_ = #{updatedTime,jdbcType=TIMESTAMP},
+      </if>
+    </set>
+    where id_ = #{id,jdbcType=INTEGER}
+  </update>
+  <update id="updateByPrimaryKey" parameterType="com.ym.mec.biz.dal.entity.CloudRoomFlowInfo">
+    update cloud_room_flow_config
+    set minute_up_limit_ = #{minuteUpLimit,jdbcType=INTEGER},
+      price_ = #{price,jdbcType=DECIMAL},
+      remark_ = #{remark,jdbcType=VARCHAR},
+      deleted_ = #{deleted,jdbcType=INTEGER},
+      created_by_ = #{createdBy,jdbcType=VARCHAR},
+      created_time_ = #{createdTime,jdbcType=TIMESTAMP},
+      updated_by_ = #{updatedBy,jdbcType=VARCHAR},
+      updated_time_ = #{updatedTime,jdbcType=TIMESTAMP}
+    where id_ = #{id,jdbcType=INTEGER}
+  </update>
+</mapper>

+ 134 - 0
mec-biz/src/main/resources/config/mybatis/CloudRoomFlowRecordMapper.xml

@@ -0,0 +1,134 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
+<mapper namespace="com.ym.mec.biz.dal.dao.CloudRoomFlowRecordDao">
+  <resultMap id="BaseResultMap" type="com.ym.mec.biz.dal.entity.CloudRoomFlowRecord">
+    <id column="id_" jdbcType="INTEGER" property="id" />
+    <result column="minute_up_limit_" jdbcType="INTEGER" property="minuteUpLimit" />
+    <result column="price_" jdbcType="DECIMAL" property="price" />
+    <result column="remark_" jdbcType="VARCHAR" property="remark" />
+    <result column="deleted_" jdbcType="INTEGER" property="deleted" />
+    <result column="created_by_" jdbcType="INTEGER" property="createdBy" />
+    <result column="created_time_" jdbcType="TIMESTAMP" property="createdTime" />
+    <result column="updated_by_" jdbcType="INTEGER" property="updatedBy" />
+    <result column="updated_time_" jdbcType="TIMESTAMP" property="updatedTime" />
+  </resultMap>
+  <sql id="Base_Column_List">
+    id_, minute_up_limit_, price_, remark_, deleted_, created_by_, created_time_, updated_by_, 
+    updated_time_
+  </sql>
+  <select id="selectByPrimaryKey" parameterType="java.lang.Integer" resultMap="BaseResultMap">
+    select 
+    <include refid="Base_Column_List" />
+    from cloud_room_flow_config
+    where id_ = #{id,jdbcType=INTEGER}
+  </select>
+  <delete id="deleteByPrimaryKey" parameterType="java.lang.Integer">
+    delete from cloud_room_flow_config
+    where id_ = #{id,jdbcType=INTEGER}
+  </delete>
+  <insert id="insert" keyColumn="id_" keyProperty="id" parameterType="com.ym.mec.biz.dal.entity.CloudRoomFlowRecord" useGeneratedKeys="true">
+    insert into cloud_room_flow_config (minute_up_limit_, price_, remark_, 
+      deleted_, created_by_, created_time_, 
+      updated_by_, updated_time_)
+    values (#{minuteUpLimit,jdbcType=INTEGER}, #{price,jdbcType=DECIMAL}, #{remark,jdbcType=VARCHAR}, 
+      #{deleted,jdbcType=INTEGER}, #{createdBy,jdbcType=VARCHAR}, #{createdTime,jdbcType=TIMESTAMP}, 
+      #{updatedBy,jdbcType=VARCHAR}, #{updatedTime,jdbcType=TIMESTAMP})
+  </insert>
+  <insert id="insertSelective" keyColumn="id_" keyProperty="id" parameterType="com.ym.mec.biz.dal.entity.CloudRoomFlowRecord" useGeneratedKeys="true">
+    insert into cloud_room_flow_config
+    <trim prefix="(" suffix=")" suffixOverrides=",">
+      <if test="minuteUpLimit != null">
+        minute_up_limit_,
+      </if>
+      <if test="price != null">
+        price_,
+      </if>
+      <if test="remark != null">
+        remark_,
+      </if>
+      <if test="deleted != null">
+        deleted_,
+      </if>
+      <if test="createdBy != null">
+        created_by_,
+      </if>
+      <if test="createdTime != null">
+        created_time_,
+      </if>
+      <if test="updatedBy != null">
+        updated_by_,
+      </if>
+      <if test="updatedTime != null">
+        updated_time_,
+      </if>
+    </trim>
+    <trim prefix="values (" suffix=")" suffixOverrides=",">
+      <if test="minuteUpLimit != null">
+        #{minuteUpLimit,jdbcType=INTEGER},
+      </if>
+      <if test="price != null">
+        #{price,jdbcType=DECIMAL},
+      </if>
+      <if test="remark != null">
+        #{remark,jdbcType=VARCHAR},
+      </if>
+      <if test="deleted != null">
+        #{deleted,jdbcType=INTEGER},
+      </if>
+      <if test="createdBy != null">
+        #{createdBy,jdbcType=VARCHAR},
+      </if>
+      <if test="createdTime != null">
+        #{createdTime,jdbcType=TIMESTAMP},
+      </if>
+      <if test="updatedBy != null">
+        #{updatedBy,jdbcType=VARCHAR},
+      </if>
+      <if test="updatedTime != null">
+        #{updatedTime,jdbcType=TIMESTAMP},
+      </if>
+    </trim>
+  </insert>
+  <update id="updateByPrimaryKeySelective" parameterType="com.ym.mec.biz.dal.entity.CloudRoomFlowRecord">
+    update cloud_room_flow_config
+    <set>
+      <if test="minuteUpLimit != null">
+        minute_up_limit_ = #{minuteUpLimit,jdbcType=INTEGER},
+      </if>
+      <if test="price != null">
+        price_ = #{price,jdbcType=DECIMAL},
+      </if>
+      <if test="remark != null">
+        remark_ = #{remark,jdbcType=VARCHAR},
+      </if>
+      <if test="deleted != null">
+        deleted_ = #{deleted,jdbcType=INTEGER},
+      </if>
+      <if test="createdBy != null">
+        created_by_ = #{createdBy,jdbcType=VARCHAR},
+      </if>
+      <if test="createdTime != null">
+        created_time_ = #{createdTime,jdbcType=TIMESTAMP},
+      </if>
+      <if test="updatedBy != null">
+        updated_by_ = #{updatedBy,jdbcType=VARCHAR},
+      </if>
+      <if test="updatedTime != null">
+        updated_time_ = #{updatedTime,jdbcType=TIMESTAMP},
+      </if>
+    </set>
+    where id_ = #{id,jdbcType=INTEGER}
+  </update>
+  <update id="updateByPrimaryKey" parameterType="com.ym.mec.biz.dal.entity.CloudRoomFlowRecord">
+    update cloud_room_flow_config
+    set minute_up_limit_ = #{minuteUpLimit,jdbcType=INTEGER},
+      price_ = #{price,jdbcType=DECIMAL},
+      remark_ = #{remark,jdbcType=VARCHAR},
+      deleted_ = #{deleted,jdbcType=INTEGER},
+      created_by_ = #{createdBy,jdbcType=VARCHAR},
+      created_time_ = #{createdTime,jdbcType=TIMESTAMP},
+      updated_by_ = #{updatedBy,jdbcType=VARCHAR},
+      updated_time_ = #{updatedTime,jdbcType=TIMESTAMP}
+    where id_ = #{id,jdbcType=INTEGER}
+  </update>
+</mapper>

+ 131 - 0
mec-biz/src/main/resources/config/mybatis/PlatformProductMapper.xml

@@ -0,0 +1,131 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
+<mapper namespace="com.ym.mec.biz.dal.dao.PlatformProductDao">
+    <resultMap id="BaseResultMap" type="com.ym.mec.biz.dal.entity.PlatformProduct">
+        <id column="id_" jdbcType="INTEGER" property="id"/>
+        <result column="name_" jdbcType="VARCHAR" property="name"/>
+        <result column="menu_id_" jdbcType="VARCHAR" property="menuId"/>
+        <result column="remark_" jdbcType="VARCHAR" property="remark"/>
+        <result column="deleted_" jdbcType="INTEGER" property="deleted"/>
+        <result column="created_by_" jdbcType="INTEGER" property="createdBy"/>
+        <result column="created_time_" jdbcType="TIMESTAMP" property="createdTime"/>
+        <result column="updated_by_" jdbcType="INTEGER" property="updatedBy"/>
+        <result column="updated_time_" jdbcType="TIMESTAMP" property="updatedTime"/>
+    </resultMap>
+    <sql id="Base_Column_List">
+        id_, name_, menu_id_, remark_, deleted_, created_by_, created_time_, updated_by_,
+    updated_time_
+    </sql>
+
+    <select id="selectByPrimaryKey" parameterType="java.lang.Integer" resultMap="BaseResultMap">
+        select
+        <include refid="Base_Column_List"/>
+        from platform_product
+        where id_ = #{id,jdbcType=INTEGER}
+    </select>
+
+    <delete id="deleteByPrimaryKey" parameterType="java.lang.Integer">
+        delete
+        from platform_product
+        where id_ = #{id,jdbcType=INTEGER}
+    </delete>
+
+    <insert id="insertSelective" parameterType="com.ym.mec.biz.dal.entity.PlatformProduct">
+        insert into platform_product
+        <trim prefix="(" suffix=")" suffixOverrides=",">
+            <if test="name != null">
+                name_,
+            </if>
+            <if test="menuId != null">
+                menu_id_,
+            </if>
+            <if test="remark != null">
+                remark_,
+            </if>
+            <if test="deleted != null">
+                deleted_,
+            </if>
+            <if test="createdBy != null">
+                created_by_,
+            </if>
+            <if test="createdTime != null">
+                created_time_,
+            </if>
+            <if test="updatedBy != null">
+                updated_by_,
+            </if>
+            <if test="updatedTime != null">
+                updated_time_,
+            </if>
+        </trim>
+        <trim prefix="values (" suffix=")" suffixOverrides=",">
+            <if test="name != null">
+                #{name,jdbcType=VARCHAR},
+            </if>
+            <if test="menuId != null">
+                #{menuId,jdbcType=VARCHAR},
+            </if>
+            <if test="remark != null">
+                #{remark,jdbcType=VARCHAR},
+            </if>
+            <if test="deleted != null">
+                #{deleted,jdbcType=INTEGER},
+            </if>
+            <if test="createdBy != null">
+                #{createdBy,jdbcType=VARCHAR},
+            </if>
+            <if test="createdTime != null">
+                #{createdTime,jdbcType=TIMESTAMP},
+            </if>
+            <if test="updatedBy != null">
+                #{updatedBy,jdbcType=VARCHAR},
+            </if>
+            <if test="updatedTime != null">
+                #{updatedTime,jdbcType=TIMESTAMP},
+            </if>
+        </trim>
+    </insert>
+
+    <update id="updateByPrimaryKeySelective" parameterType="com.ym.mec.biz.dal.entity.PlatformProduct">
+        update platform_product
+        <set>
+            <if test="name != null">
+                name_ = #{name,jdbcType=VARCHAR},
+            </if>
+            <if test="menuId != null">
+                menu_id_ = #{menuId,jdbcType=VARCHAR},
+            </if>
+            <if test="remark != null">
+                remark_ = #{remark,jdbcType=VARCHAR},
+            </if>
+            <if test="deleted != null">
+                deleted_ = #{deleted,jdbcType=INTEGER},
+            </if>
+            <if test="createdBy != null">
+                created_by_ = #{createdBy,jdbcType=VARCHAR},
+            </if>
+            <if test="createdTime != null">
+                created_time_ = #{createdTime,jdbcType=TIMESTAMP},
+            </if>
+            <if test="updatedBy != null">
+                updated_by_ = #{updatedBy,jdbcType=VARCHAR},
+            </if>
+            <if test="updatedTime != null">
+                updated_time_ = #{updatedTime,jdbcType=TIMESTAMP},
+            </if>
+        </set>
+        where id_ = #{id,jdbcType=INTEGER}
+    </update>
+
+    <select id="queryPage" resultMap="BaseResultMap">
+        select
+        <include refid="Base_Column_List"/>
+        from platform_product
+        <where>
+            deleted_ = 0
+            <if test="search != null">
+              and name_ like CONCAT('%',#{search},'%')
+            </if>
+        </where>
+    </select>
+</mapper>

+ 44 - 0
mec-biz/src/main/resources/config/mybatis/PlatformServeDetailMapper.xml

@@ -0,0 +1,44 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
+<mapper namespace="com.ym.mec.biz.dal.dao.PlatformServeDetailDao">
+    <resultMap id="BaseResultMap" type="com.ym.mec.biz.dal.entity.PlatformServeDetail">
+        <id column="id_" jdbcType="INTEGER" property="id" />
+        <result column="serve_id_" jdbcType="INTEGER" property="serveId" />
+        <result column="mode_" jdbcType="VARCHAR" property="mode" />
+        <result column="student_up_limit_" jdbcType="INTEGER" property="studentUpLimit" />
+        <result column="original_price_" jdbcType="DECIMAL" property="originalPrice" />
+    </resultMap>
+    <sql id="Base_Column_List">
+        id_, serve_id_, mode_, student_up_limit_, original_price_
+    </sql>
+
+    <insert id="insert" keyColumn="id_" keyProperty="id" parameterType="com.ym.mec.biz.dal.entity.PlatformServeDetail"
+            useGeneratedKeys="true">
+        insert into platform_serve_detail (serve_id_, mode_, student_up_limit_,
+                                           original_price_)
+        values (#{serveId,jdbcType=VARCHAR}, #{mode,jdbcType=VARCHAR}, #{studentUpLimit,jdbcType=INTEGER},
+                #{originalPrice,jdbcType=DECIMAL})
+    </insert>
+
+    <delete id="deleteByServeId" parameterType="integer">
+        delete
+        from platform_serve_detail
+        where serve_id_ = #{serveId,jdbcType=INTEGER}
+    </delete>
+
+    <resultMap id="PlatformServeModeVoResult" type="com.ym.mec.biz.dal.vo.PlatformServeModeVo">
+        <result column="mode_" jdbcType="VARCHAR" property="mode"/>
+        <collection property="list" ofType="com.ym.mec.biz.dal.vo.PlatformServeModeVo$PlatformServeModeDetailVo">
+            <result column="student_up_limit_" jdbcType="INTEGER" property="studentUpLimit"/>
+            <result column="original_price_" jdbcType="DECIMAL" property="originalPrice"/>
+        </collection>
+    </resultMap>
+
+    <select id="queryDetailById" parameterType="integer" resultMap="PlatformServeModeVoResult">
+        select
+        <include refid="Base_Column_List"/>
+        from platform_serve_detail
+        where serve_id_ = #{serveId,jdbcType=INTEGER}
+    </select>
+
+</mapper>

+ 114 - 0
mec-biz/src/main/resources/config/mybatis/PlatformServeMapper.xml

@@ -0,0 +1,114 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
+<mapper namespace="com.ym.mec.biz.dal.dao.PlatformServeDao">
+    <resultMap id="BaseResultMap" type="com.ym.mec.biz.dal.entity.PlatformServe">
+        <id column="id_" jdbcType="INTEGER" property="id"/>
+        <result column="name_" jdbcType="VARCHAR" property="name"/>
+        <result column="product_id_" jdbcType="VARCHAR" property="productId"/>
+        <result column="deleted_" jdbcType="INTEGER" property="deleted"/>
+        <result column="created_by_" jdbcType="INTEGER" property="createdBy"/>
+        <result column="created_time_" jdbcType="TIMESTAMP" property="createdTime"/>
+        <result column="updated_by_" jdbcType="INTEGER" property="updatedBy"/>
+        <result column="updated_time_" jdbcType="TIMESTAMP" property="updatedTime"/>
+    </resultMap>
+    <sql id="Base_Column_List">
+        id_
+        , name_, product_id_, deleted_, created_by_, created_time_, updated_by_,
+    updated_time_
+    </sql>
+
+    <select id="selectByPrimaryKey" parameterType="java.lang.Integer" resultMap="BaseResultMap">
+        select
+        <include refid="Base_Column_List"/>
+        from platform_product
+        where id_ = #{id,jdbcType=INTEGER}
+    </select>
+
+    <insert id="insert" keyColumn="id_" keyProperty="id" useGeneratedKeys="true"
+            parameterType="com.ym.mec.biz.dal.entity.PlatformServe">
+        insert into platform_serve (name_, product_id_, deleted_,
+                                    created_by_, created_time_, updated_by_,
+                                    updated_time_)
+        values (#{name,jdbcType=VARCHAR}, #{productId,jdbcType=VARCHAR}, #{deleted,jdbcType=INTEGER},
+                #{createdBy,jdbcType=INTEGER}, #{createdTime,jdbcType=TIMESTAMP}, #{updatedBy,jdbcType=INTEGER},
+                #{updatedTime,jdbcType=TIMESTAMP})
+    </insert>
+
+    <update id="updateByPrimaryKeySelective" parameterType="com.ym.mec.biz.dal.entity.PlatformServe">
+        update platform_serve
+        <set>
+            <if test="name != null">
+                name_ = #{name,jdbcType=VARCHAR},
+            </if>
+            <if test="productId != null">
+                product_id_ = #{productId,jdbcType=VARCHAR},
+            </if>
+            <if test="deleted != null">
+                deleted_ = #{deleted,jdbcType=INTEGER},
+            </if>
+            <if test="createdBy != null">
+                created_by_ = #{createdBy,jdbcType=VARCHAR},
+            </if>
+            <if test="createdTime != null">
+                created_time_ = #{createdTime,jdbcType=TIMESTAMP},
+            </if>
+            <if test="updatedBy != null">
+                updated_by_ = #{updatedBy,jdbcType=VARCHAR},
+            </if>
+            <if test="updatedTime != null">
+                updated_time_ = #{updatedTime,jdbcType=TIMESTAMP},
+            </if>
+        </set>
+        where id_ = #{id,jdbcType=INTEGER}
+    </update>
+
+    <select id="queryPage" resultType="com.ym.mec.biz.dal.vo.PlatformServePageVo">
+        SELECT
+        a.id_ AS id,
+        a.`name_` AS serveName,
+        GROUP_CONCAT(b.`name_`) AS productName
+        FROM
+        `platform_serve` AS a
+        JOIN `platform_product` AS b
+        ON FIND_IN_SET(b.`id_`, a.`product_id_`)
+        <where>
+            a.deleted_ = 0 and b.deleted_ = 0
+            <if test="search != null">
+               and a.`name_` like CONCAT('%',#{search},'%')
+            </if>
+        </where>
+        GROUP BY a.`id_`
+    </select>
+
+    <resultMap id="PlatformServeInfoVoResult" type="com.ym.mec.biz.dal.vo.PlatformServeInfoVo">
+        <id column="id_" jdbcType="INTEGER" property="id"/>
+        <result column="name_" jdbcType="VARCHAR" property="name"/>
+        <result column="product_id_" jdbcType="VARCHAR" property="productId"/>
+        <collection property="detailList" ofType="com.ym.mec.biz.dal.entity.PlatformServeDetail">
+            <result column="bId" jdbcType="INTEGER" property="id" />
+            <result column="serve_id_" jdbcType="INTEGER" property="serveId" />
+            <result column="mode_" jdbcType="VARCHAR" property="mode" />
+            <result column="student_up_limit_" jdbcType="INTEGER" property="studentUpLimit" />
+            <result column="original_price_" jdbcType="DECIMAL" property="originalPrice" />
+        </collection>
+    </resultMap>
+
+    <select id="queryInfo" resultMap="PlatformServeInfoVoResult">
+        SELECT
+            a.id_,
+            a.name_,
+            a.product_id_,
+            b.id_ as bId,
+            b.serve_id_,
+            b.`mode_`,
+            b.`student_up_limit_`,
+            b.`original_price_`
+        FROM
+            `platform_serve` AS a
+                LEFT JOIN `platform_serve_detail` AS b
+                          ON a.`id_` = b.`serve_id_`
+        WHERE a.deleted_ = 0 and a.id_ = #{id}
+    </select>
+
+
+</mapper>

+ 147 - 0
mec-biz/src/main/resources/config/mybatis/TenantConfigMapper.xml

@@ -0,0 +1,147 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
+<mapper namespace="com.ym.mec.biz.dal.dao.TenantConfigDao">
+  <resultMap id="BaseResultMap" type="com.ym.mec.biz.dal.entity.TenantConfig">
+    <id column="id_" jdbcType="INTEGER" property="id" />
+    <result column="tenant_id_" jdbcType="INTEGER" property="tenantId" />
+    <result column="charge_rate_" jdbcType="DECIMAL" property="chargeRate" />
+    <result column="teaching_material_id_" jdbcType="VARCHAR" property="teachingMaterialId" />
+    <result column="month_divide_" jdbcType="DECIMAL" property="monthDivide" />
+    <result column="quarter_divide_" jdbcType="DECIMAL" property="quarterDivide" />
+    <result column="half_year_divide_" jdbcType="DECIMAL" property="halfYearDivide" />
+    <result column="year_divide_" jdbcType="DECIMAL" property="yearDivide" />
+    <result column="updated_by_" jdbcType="INTEGER" property="updatedBy" />
+    <result column="updated_time_" jdbcType="TIMESTAMP" property="updatedTime" />
+  </resultMap>
+  <sql id="Base_Column_List">
+    id_, tenant_id_, charge_rate_, teaching_material_id_, month_divide_, quarter_divide_, 
+    half_year_divide_, year_divide_, updated_by_, updated_time_
+  </sql>
+  <select id="selectByPrimaryKey" parameterType="java.lang.Integer" resultMap="BaseResultMap">
+    select 
+    <include refid="Base_Column_List" />
+    from tenant_config
+    where id_ = #{id,jdbcType=INTEGER}
+  </select>
+  <delete id="deleteByPrimaryKey" parameterType="java.lang.Integer">
+    delete from tenant_config
+    where id_ = #{id,jdbcType=INTEGER}
+  </delete>
+  <insert id="insert" keyColumn="id_" keyProperty="id" parameterType="com.ym.mec.biz.dal.entity.TenantConfig" useGeneratedKeys="true">
+    insert into tenant_config (tenant_id_, charge_rate_, teaching_material_id_, 
+      month_divide_, quarter_divide_, half_year_divide_, 
+      year_divide_, updated_by_, updated_time_
+      )
+    values (#{tenantId,jdbcType=INTEGER}, #{chargeRate,jdbcType=DECIMAL}, #{teachingMaterialId,jdbcType=VARCHAR}, 
+      #{monthDivide,jdbcType=DECIMAL}, #{quarterDivide,jdbcType=DECIMAL}, #{halfYearDivide,jdbcType=DECIMAL}, 
+      #{yearDivide,jdbcType=DECIMAL}, #{updatedBy,jdbcType=VARCHAR}, #{updatedTime,jdbcType=TIMESTAMP}
+      )
+  </insert>
+  <insert id="insertSelective" keyColumn="id_" keyProperty="id" parameterType="com.ym.mec.biz.dal.entity.TenantConfig" useGeneratedKeys="true">
+    insert into tenant_config
+    <trim prefix="(" suffix=")" suffixOverrides=",">
+      <if test="tenantId != null">
+        tenant_id_,
+      </if>
+      <if test="chargeRate != null">
+        charge_rate_,
+      </if>
+      <if test="teachingMaterialId != null">
+        teaching_material_id_,
+      </if>
+      <if test="monthDivide != null">
+        month_divide_,
+      </if>
+      <if test="quarterDivide != null">
+        quarter_divide_,
+      </if>
+      <if test="halfYearDivide != null">
+        half_year_divide_,
+      </if>
+      <if test="yearDivide != null">
+        year_divide_,
+      </if>
+      <if test="updatedBy != null">
+        updated_by_,
+      </if>
+      <if test="updatedTime != null">
+        updated_time_,
+      </if>
+    </trim>
+    <trim prefix="values (" suffix=")" suffixOverrides=",">
+      <if test="tenantId != null">
+        #{tenantId,jdbcType=INTEGER},
+      </if>
+      <if test="chargeRate != null">
+        #{chargeRate,jdbcType=DECIMAL},
+      </if>
+      <if test="teachingMaterialId != null">
+        #{teachingMaterialId,jdbcType=VARCHAR},
+      </if>
+      <if test="monthDivide != null">
+        #{monthDivide,jdbcType=DECIMAL},
+      </if>
+      <if test="quarterDivide != null">
+        #{quarterDivide,jdbcType=DECIMAL},
+      </if>
+      <if test="halfYearDivide != null">
+        #{halfYearDivide,jdbcType=DECIMAL},
+      </if>
+      <if test="yearDivide != null">
+        #{yearDivide,jdbcType=DECIMAL},
+      </if>
+      <if test="updatedBy != null">
+        #{updatedBy,jdbcType=VARCHAR},
+      </if>
+      <if test="updatedTime != null">
+        #{updatedTime,jdbcType=TIMESTAMP},
+      </if>
+    </trim>
+  </insert>
+  <update id="updateByPrimaryKeySelective" parameterType="com.ym.mec.biz.dal.entity.TenantConfig">
+    update tenant_config
+    <set>
+      <if test="tenantId != null">
+        tenant_id_ = #{tenantId,jdbcType=INTEGER},
+      </if>
+      <if test="chargeRate != null">
+        charge_rate_ = #{chargeRate,jdbcType=DECIMAL},
+      </if>
+      <if test="teachingMaterialId != null">
+        teaching_material_id_ = #{teachingMaterialId,jdbcType=VARCHAR},
+      </if>
+      <if test="monthDivide != null">
+        month_divide_ = #{monthDivide,jdbcType=DECIMAL},
+      </if>
+      <if test="quarterDivide != null">
+        quarter_divide_ = #{quarterDivide,jdbcType=DECIMAL},
+      </if>
+      <if test="halfYearDivide != null">
+        half_year_divide_ = #{halfYearDivide,jdbcType=DECIMAL},
+      </if>
+      <if test="yearDivide != null">
+        year_divide_ = #{yearDivide,jdbcType=DECIMAL},
+      </if>
+      <if test="updatedBy != null">
+        updated_by_ = #{updatedBy,jdbcType=VARCHAR},
+      </if>
+      <if test="updatedTime != null">
+        updated_time_ = #{updatedTime,jdbcType=TIMESTAMP},
+      </if>
+    </set>
+    where id_ = #{id,jdbcType=INTEGER}
+  </update>
+  <update id="updateByPrimaryKey" parameterType="com.ym.mec.biz.dal.entity.TenantConfig">
+    update tenant_config
+    set tenant_id_ = #{tenantId,jdbcType=INTEGER},
+      charge_rate_ = #{chargeRate,jdbcType=DECIMAL},
+      teaching_material_id_ = #{teachingMaterialId,jdbcType=VARCHAR},
+      month_divide_ = #{monthDivide,jdbcType=DECIMAL},
+      quarter_divide_ = #{quarterDivide,jdbcType=DECIMAL},
+      half_year_divide_ = #{halfYearDivide,jdbcType=DECIMAL},
+      year_divide_ = #{yearDivide,jdbcType=DECIMAL},
+      updated_by_ = #{updatedBy,jdbcType=VARCHAR},
+      updated_time_ = #{updatedTime,jdbcType=TIMESTAMP}
+    where id_ = #{id,jdbcType=INTEGER}
+  </update>
+</mapper>

+ 83 - 51
mec-biz/src/main/resources/config/mybatis/TenantInfoMapper.xml

@@ -4,74 +4,104 @@
 <mapper namespace="com.ym.mec.biz.dal.dao.TenantInfoDao">
 
 	<resultMap type="com.ym.mec.biz.dal.entity.TenantInfo" id="TenantInfo">
-		<result column="id_" property="id" />
-		<result column="name_" property="name" />
-		<result column="address_" property="address" />
-		<result column="domain_name_" property="domainName" />
-		<result column="logo_url_" property="logoUrl" />
-		<result column="contact_name_" property="contactName" />
-		<result column="contact_phone_" property="contactPhone" />
-		<result column="data_source_" property="dataSource" />
-		<result column="create_time_" property="createTime" />
-		<result column="update_time_" property="updateTime" />
+        <id column="id_" jdbcType="INTEGER" property="id" />
+        <result column="name_" jdbcType="VARCHAR" property="name" />
+        <result column="contacts_" jdbcType="VARCHAR" property="contacts" />
+        <result column="phone_" jdbcType="VARCHAR" property="phone" />
+        <result column="address_" jdbcType="VARCHAR" property="address" />
+        <result column="email_" jdbcType="VARCHAR" property="email" />
+        <result column="logo_" jdbcType="VARCHAR" property="logo" />
+        <result column="customer_service_phone" jdbcType="VARCHAR" property="customerServicePhone" />
+        <result column="domain_name_" jdbcType="VARCHAR" property="domainName" />
+        <result column="data_source_" jdbcType="VARCHAR" property="dataSource" />
+        <result column="state_" jdbcType="INTEGER" property="state" />
+        <result column="created_by_" jdbcType="INTEGER" property="createdBy" />
+        <result column="created_time_" jdbcType="TIMESTAMP" property="createdTime" />
+        <result column="updated_by_" jdbcType="INTEGER" property="updatedBy" />
+        <result column="updated_time_" jdbcType="TIMESTAMP" property="updatedTime" />
 	</resultMap>
 
+    <sql id="Base_Column_List">
+        id_, name_, contacts_, phone_, address_, email_, logo_, customer_service_phone, domain_name_,
+    data_source_, state_, created_by_, created_time_, updated_by_, updated_time_
+    </sql>
+
 	<!-- 根据主键查询一条记录 -->
 	<select id="get" resultMap="TenantInfo">
-		SELECT * FROM
+		SELECT
+        <include refid="Base_Column_List" />
+		FROM
 		tenant_info WHERE id_ = #{id}
 	</select>
 
 	<!-- 全查询 -->
 	<select id="findAll" resultMap="TenantInfo">
-		SELECT * FROM tenant_info ORDER
+		SELECT
+        <include refid="Base_Column_List" />
+		FROM tenant_info ORDER
 		BY id_
 	</select>
 
 	<!-- 向数据库增加一条记录 -->
-	<insert id="insert" parameterType="com.ym.mec.biz.dal.entity.TenantInfo"
-		useGeneratedKeys="true" keyColumn="id" keyProperty="id">
-		<!-- <selectKey resultClass="int" keyProperty="id" > SELECT SEQ_WSDEFINITION_ID.nextval 
-			AS ID FROM DUAL </selectKey> -->
-		INSERT INTO tenant_info
-		(id_,name_,address_,domain_name_,logo_url_,contact_name_,contact_phone_,data_source_,create_time_,update_time_)
-		VALUES(#{id},#{name},#{address},#{domainName},#{logoUrl},#{contactName},#{contactPhone},#{dataSource},#{createTime},#{updateTime})
+	<insert id="insert" parameterType="com.ym.mec.biz.dal.entity.TenantInfo">
+        insert into tenant_info (name_, contacts_, phone_,
+        address_, email_, logo_,
+        customer_service_phone, domain_name_, data_source_,
+        state_, created_by_, created_time_,
+        updated_by_, updated_time_)
+        values (#{name,jdbcType=VARCHAR}, #{contacts,jdbcType=VARCHAR}, #{phone,jdbcType=VARCHAR},
+        #{address,jdbcType=VARCHAR}, #{email,jdbcType=VARCHAR}, #{logo,jdbcType=VARCHAR},
+        #{customerServicePhone,jdbcType=VARCHAR}, #{domainName,jdbcType=VARCHAR}, #{dataSource,jdbcType=VARCHAR},
+        #{state,jdbcType=INTEGER}, #{createdBy,jdbcType=VARCHAR}, #{createdTime,jdbcType=TIMESTAMP},
+        #{updatedBy,jdbcType=VARCHAR}, #{updatedTime,jdbcType=TIMESTAMP})
 	</insert>
 
 	<!-- 根据主键查询一条记录 -->
 	<update id="update" parameterType="com.ym.mec.biz.dal.entity.TenantInfo">
 		UPDATE tenant_info
 		<set>
-			<if test="address != null">
-				address_ = #{address},
-			</if>
-			<if test="dataSource != null">
-				data_source_ = #{dataSource},
-			</if>
-			<if test="id != null">
-				id_ = #{id},
-			</if>
-			<if test="updateTime != null">
-				update_time_ = #{updateTime},
-			</if>
-			<if test="logoUrl != null">
-				logo_url_ = #{logoUrl},
-			</if>
-			<if test="contactPhone != null">
-				contact_phone_ = #{contactPhone},
-			</if>
-			<if test="domainName != null">
-				domain_name_ = #{domainName},
-			</if>
-			<if test="contactName != null">
-				contact_name_ = #{contactName},
-			</if>
-			<if test="name != null">
-				name_ = #{name},
-			</if>
-			<if test="createTime != null">
-				create_time_ = #{createTime},
-			</if>
+            <if test="name != null">
+                name_ = #{name,jdbcType=VARCHAR},
+            </if>
+            <if test="contacts != null">
+                contacts_ = #{contacts,jdbcType=VARCHAR},
+            </if>
+            <if test="phone != null">
+                phone_ = #{phone,jdbcType=VARCHAR},
+            </if>
+            <if test="address != null">
+                address_ = #{address,jdbcType=VARCHAR},
+            </if>
+            <if test="email != null">
+                email_ = #{email,jdbcType=VARCHAR},
+            </if>
+            <if test="logo != null">
+                logo_ = #{logo,jdbcType=VARCHAR},
+            </if>
+            <if test="customerServicePhone != null">
+                customer_service_phone = #{customerServicePhone,jdbcType=VARCHAR},
+            </if>
+            <if test="domainName != null">
+                domain_name_ = #{domainName,jdbcType=VARCHAR},
+            </if>
+            <if test="dataSource != null">
+                data_source_ = #{dataSource,jdbcType=VARCHAR},
+            </if>
+            <if test="state != null">
+                state_ = #{state,jdbcType=INTEGER},
+            </if>
+            <if test="createdBy != null">
+                created_by_ = #{createdBy,jdbcType=VARCHAR},
+            </if>
+            <if test="createdTime != null">
+                created_time_ = #{createdTime,jdbcType=TIMESTAMP},
+            </if>
+            <if test="updatedBy != null">
+                updated_by_ = #{updatedBy,jdbcType=VARCHAR},
+            </if>
+            <if test="updatedTime != null">
+                updated_time_ = #{updatedTime,jdbcType=TIMESTAMP},
+            </if>
 		</set>
 		WHERE id_ = #{id}
 	</update>
@@ -83,12 +113,14 @@
 
 	<!-- 分页查询 -->
 	<select id="queryPage" resultMap="TenantInfo" parameterType="map">
-		SELECT * FROM tenant_info ORDER BY id_
+		SELECT
+        <include refid="Base_Column_List" />
+		FROM tenant_info ORDER BY id_
 		<include refid="global.limit" />
 	</select>
 
 	<!-- 查询当前表的总记录数 -->
 	<select id="queryCount" resultType="int">
-		SELECT COUNT(*) FROM tenant_info
+		SELECT COUNT(id_) FROM tenant_info
 	</select>
 </mapper>

+ 134 - 0
mec-biz/src/main/resources/config/mybatis/TenantProductInfoMapper.xml

@@ -0,0 +1,134 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
+<mapper namespace="com.ym.mec.biz.dal.dao.TenantProductInfoDao">
+  <resultMap id="BaseResultMap" type="com.ym.mec.biz.dal.entity.TenantProductInfo">
+    <id column="id_" jdbcType="INTEGER" property="id" />
+    <result column="tenant_id_" jdbcType="INTEGER" property="tenantId" />
+    <result column="serve_id_" jdbcType="INTEGER" property="serveId" />
+    <result column="serve_detail_id_" jdbcType="INTEGER" property="serveDetailId" />
+    <result column="original_price_" jdbcType="VARCHAR" property="originalPrice" />
+    <result column="contract_price_" jdbcType="DECIMAL" property="contractPrice" />
+    <result column="expiry_count_" jdbcType="INTEGER" property="expiryCount" />
+    <result column="expiry_unit_" jdbcType="VARCHAR" property="expiryUnit" />
+    <result column="expiry_data_" jdbcType="DATE" property="expiryData" />
+  </resultMap>
+  <sql id="Base_Column_List">
+    id_, tenant_id_, serve_id_, serve_detail_id_, original_price_, contract_price_, expiry_count_, 
+    expiry_unit_, expiry_data_
+  </sql>
+  <select id="selectByPrimaryKey" parameterType="java.lang.Integer" resultMap="BaseResultMap">
+    select 
+    <include refid="Base_Column_List" />
+    from tenant_product_info
+    where id_ = #{id,jdbcType=INTEGER}
+  </select>
+  <delete id="deleteByPrimaryKey" parameterType="java.lang.Integer">
+    delete from tenant_product_info
+    where id_ = #{id,jdbcType=INTEGER}
+  </delete>
+  <insert id="insert" keyColumn="id_" keyProperty="id" parameterType="com.ym.mec.biz.dal.entity.TenantProductInfo" useGeneratedKeys="true">
+    insert into tenant_product_info (tenant_id_, serve_id_, serve_detail_id_, 
+      original_price_, contract_price_, expiry_count_, 
+      expiry_unit_, expiry_data_)
+    values (#{tenantId,jdbcType=INTEGER}, #{serveId,jdbcType=INTEGER}, #{serveDetailId,jdbcType=INTEGER}, 
+      #{originalPrice,jdbcType=VARCHAR}, #{contractPrice,jdbcType=DECIMAL}, #{expiryCount,jdbcType=INTEGER}, 
+      #{expiryUnit,jdbcType=VARCHAR}, #{expiryData,jdbcType=DATE})
+  </insert>
+  <insert id="insertSelective" keyColumn="id_" keyProperty="id" parameterType="com.ym.mec.biz.dal.entity.TenantProductInfo" useGeneratedKeys="true">
+    insert into tenant_product_info
+    <trim prefix="(" suffix=")" suffixOverrides=",">
+      <if test="tenantId != null">
+        tenant_id_,
+      </if>
+      <if test="serveId != null">
+        serve_id_,
+      </if>
+      <if test="serveDetailId != null">
+        serve_detail_id_,
+      </if>
+      <if test="originalPrice != null">
+        original_price_,
+      </if>
+      <if test="contractPrice != null">
+        contract_price_,
+      </if>
+      <if test="expiryCount != null">
+        expiry_count_,
+      </if>
+      <if test="expiryUnit != null">
+        expiry_unit_,
+      </if>
+      <if test="expiryData != null">
+        expiry_data_,
+      </if>
+    </trim>
+    <trim prefix="values (" suffix=")" suffixOverrides=",">
+      <if test="tenantId != null">
+        #{tenantId,jdbcType=INTEGER},
+      </if>
+      <if test="serveId != null">
+        #{serveId,jdbcType=INTEGER},
+      </if>
+      <if test="serveDetailId != null">
+        #{serveDetailId,jdbcType=INTEGER},
+      </if>
+      <if test="originalPrice != null">
+        #{originalPrice,jdbcType=VARCHAR},
+      </if>
+      <if test="contractPrice != null">
+        #{contractPrice,jdbcType=DECIMAL},
+      </if>
+      <if test="expiryCount != null">
+        #{expiryCount,jdbcType=INTEGER},
+      </if>
+      <if test="expiryUnit != null">
+        #{expiryUnit,jdbcType=VARCHAR},
+      </if>
+      <if test="expiryData != null">
+        #{expiryData,jdbcType=DATE},
+      </if>
+    </trim>
+  </insert>
+  <update id="updateByPrimaryKeySelective" parameterType="com.ym.mec.biz.dal.entity.TenantProductInfo">
+    update tenant_product_info
+    <set>
+      <if test="tenantId != null">
+        tenant_id_ = #{tenantId,jdbcType=INTEGER},
+      </if>
+      <if test="serveId != null">
+        serve_id_ = #{serveId,jdbcType=INTEGER},
+      </if>
+      <if test="serveDetailId != null">
+        serve_detail_id_ = #{serveDetailId,jdbcType=INTEGER},
+      </if>
+      <if test="originalPrice != null">
+        original_price_ = #{originalPrice,jdbcType=VARCHAR},
+      </if>
+      <if test="contractPrice != null">
+        contract_price_ = #{contractPrice,jdbcType=DECIMAL},
+      </if>
+      <if test="expiryCount != null">
+        expiry_count_ = #{expiryCount,jdbcType=INTEGER},
+      </if>
+      <if test="expiryUnit != null">
+        expiry_unit_ = #{expiryUnit,jdbcType=VARCHAR},
+      </if>
+      <if test="expiryData != null">
+        expiry_data_ = #{expiryData,jdbcType=DATE},
+      </if>
+    </set>
+    where id_ = #{id,jdbcType=INTEGER}
+  </update>
+  <update id="updateByPrimaryKey" parameterType="com.ym.mec.biz.dal.entity.TenantProductInfo">
+    update tenant_product_info
+    set tenant_id_ = #{tenantId,jdbcType=INTEGER},
+      serve_id_ = #{serveId,jdbcType=INTEGER},
+      serve_detail_id_ = #{serveDetailId,jdbcType=INTEGER},
+      original_price_ = #{originalPrice,jdbcType=VARCHAR},
+      contract_price_ = #{contractPrice,jdbcType=DECIMAL},
+      expiry_count_ = #{expiryCount,jdbcType=INTEGER},
+      expiry_unit_ = #{expiryUnit,jdbcType=VARCHAR},
+      expiry_data_ = #{expiryData,jdbcType=DATE}
+    where id_ = #{id,jdbcType=INTEGER}
+  </update>
+</mapper>

+ 8 - 0
mec-common/common-core/pom.xml

@@ -13,6 +13,7 @@
 	<url>http://maven.apache.org</url>
 	<properties>
 		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+        <mybatis-plus.version>3.0.3</mybatis-plus.version>
 	</properties>
 
 	<dependencies>
@@ -77,5 +78,12 @@
 			<artifactId>TarsosDSP</artifactId>
 			<version>2.4.1</version>
 		</dependency>
+
+        <!--mybatis plus-->
+        <dependency>
+            <groupId>com.baomidou</groupId>
+            <artifactId>mybatis-plus-boot-starter</artifactId>
+            <version>${mybatis-plus.version}</version>
+        </dependency>
 	</dependencies>
 </project>

+ 36 - 0
mec-common/common-core/src/main/java/com/ym/mec/common/config/MyBatisPlusConfig.java

@@ -0,0 +1,36 @@
+package com.ym.mec.common.config;
+
+import com.baomidou.mybatisplus.autoconfigure.MybatisPlusProperties;
+import com.baomidou.mybatisplus.core.MybatisConfiguration;
+import com.baomidou.mybatisplus.extension.plugins.PaginationInterceptor;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.context.annotation.Bean;
+import org.springframework.context.annotation.Configuration;
+import org.springframework.context.annotation.Primary;
+
+/**
+ * @author hgw
+ * Created by 2021-12-02
+ */
+@Configuration
+public class MyBatisPlusConfig {
+
+    @Autowired
+    private MybatisPlusProperties plusProperties;
+
+    /**
+     * 分页插件
+     */
+    @Bean
+    @Primary
+    public PaginationInterceptor paginationInterceptor() {
+        plusProperties.setMapperLocations(new String[]{"classpath*:/config/mybatis/*.xml"});
+        plusProperties.setTypeAliasesPackage("com.ym.mec.biz.dal.entity");
+        MybatisConfiguration mybatisConfiguration = new MybatisConfiguration();
+        mybatisConfiguration.setMapUnderscoreToCamelCase(true);
+        mybatisConfiguration.setCacheEnabled(false);
+        plusProperties.setConfiguration(mybatisConfiguration);
+        return new PaginationInterceptor();
+    }
+
+}

+ 12 - 1
mec-common/common-core/src/main/java/com/ym/mec/common/controller/BaseController.java

@@ -14,6 +14,8 @@ import org.springframework.context.support.DefaultMessageSourceResolvable;
 import org.springframework.http.HttpStatus;
 import org.springframework.security.access.AccessDeniedException;
 import org.springframework.validation.BindException;
+import org.springframework.validation.FieldError;
+import org.springframework.web.bind.MethodArgumentNotValidException;
 import org.springframework.web.bind.annotation.ControllerAdvice;
 import org.springframework.web.bind.annotation.ExceptionHandler;
 
@@ -23,6 +25,7 @@ import javax.servlet.http.HttpServletRequest;
 import java.net.URLEncoder;
 import java.util.HashMap;
 import java.util.Map;
+import java.util.Optional;
 import java.util.stream.Collectors;
 
 @ControllerAdvice
@@ -96,7 +99,15 @@ public class BaseController {
 		}else if(e instanceof BindException){
 			String errors = ((BindException) e).getFieldErrors().stream().map(DefaultMessageSourceResolvable::getDefaultMessage).collect(Collectors.joining("\n"));
 			return failed(errors);
-		}
+		} else if(e instanceof MethodArgumentNotValidException){
+            MethodArgumentNotValidException validException = (MethodArgumentNotValidException) ex;
+            String errorMsg = validException.getBindingResult()
+                    .getFieldErrors()
+                    .stream()
+                    .map(FieldError::getDefaultMessage)
+                    .collect(Collectors.joining());
+            return failed(errorMsg);
+        }
 		try {
 			Map<String,Object> paramMap = new HashMap<>(2);
 			JSONObject jsonObject = new JSONObject();

+ 45 - 0
mec-common/common-core/src/main/java/com/ym/mec/common/page/PageUtil.java

@@ -0,0 +1,45 @@
+package com.ym.mec.common.page;
+
+import com.baomidou.mybatisplus.core.metadata.IPage;
+import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
+
+import java.util.Objects;
+import java.util.Optional;
+
+/**
+ * @author hgw
+ * Created by 2021-12-03
+ */
+public class PageUtil {
+    /**
+     * 获取mybatisPlus的分页模型
+     *
+     * @param page 页数
+     * @param rows 查询数
+     * @param <T>  返回的类
+     */
+    public static <T> Page<T> getPage(Integer page, Integer rows) {
+        Integer pageIndex = Optional.ofNullable(page).orElse(1);
+        Integer pageSize = Optional.ofNullable(rows).orElse(20);
+        return new Page<>(pageIndex, pageSize);
+    }
+
+    /**
+     * 将mybatisPlus的分页模型 转换为本项目的分页模型
+     *
+     * @param source  mybatisPlus的分页模型
+     * @param <T>返回的类
+     */
+    public static <T> PageInfo<T> pageInfo(IPage<T> source) {
+        if (Objects.isNull(source)) {
+            return new PageInfo<>(1, 20);
+        }
+        int total = Integer.parseInt(String.valueOf(source.getTotal()));
+        int limit = Integer.parseInt(String.valueOf(source.getSize()));
+        PageInfo<T> resultPage = new PageInfo<>();
+        resultPage.setRows(source.getRecords());
+        resultPage.setLimit(limit);
+        resultPage.setTotal(total);
+        return resultPage;
+    }
+}

+ 1 - 1
mec-web/src/main/java/com/ym/mec/web/WebApplication.java

@@ -24,7 +24,7 @@ import com.ym.mec.common.filters.EmojiEncodingFilter;
 @SpringBootApplication
 @EnableDiscoveryClient
 @EnableFeignClients("com.ym.mec")
-@MapperScan("com.ym.mec.biz.dal.dao")
+@MapperScan(basePackages = {"com.ym.mec.biz.**.dao"})
 @ComponentScan(basePackages = {"com.ym.mec", "com.yonge.log"})
 @Configuration
 @EnableSwagger2Doc

+ 65 - 0
mec-web/src/main/java/com/ym/mec/web/controller/CloudRoomFlowConfigController.java

@@ -0,0 +1,65 @@
+package com.ym.mec.web.controller;
+
+import com.ym.mec.biz.dal.dto.CloudRoomFlowDto;
+import com.ym.mec.biz.service.CloudRoomFlowConfigService;
+import com.ym.mec.common.controller.BaseController;
+import io.swagger.annotations.Api;
+import io.swagger.annotations.ApiOperation;
+import io.swagger.annotations.ApiParam;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.security.access.prepost.PreAuthorize;
+import org.springframework.web.bind.annotation.*;
+
+import javax.validation.Valid;
+
+/**
+ * @author hgw
+ * Created by 2021-12-06
+ */
+@RequestMapping("/cloudRoomFlowConfig")
+@Api(tags = "云教室流量管理")
+@RestController
+public class CloudRoomFlowConfigController extends BaseController {
+
+    @Autowired
+    private CloudRoomFlowConfigService flowConfigService;
+
+    @ApiOperation("分页查询")
+    @GetMapping(value = "/queryPage")
+    @PreAuthorize("@pcs.hasPermissions('cloudRoomFlowConfig/queryPage')")
+    public Object queryPage(Integer minuteUp, Integer page, Integer rows) {
+        return succeed(flowConfigService.queryPage(minuteUp, page, rows));
+    }
+
+    @ApiOperation("修改云教室流量")
+    @PostMapping(value = "/update")
+    @PreAuthorize("@pcs.hasPermissions('cloudRoomFlowConfig/update')")
+    public Object updateProduct(@Valid @RequestBody CloudRoomFlowDto dto) {
+        flowConfigService.updateConfig(dto);
+        return succeed();
+    }
+
+    @ApiOperation("添加云教室流量")
+    @PostMapping(value = "/add")
+    @PreAuthorize("@pcs.hasPermissions('cloudRoomFlowConfig/add')")
+    public Object addProduct(@Valid @RequestBody CloudRoomFlowDto dto) {
+        flowConfigService.addConfig(dto);
+        return succeed();
+    }
+
+    @ApiOperation("删除云教室流量")
+    @GetMapping(value = "/delete/{id}")
+    @PreAuthorize("@pcs.hasPermissions('cloudRoomFlowConfig/delete')")
+    public Object deleteProduct(@ApiParam(value = "平台产品ID", required = true) @PathVariable("id") Integer id) {
+        flowConfigService.deleteConfig(id);
+        return succeed();
+    }
+
+    @ApiOperation("获取云教师流量包各分钟上限设置")
+    @GetMapping(value = "/getMinuteUp")
+    @PreAuthorize("@pcs.hasPermissions('cloudRoomFlowConfig/getMinuteUp')")
+    public Object getGroupMinuteUp() {
+        return succeed(flowConfigService.getGroupMinuteUp());
+    }
+
+}

+ 58 - 0
mec-web/src/main/java/com/ym/mec/web/controller/PlatformProductController.java

@@ -0,0 +1,58 @@
+package com.ym.mec.web.controller;
+
+import com.ym.mec.biz.dal.dto.PlatformProductDto;
+import com.ym.mec.biz.service.PlatformProductService;
+import com.ym.mec.common.controller.BaseController;
+import io.swagger.annotations.Api;
+import io.swagger.annotations.ApiOperation;
+import io.swagger.annotations.ApiParam;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.security.access.prepost.PreAuthorize;
+import org.springframework.web.bind.annotation.*;
+
+import javax.validation.Valid;
+
+/**
+ * @author hgw
+ * Created by 2021-12-03
+ */
+@RequestMapping("/platformProduct")
+@Api(tags = "平台产品管理")
+@RestController
+public class PlatformProductController extends BaseController {
+
+    @Autowired
+    private PlatformProductService platformProductService;
+
+    @ApiOperation("分页查询")
+    @GetMapping(value = "/queryPage")
+    @PreAuthorize("@pcs.hasPermissions('platformProduct/queryPage')")
+    public Object queryPage(String search, Integer page, Integer rows) {
+        return succeed(platformProductService.queryPage(search, page, rows));
+    }
+
+    @ApiOperation("修改平台产品")
+    @PostMapping(value = "/update")
+    @PreAuthorize("@pcs.hasPermissions('platformProduct/update')")
+    public Object updateProduct(@Valid @RequestBody PlatformProductDto dto) {
+        platformProductService.updateProduct(dto);
+        return succeed();
+    }
+
+    @ApiOperation("添加平台产品")
+    @PostMapping(value = "/add")
+    @PreAuthorize("@pcs.hasPermissions('platformProduct/add')")
+    public Object addProduct(@Valid @RequestBody PlatformProductDto dto) {
+        platformProductService.addProduct(dto);
+        return succeed();
+    }
+
+    @ApiOperation("删除平台产品")
+    @GetMapping(value = "/delete/{id}")
+    @PreAuthorize("@pcs.hasPermissions('platformProduct/delete')")
+    public Object deleteProduct(@ApiParam(value = "平台产品ID", required = true) @PathVariable("id") Integer id) {
+        platformProductService.deleteProduct(id);
+        return succeed();
+    }
+
+}

+ 73 - 0
mec-web/src/main/java/com/ym/mec/web/controller/PlatformServeController.java

@@ -0,0 +1,73 @@
+package com.ym.mec.web.controller;
+
+import com.ym.mec.biz.dal.dto.PlatformServeDto;
+import com.ym.mec.biz.service.PlatformServeService;
+import com.ym.mec.common.controller.BaseController;
+import io.swagger.annotations.Api;
+import io.swagger.annotations.ApiOperation;
+import io.swagger.annotations.ApiParam;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.security.access.prepost.PreAuthorize;
+import org.springframework.web.bind.annotation.*;
+
+import javax.validation.Valid;
+
+/**
+ * @author hgw
+ * Created by 2021-12-03
+ */
+@RequestMapping("/platformServe")
+@Api(tags = "平台服务管理")
+@RestController
+public class PlatformServeController extends BaseController {
+
+    @Autowired
+    private PlatformServeService platformServeService;
+
+    @ApiOperation("添加平台服务")
+    @PostMapping(value = "/add")
+    @PreAuthorize("@pcs.hasPermissions('/platformServe/add')")
+    public Object addServe(@Valid @RequestBody PlatformServeDto dto) {
+        platformServeService.addServe(dto);
+        return succeed();
+    }
+
+    @ApiOperation("修改平台服务")
+    @PostMapping(value = "/update")
+    @PreAuthorize("@pcs.hasPermissions('/platformServe/update')")
+    public Object updateServe(@Valid @RequestBody PlatformServeDto dto) {
+        platformServeService.updateServe(dto);
+        return succeed();
+    }
+
+    @ApiOperation("删除平台服务")
+    @GetMapping(value = "/delete/{id}")
+    @PreAuthorize("@pcs.hasPermissions('/platformServe/delete')")
+    public Object deleteServe(@ApiParam(value = "平台服务ID", required = true) @PathVariable("id") Integer id) {
+        platformServeService.deleteServe(id);
+        return succeed();
+    }
+
+    @ApiOperation("分页查询")
+    @GetMapping(value = "/queryPage")
+    @PreAuthorize("@pcs.hasPermissions('/platformServe/queryPage')")
+    public Object queryPage(String search, Integer page, Integer rows) {
+        return succeed(platformServeService.queryPage(search, page, rows));
+    }
+
+    @ApiOperation("查询单个服务的详情")
+    @GetMapping(value = "/queryInfo/{id}")
+    @PreAuthorize("@pcs.hasPermissions('/platformServe/queryInfo')")
+    public Object queryInfo(@ApiParam(value = "平台服务ID", required = true) @PathVariable("id") Integer id) {
+        return succeed(platformServeService.queryInfo(id));
+    }
+
+    @ApiOperation("查询单个服务各付费模式详情")
+    @GetMapping(value = "/queryModeDetail/{id}")
+    @PreAuthorize("@pcs.hasPermissions('/platformServe/queryModeDetail')")
+    public Object queryModeDetail(@ApiParam(value = "平台服务ID", required = true) @PathVariable("id") Integer id) {
+        return succeed(platformServeService.queryModeDetail(id));
+    }
+
+
+}