Bläddra i källkod

添加 营销规则

wuxw 3 år sedan
förälder
incheckning
b9733fa3a7

+ 62 - 0
java110-bean/src/main/java/com/java110/dto/marketRule/MarketRuleDto.java

@@ -0,0 +1,62 @@
+package com.java110.dto.marketRule;
+
+import com.java110.dto.PageDto;
+import java.io.Serializable;
+import java.util.Date;
+
+/**
+ * @ClassName FloorDto
+ * @Description 营销规则数据层封装
+ * @Author wuxw
+ * @Date 2019/4/24 8:52
+ * @Version 1.0
+ * add by wuxw 2019/4/24
+ **/
+public class MarketRuleDto extends PageDto implements Serializable {
+
+    private String name;
+private String remark;
+private String ruleId;
+
+
+    private Date createTime;
+
+    private String statusCd = "0";
+
+
+    public String getName() {
+        return name;
+    }
+public void setName(String name) {
+        this.name = name;
+    }
+public String getRemark() {
+        return remark;
+    }
+public void setRemark(String remark) {
+        this.remark = remark;
+    }
+public String getRuleId() {
+        return ruleId;
+    }
+public void setRuleId(String ruleId) {
+        this.ruleId = ruleId;
+    }
+
+
+    public Date getCreateTime() {
+        return createTime;
+    }
+
+    public void setCreateTime(Date createTime) {
+        this.createTime = createTime;
+    }
+
+    public String getStatusCd() {
+        return statusCd;
+    }
+
+    public void setStatusCd(String statusCd) {
+        this.statusCd = statusCd;
+    }
+}

+ 61 - 0
java110-bean/src/main/java/com/java110/po/marketRule/MarketRulePo.java

@@ -0,0 +1,61 @@
+/*
+ * Copyright 2017-2020 吴学文 and java110 team.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package com.java110.po.marketRule;
+
+import java.io.Serializable;
+import java.util.Date;
+/**
+ * 类表述: Po 数据模型实体对象 基本保持与数据库模型一直 用于 增加修改删除 等时的数据载体
+ * add by 吴学文 at 2022-10-26 03:36:12 mail: 928255095@qq.com
+ * open source address: https://gitee.com/wuxw7/MicroCommunity
+ * 官网:http://www.homecommunity.cn
+ * 温馨提示:如果您对此文件进行修改 请不要删除原有作者及注释信息,请补充您的 修改的原因以及联系邮箱如下
+ * // modify by 张三 at 2021-09-12 第10行在某种场景下存在某种bug 需要修复,注释10至20行 加入 20行至30行
+ */
+public class MarketRulePo implements Serializable {
+
+    private String name;
+private String statusCd = "0";
+private String remark;
+private String ruleId;
+public String getName() {
+        return name;
+    }
+public void setName(String name) {
+        this.name = name;
+    }
+public String getStatusCd() {
+        return statusCd;
+    }
+public void setStatusCd(String statusCd) {
+        this.statusCd = statusCd;
+    }
+public String getRemark() {
+        return remark;
+    }
+public void setRemark(String remark) {
+        this.remark = remark;
+    }
+public String getRuleId() {
+        return ruleId;
+    }
+public void setRuleId(String ruleId) {
+        this.ruleId = ruleId;
+    }
+
+
+
+}

+ 83 - 0
java110-db/src/main/resources/mapper/common/MarketRuleV1ServiceDaoImplMapper.xml

@@ -0,0 +1,83 @@
+<?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="marketRuleV1ServiceDaoImpl">
+
+
+    <!-- 保存营销规则信息 add by wuxw 2018-07-03 -->
+    <insert id="saveMarketRuleInfo" parameterType="Map">
+        insert into market_rule(
+        name,remark,rule_id
+        ) values (
+        #{name},#{remark},#{ruleId}
+        )
+    </insert>
+
+
+    <!-- 查询营销规则信息 add by wuxw 2018-07-03 -->
+    <select id="getMarketRuleInfo" parameterType="Map" resultType="Map">
+        select t.name,t.status_cd,t.status_cd statusCd,t.remark,t.rule_id,t.rule_id ruleId
+        from market_rule t
+        where 1 =1
+        <if test="name !=null and name != ''">
+            and t.name= #{name}
+        </if>
+        <if test="statusCd !=null and statusCd != ''">
+            and t.status_cd= #{statusCd}
+        </if>
+        <if test="remark !=null and remark != ''">
+            and t.remark= #{remark}
+        </if>
+        <if test="ruleId !=null and ruleId != ''">
+            and t.rule_id= #{ruleId}
+        </if>
+        order by t.create_time desc
+        <if test="page != -1 and page != null ">
+            limit #{page}, #{row}
+        </if>
+
+    </select>
+
+
+    <!-- 修改营销规则信息 add by wuxw 2018-07-03 -->
+    <update id="updateMarketRuleInfo" parameterType="Map">
+        update market_rule t set t.status_cd = #{statusCd}
+        <if test="newBId != null and newBId != ''">
+            ,t.b_id = #{newBId}
+        </if>
+        <if test="name !=null and name != ''">
+            , t.name= #{name}
+        </if>
+        <if test="remark !=null and remark != ''">
+            , t.remark= #{remark}
+        </if>
+        where 1=1
+        <if test="ruleId !=null and ruleId != ''">
+            and t.rule_id= #{ruleId}
+        </if>
+
+    </update>
+
+    <!-- 查询营销规则数量 add by wuxw 2018-07-03 -->
+    <select id="queryMarketRulesCount" parameterType="Map" resultType="Map">
+        select count(1) count
+        from market_rule t
+        where 1 =1
+        <if test="name !=null and name != ''">
+            and t.name= #{name}
+        </if>
+        <if test="statusCd !=null and statusCd != ''">
+            and t.status_cd= #{statusCd}
+        </if>
+        <if test="remark !=null and remark != ''">
+            and t.remark= #{remark}
+        </if>
+        <if test="ruleId !=null and ruleId != ''">
+            and t.rule_id= #{ruleId}
+        </if>
+
+
+    </select>
+
+</mapper>

+ 68 - 0
java110-interface/src/main/java/com/java110/intf/common/IMarketRuleV1InnerServiceSMO.java

@@ -0,0 +1,68 @@
+/*
+ * Copyright 2017-2020 吴学文 and java110 team.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package com.java110.intf.common;
+
+import com.java110.config.feign.FeignConfiguration;
+import com.java110.dto.marketRule.MarketRuleDto;
+import com.java110.po.marketRule.MarketRulePo;
+import org.springframework.cloud.openfeign.FeignClient;
+import org.springframework.web.bind.annotation.RequestBody;
+import org.springframework.web.bind.annotation.RequestMapping;
+import org.springframework.web.bind.annotation.RequestMethod;
+
+import java.util.List;
+
+/**
+ * 类表述: 服务之前调用的接口类,不对外提供接口能力 只用于接口建调用
+ * add by 吴学文 at 2022-10-26 03:36:12 mail: 928255095@qq.com
+ * open source address: https://gitee.com/wuxw7/MicroCommunity
+ * 官网:http://www.homecommunity.cn
+ * 温馨提示:如果您对此文件进行修改 请不要删除原有作者及注释信息,请补充您的 修改的原因以及联系邮箱如下
+ * // modify by 张三 at 2021-09-12 第10行在某种场景下存在某种bug 需要修复,注释10至20行 加入 20行至30行
+ */
+@FeignClient(name = "common-service", configuration = {FeignConfiguration.class})
+@RequestMapping("/marketRuleV1Api")
+public interface IMarketRuleV1InnerServiceSMO {
+
+
+    @RequestMapping(value = "/saveMarketRule", method = RequestMethod.POST)
+    public int saveMarketRule(@RequestBody MarketRulePo marketRulePo);
+
+    @RequestMapping(value = "/updateMarketRule", method = RequestMethod.POST)
+    public int updateMarketRule(@RequestBody MarketRulePo marketRulePo);
+
+    @RequestMapping(value = "/deleteMarketRule", method = RequestMethod.POST)
+    public int deleteMarketRule(@RequestBody MarketRulePo marketRulePo);
+
+    /**
+     * <p>查询小区楼信息</p>
+     *
+     *
+     * @param marketRuleDto 数据对象分享
+     * @return MarketRuleDto 对象数据
+     */
+    @RequestMapping(value = "/queryMarketRules", method = RequestMethod.POST)
+    List<MarketRuleDto> queryMarketRules(@RequestBody MarketRuleDto marketRuleDto);
+
+    /**
+     * 查询<p>小区楼</p>总记录数
+     *
+     * @param marketRuleDto 数据对象分享
+     * @return 小区下的小区楼记录数
+     */
+    @RequestMapping(value = "/queryMarketRulesCount", method = RequestMethod.POST)
+    int queryMarketRulesCount(@RequestBody MarketRuleDto marketRuleDto);
+}

+ 71 - 0
service-common/src/main/java/com/java110/common/cmd/marketRule/DeleteMarketRuleCmd.java

@@ -0,0 +1,71 @@
+/*
+ * Copyright 2017-2020 吴学文 and java110 team.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package com.java110.common.cmd.marketRule;
+
+import com.alibaba.fastjson.JSONObject;
+import com.java110.core.annotation.Java110Cmd;
+import com.java110.core.annotation.Java110Transactional;
+import com.java110.core.context.ICmdDataFlowContext;
+import com.java110.core.event.cmd.Cmd;
+import com.java110.core.event.cmd.CmdEvent;
+import com.java110.core.factory.GenerateCodeFactory;
+import com.java110.intf.common.IMarketRuleV1InnerServiceSMO;
+import com.java110.po.marketRule.MarketRulePo;
+import com.java110.utils.exception.CmdException;
+import com.java110.utils.util.Assert;
+import com.java110.utils.util.BeanConvertUtil;
+import com.java110.vo.ResultVo;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+/**
+ * 类表述:删除
+ * 服务编码:marketRule.deleteMarketRule
+ * 请求路劲:/app/marketRule.DeleteMarketRule
+ * add by 吴学文 at 2022-10-26 03:36:12 mail: 928255095@qq.com
+ * open source address: https://gitee.com/wuxw7/MicroCommunity
+ * 官网:http://www.homecommunity.cn
+ * 温馨提示:如果您对此文件进行修改 请不要删除原有作者及注释信息,请补充您的 修改的原因以及联系邮箱如下
+ * // modify by 张三 at 2021-09-12 第10行在某种场景下存在某种bug 需要修复,注释10至20行 加入 20行至30行
+ */
+@Java110Cmd(serviceCode = "marketRule.deleteMarketRule")
+public class DeleteMarketRuleCmd extends Cmd {
+  private static Logger logger = LoggerFactory.getLogger(DeleteMarketRuleCmd.class);
+
+    @Autowired
+    private IMarketRuleV1InnerServiceSMO marketRuleV1InnerServiceSMOImpl;
+
+    @Override
+    public void validate(CmdEvent event, ICmdDataFlowContext cmdDataFlowContext, JSONObject reqJson) {
+        Assert.hasKeyAndValue(reqJson, "ruleId", "ruleId不能为空");
+Assert.hasKeyAndValue(reqJson, "ruleId", "ruleId不能为空");
+
+    }
+
+    @Override
+    @Java110Transactional
+    public void doCmd(CmdEvent event, ICmdDataFlowContext cmdDataFlowContext, JSONObject reqJson) throws CmdException {
+
+       MarketRulePo marketRulePo = BeanConvertUtil.covertBean(reqJson, MarketRulePo.class);
+        int flag = marketRuleV1InnerServiceSMOImpl.deleteMarketRule(marketRulePo);
+
+        if (flag < 1) {
+            throw new CmdException("删除数据失败");
+        }
+
+        cmdDataFlowContext.setResponseEntity(ResultVo.success());
+    }
+}

+ 84 - 0
service-common/src/main/java/com/java110/common/cmd/marketRule/ListMarketRuleCmd.java

@@ -0,0 +1,84 @@
+/*
+ * Copyright 2017-2020 吴学文 and java110 team.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package com.java110.common.cmd.marketRule;
+
+import com.alibaba.fastjson.JSONObject;
+import com.java110.core.annotation.Java110Cmd;
+import com.java110.core.annotation.Java110Transactional;
+import com.java110.core.context.ICmdDataFlowContext;
+import com.java110.core.event.cmd.Cmd;
+import com.java110.core.event.cmd.CmdEvent;
+import com.java110.core.factory.GenerateCodeFactory;
+import com.java110.intf.common.IMarketRuleV1InnerServiceSMO;
+import com.java110.po.marketRule.MarketRulePo;
+import com.java110.utils.exception.CmdException;
+import com.java110.utils.util.Assert;
+import com.java110.utils.util.BeanConvertUtil;
+import com.java110.vo.ResultVo;
+import org.springframework.beans.factory.annotation.Autowired;
+import com.java110.dto.marketRule.MarketRuleDto;
+import java.util.List;
+import java.util.ArrayList;
+import org.springframework.http.ResponseEntity;
+import org.springframework.http.HttpStatus;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+
+/**
+ * 类表述:查询
+ * 服务编码:marketRule.listMarketRule
+ * 请求路劲:/app/marketRule.ListMarketRule
+ * add by 吴学文 at 2022-10-26 03:36:12 mail: 928255095@qq.com
+ * open source address: https://gitee.com/wuxw7/MicroCommunity
+ * 官网:http://www.homecommunity.cn
+ * 温馨提示:如果您对此文件进行修改 请不要删除原有作者及注释信息,请补充您的 修改的原因以及联系邮箱如下
+ * // modify by 张三 at 2021-09-12 第10行在某种场景下存在某种bug 需要修复,注释10至20行 加入 20行至30行
+ */
+@Java110Cmd(serviceCode = "marketRule.listMarketRule")
+public class ListMarketRuleCmd extends Cmd {
+
+  private static Logger logger = LoggerFactory.getLogger(ListMarketRuleCmd.class);
+    @Autowired
+    private IMarketRuleV1InnerServiceSMO marketRuleV1InnerServiceSMOImpl;
+
+    @Override
+    public void validate(CmdEvent event, ICmdDataFlowContext cmdDataFlowContext, JSONObject reqJson) {
+        super.validatePageInfo(reqJson);
+    }
+
+    @Override
+    public void doCmd(CmdEvent event, ICmdDataFlowContext cmdDataFlowContext, JSONObject reqJson) throws CmdException {
+
+           MarketRuleDto marketRuleDto = BeanConvertUtil.covertBean(reqJson, MarketRuleDto.class);
+
+           int count = marketRuleV1InnerServiceSMOImpl.queryMarketRulesCount(marketRuleDto);
+
+           List<MarketRuleDto> marketRuleDtos = null;
+
+           if (count > 0) {
+               marketRuleDtos = marketRuleV1InnerServiceSMOImpl.queryMarketRules(marketRuleDto);
+           } else {
+               marketRuleDtos = new ArrayList<>();
+           }
+
+           ResultVo resultVo = new ResultVo((int) Math.ceil((double) count / (double) reqJson.getInteger("row")), count, marketRuleDtos);
+
+           ResponseEntity<String> responseEntity = new ResponseEntity<String>(resultVo.toString(), HttpStatus.OK);
+
+           cmdDataFlowContext.setResponseEntity(responseEntity);
+    }
+}

+ 75 - 0
service-common/src/main/java/com/java110/common/cmd/marketRule/SaveMarketRuleCmd.java

@@ -0,0 +1,75 @@
+/*
+ * Copyright 2017-2020 吴学文 and java110 team.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package com.java110.common.cmd.marketRule;
+
+import com.alibaba.fastjson.JSONObject;
+import com.java110.core.annotation.Java110Cmd;
+import com.java110.core.annotation.Java110Transactional;
+import com.java110.core.context.ICmdDataFlowContext;
+import com.java110.core.event.cmd.Cmd;
+import com.java110.core.event.cmd.CmdEvent;
+import com.java110.core.factory.GenerateCodeFactory;
+import com.java110.intf.common.IMarketRuleV1InnerServiceSMO;
+import com.java110.po.marketRule.MarketRulePo;
+import com.java110.utils.exception.CmdException;
+import com.java110.utils.util.Assert;
+import com.java110.utils.util.BeanConvertUtil;
+import com.java110.vo.ResultVo;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+/**
+ * 类表述:保存
+ * 服务编码:marketRule.saveMarketRule
+ * 请求路劲:/app/marketRule.SaveMarketRule
+ * add by 吴学文 at 2022-10-26 03:36:12 mail: 928255095@qq.com
+ * open source address: https://gitee.com/wuxw7/MicroCommunity
+ * 官网:http://www.homecommunity.cn
+ * 温馨提示:如果您对此文件进行修改 请不要删除原有作者及注释信息,请补充您的 修改的原因以及联系邮箱如下
+ * // modify by 张三 at 2021-09-12 第10行在某种场景下存在某种bug 需要修复,注释10至20行 加入 20行至30行
+ */
+@Java110Cmd(serviceCode = "marketRule.saveMarketRule")
+public class SaveMarketRuleCmd extends Cmd {
+
+    private static Logger logger = LoggerFactory.getLogger(SaveMarketRuleCmd.class);
+
+    public static final String CODE_PREFIX_ID = "10";
+
+    @Autowired
+    private IMarketRuleV1InnerServiceSMO marketRuleV1InnerServiceSMOImpl;
+
+    @Override
+    public void validate(CmdEvent event, ICmdDataFlowContext cmdDataFlowContext, JSONObject reqJson) {
+        Assert.hasKeyAndValue(reqJson, "name", "请求报文中未包含name");
+
+    }
+
+    @Override
+    @Java110Transactional
+    public void doCmd(CmdEvent event, ICmdDataFlowContext cmdDataFlowContext, JSONObject reqJson) throws CmdException {
+
+       MarketRulePo marketRulePo = BeanConvertUtil.covertBean(reqJson, MarketRulePo.class);
+        marketRulePo.setRuleId(GenerateCodeFactory.getGeneratorId(CODE_PREFIX_ID));
+        int flag = marketRuleV1InnerServiceSMOImpl.saveMarketRule(marketRulePo);
+
+        if (flag < 1) {
+            throw new CmdException("保存数据失败");
+        }
+
+        cmdDataFlowContext.setResponseEntity(ResultVo.success());
+    }
+}

+ 75 - 0
service-common/src/main/java/com/java110/common/cmd/marketRule/UpdateMarketRuleCmd.java

@@ -0,0 +1,75 @@
+/*
+ * Copyright 2017-2020 吴学文 and java110 team.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package com.java110.common.cmd.marketRule;
+
+import com.alibaba.fastjson.JSONObject;
+import com.java110.core.annotation.Java110Cmd;
+import com.java110.core.annotation.Java110Transactional;
+import com.java110.core.context.ICmdDataFlowContext;
+import com.java110.core.event.cmd.Cmd;
+import com.java110.core.event.cmd.CmdEvent;
+import com.java110.core.factory.GenerateCodeFactory;
+import com.java110.intf.common.IMarketRuleV1InnerServiceSMO;
+import com.java110.po.marketRule.MarketRulePo;
+import com.java110.utils.exception.CmdException;
+import com.java110.utils.util.Assert;
+import com.java110.utils.util.BeanConvertUtil;
+import com.java110.vo.ResultVo;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+
+/**
+ * 类表述:更新
+ * 服务编码:marketRule.updateMarketRule
+ * 请求路劲:/app/marketRule.UpdateMarketRule
+ * add by 吴学文 at 2022-10-26 03:36:12 mail: 928255095@qq.com
+ * open source address: https://gitee.com/wuxw7/MicroCommunity
+ * 官网:http://www.homecommunity.cn
+ * 温馨提示:如果您对此文件进行修改 请不要删除原有作者及注释信息,请补充您的 修改的原因以及联系邮箱如下
+ * // modify by 张三 at 2021-09-12 第10行在某种场景下存在某种bug 需要修复,注释10至20行 加入 20行至30行
+ */
+@Java110Cmd(serviceCode = "marketRule.updateMarketRule")
+public class UpdateMarketRuleCmd extends Cmd {
+
+  private static Logger logger = LoggerFactory.getLogger(UpdateMarketRuleCmd.class);
+
+
+    @Autowired
+    private IMarketRuleV1InnerServiceSMO marketRuleV1InnerServiceSMOImpl;
+
+    @Override
+    public void validate(CmdEvent event, ICmdDataFlowContext cmdDataFlowContext, JSONObject reqJson) {
+        Assert.hasKeyAndValue(reqJson, "ruleId", "ruleId不能为空");
+Assert.hasKeyAndValue(reqJson, "ruleId", "ruleId不能为空");
+
+    }
+
+    @Override
+    @Java110Transactional
+    public void doCmd(CmdEvent event, ICmdDataFlowContext cmdDataFlowContext, JSONObject reqJson) throws CmdException {
+
+       MarketRulePo marketRulePo = BeanConvertUtil.covertBean(reqJson, MarketRulePo.class);
+        int flag = marketRuleV1InnerServiceSMOImpl.updateMarketRule(marketRulePo);
+
+        if (flag < 1) {
+            throw new CmdException("更新数据失败");
+        }
+
+        cmdDataFlowContext.setResponseEntity(ResultVo.success());
+    }
+}

+ 77 - 0
service-common/src/main/java/com/java110/common/dao/IMarketRuleV1ServiceDao.java

@@ -0,0 +1,77 @@
+/*
+ * Copyright 2017-2020 吴学文 and java110 team.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package com.java110.common.dao;
+
+
+import com.java110.utils.exception.DAOException;
+import com.java110.entity.merchant.BoMerchant;
+import com.java110.entity.merchant.BoMerchantAttr;
+import com.java110.entity.merchant.Merchant;
+import com.java110.entity.merchant.MerchantAttr;
+
+
+import java.util.List;
+import java.util.Map;
+
+/**
+ * 类表述:
+ * add by 吴学文 at 2022-10-26 03:36:12 mail: 928255095@qq.com
+ * open source address: https://gitee.com/wuxw7/MicroCommunity
+ * 官网:http://www.homecommunity.cn
+ * 温馨提示:如果您对此文件进行修改 请不要删除原有作者及注释信息,请补充您的 修改的原因以及联系邮箱如下
+ * // modify by 张三 at 2021-09-12 第10行在某种场景下存在某种bug 需要修复,注释10至20行 加入 20行至30行
+ */
+public interface IMarketRuleV1ServiceDao {
+
+
+    /**
+     * 保存 营销规则信息
+     * @param info
+     * @throws DAOException DAO异常
+     */
+    int saveMarketRuleInfo(Map info) throws DAOException;
+
+
+
+
+    /**
+     * 查询营销规则信息(instance过程)
+     * 根据bId 查询营销规则信息
+     * @param info bId 信息
+     * @return 营销规则信息
+     * @throws DAOException DAO异常
+     */
+    List<Map> getMarketRuleInfo(Map info) throws DAOException;
+
+
+
+    /**
+     * 修改营销规则信息
+     * @param info 修改信息
+     * @throws DAOException DAO异常
+     */
+    int updateMarketRuleInfo(Map info) throws DAOException;
+
+
+    /**
+     * 查询营销规则总数
+     *
+     * @param info 营销规则信息
+     * @return 营销规则数量
+     */
+    int queryMarketRulesCount(Map info);
+
+}

+ 112 - 0
service-common/src/main/java/com/java110/common/dao/impl/MarketRuleV1ServiceDaoImpl.java

@@ -0,0 +1,112 @@
+/*
+ * Copyright 2017-2020 吴学文 and java110 team.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package com.java110.common.dao.impl;
+
+import com.alibaba.fastjson.JSONObject;
+import com.java110.utils.constant.ResponseConstant;
+import com.java110.utils.exception.DAOException;
+import com.java110.utils.util.DateUtil;
+import com.java110.core.base.dao.BaseServiceDao;
+import com.java110.common.dao.IMarketRuleV1ServiceDao;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+import org.springframework.stereotype.Service;
+import org.springframework.transaction.annotation.Transactional;
+
+import java.util.List;
+import java.util.Map;
+
+/**
+ * 类表述:
+ * add by 吴学文 at 2022-10-26 03:36:12 mail: 928255095@qq.com
+ * open source address: https://gitee.com/wuxw7/MicroCommunity
+ * 官网:http://www.homecommunity.cn
+ * 温馨提示:如果您对此文件进行修改 请不要删除原有作者及注释信息,请补充您的 修改的原因以及联系邮箱如下
+ * // modify by 张三 at 2021-09-12 第10行在某种场景下存在某种bug 需要修复,注释10至20行 加入 20行至30行
+ */
+@Service("marketRuleV1ServiceDaoImpl")
+public class MarketRuleV1ServiceDaoImpl extends BaseServiceDao implements IMarketRuleV1ServiceDao {
+
+    private static Logger logger = LoggerFactory.getLogger(MarketRuleV1ServiceDaoImpl.class);
+
+
+
+
+
+    /**
+     * 保存营销规则信息 到 instance
+     * @param info   bId 信息
+     * @throws DAOException DAO异常
+     */
+    @Override
+    public int saveMarketRuleInfo(Map info) throws DAOException {
+        logger.debug("保存 saveMarketRuleInfo 入参 info : {}",info);
+
+        int saveFlag = sqlSessionTemplate.insert("marketRuleV1ServiceDaoImpl.saveMarketRuleInfo",info);
+
+        return saveFlag;
+    }
+
+
+    /**
+     * 查询营销规则信息(instance)
+     * @param info bId 信息
+     * @return List<Map>
+     * @throws DAOException DAO异常
+     */
+    @Override
+    public List<Map> getMarketRuleInfo(Map info) throws DAOException {
+        logger.debug("查询 getMarketRuleInfo 入参 info : {}",info);
+
+        List<Map> businessMarketRuleInfos = sqlSessionTemplate.selectList("marketRuleV1ServiceDaoImpl.getMarketRuleInfo",info);
+
+        return businessMarketRuleInfos;
+    }
+
+
+    /**
+     * 修改营销规则信息
+     * @param info 修改信息
+     * @throws DAOException DAO异常
+     */
+    @Override
+    public int updateMarketRuleInfo(Map info) throws DAOException {
+        logger.debug("修改 updateMarketRuleInfo 入参 info : {}",info);
+
+        int saveFlag = sqlSessionTemplate.update("marketRuleV1ServiceDaoImpl.updateMarketRuleInfo",info);
+
+        return saveFlag;
+    }
+
+     /**
+     * 查询营销规则数量
+     * @param info 营销规则信息
+     * @return 营销规则数量
+     */
+    @Override
+    public int queryMarketRulesCount(Map info) {
+        logger.debug("查询 queryMarketRulesCount 入参 info : {}",info);
+
+        List<Map> businessMarketRuleInfos = sqlSessionTemplate.selectList("marketRuleV1ServiceDaoImpl.queryMarketRulesCount", info);
+        if (businessMarketRuleInfos.size() < 1) {
+            return 0;
+        }
+
+        return Integer.parseInt(businessMarketRuleInfos.get(0).get("count").toString());
+    }
+
+
+}

+ 89 - 0
service-common/src/main/java/com/java110/common/smo/impl/MarketRuleV1InnerServiceSMOImpl.java

@@ -0,0 +1,89 @@
+/*
+ * Copyright 2017-2020 吴学文 and java110 team.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package com.java110.common.smo.impl;
+
+
+import com.java110.common.dao.IMarketRuleV1ServiceDao;
+import com.java110.intf.common.IMarketRuleV1InnerServiceSMO;
+import com.java110.dto.marketRule.MarketRuleDto;
+import com.java110.po.marketRule.MarketRulePo;
+import com.java110.utils.util.BeanConvertUtil;
+import com.java110.core.base.smo.BaseServiceSMO;
+import com.java110.dto.user.UserDto;
+import com.java110.dto.PageDto;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.web.bind.annotation.RequestBody;
+import org.springframework.web.bind.annotation.RestController;
+
+import java.util.ArrayList;
+import java.util.List;
+
+/**
+ * 类表述: 服务之前调用的接口实现类,不对外提供接口能力 只用于接口建调用
+ * add by 吴学文 at 2022-10-26 03:36:12 mail: 928255095@qq.com
+ * open source address: https://gitee.com/wuxw7/MicroCommunity
+ * 官网:http://www.homecommunity.cn
+ * 温馨提示:如果您对此文件进行修改 请不要删除原有作者及注释信息,请补充您的 修改的原因以及联系邮箱如下
+ * // modify by 张三 at 2021-09-12 第10行在某种场景下存在某种bug 需要修复,注释10至20行 加入 20行至30行
+ */
+@RestController
+public class MarketRuleV1InnerServiceSMOImpl extends BaseServiceSMO implements IMarketRuleV1InnerServiceSMO {
+
+    @Autowired
+    private IMarketRuleV1ServiceDao marketRuleV1ServiceDaoImpl;
+
+
+    @Override
+    public int saveMarketRule(@RequestBody  MarketRulePo marketRulePo) {
+        int saveFlag = marketRuleV1ServiceDaoImpl.saveMarketRuleInfo(BeanConvertUtil.beanCovertMap(marketRulePo));
+        return saveFlag;
+    }
+
+     @Override
+    public int updateMarketRule(@RequestBody  MarketRulePo marketRulePo) {
+        int saveFlag = marketRuleV1ServiceDaoImpl.updateMarketRuleInfo(BeanConvertUtil.beanCovertMap(marketRulePo));
+        return saveFlag;
+    }
+
+     @Override
+    public int deleteMarketRule(@RequestBody  MarketRulePo marketRulePo) {
+       marketRulePo.setStatusCd("1");
+       int saveFlag = marketRuleV1ServiceDaoImpl.updateMarketRuleInfo(BeanConvertUtil.beanCovertMap(marketRulePo));
+       return saveFlag;
+    }
+
+    @Override
+    public List<MarketRuleDto> queryMarketRules(@RequestBody  MarketRuleDto marketRuleDto) {
+
+        //校验是否传了 分页信息
+
+        int page = marketRuleDto.getPage();
+
+        if (page != PageDto.DEFAULT_PAGE) {
+            marketRuleDto.setPage((page - 1) * marketRuleDto.getRow());
+        }
+
+        List<MarketRuleDto> marketRules = BeanConvertUtil.covertBeanList(marketRuleV1ServiceDaoImpl.getMarketRuleInfo(BeanConvertUtil.beanCovertMap(marketRuleDto)), MarketRuleDto.class);
+
+        return marketRules;
+    }
+
+
+    @Override
+    public int queryMarketRulesCount(@RequestBody MarketRuleDto marketRuleDto) {
+        return marketRuleV1ServiceDaoImpl.queryMarketRulesCount(BeanConvertUtil.beanCovertMap(marketRuleDto));    }
+
+}