RentingPoolFlowApi.java 5.19 KB
package com.java110.user.api;

import com.alibaba.fastjson.JSONObject;
import com.java110.dto.renting.RentingPoolFlowDto;
import com.java110.po.renting.RentingPoolFlowPo;
import com.java110.user.bmo.rentingPoolFlow.IDeleteRentingPoolFlowBMO;
import com.java110.user.bmo.rentingPoolFlow.IGetRentingPoolFlowBMO;
import com.java110.user.bmo.rentingPoolFlow.ISaveRentingPoolFlowBMO;
import com.java110.user.bmo.rentingPoolFlow.IUpdateRentingPoolFlowBMO;
import com.java110.utils.util.Assert;
import com.java110.utils.util.BeanConvertUtil;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.*;


@RestController
@RequestMapping(value = "/rentingPoolFlow")
public class RentingPoolFlowApi {

    @Autowired
    private ISaveRentingPoolFlowBMO saveRentingPoolFlowBMOImpl;
    @Autowired
    private IUpdateRentingPoolFlowBMO updateRentingPoolFlowBMOImpl;
    @Autowired
    private IDeleteRentingPoolFlowBMO deleteRentingPoolFlowBMOImpl;

    @Autowired
    private IGetRentingPoolFlowBMO getRentingPoolFlowBMOImpl;

    /**
     * 微信保存消息模板
     *
     * @param reqJson
     * @return
     * @serviceCode /rentingPoolFlow/saveRentingPoolFlow
     * @path /app/rentingPoolFlow/saveRentingPoolFlow
     */
    @RequestMapping(value = "/saveRentingPoolFlow", method = RequestMethod.POST)
    public ResponseEntity<String> saveRentingPoolFlow(@RequestBody JSONObject reqJson) {

        Assert.hasKeyAndValue(reqJson, "rentingId", "请求报文中未包含rentingId");
        Assert.hasKeyAndValue(reqJson, "useName", "请求报文中未包含useName");
        Assert.hasKeyAndValue(reqJson, "useTel", "请求报文中未包含useTel");
        Assert.hasKeyAndValue(reqJson, "dealTime", "请求报文中未包含dealTime");
        Assert.hasKeyAndValue(reqJson, "userRole", "请求报文中未包含userRole");
        Assert.hasKeyAndValue(reqJson, "communityId", "请求报文中未包含communityId");


        RentingPoolFlowPo rentingPoolFlowPo = BeanConvertUtil.covertBean(reqJson, RentingPoolFlowPo.class);
        return saveRentingPoolFlowBMOImpl.save(rentingPoolFlowPo);
    }

    /**
     * 微信修改消息模板
     *
     * @param reqJson
     * @return
     * @serviceCode /rentingPoolFlow/updateRentingPoolFlow
     * @path /app/rentingPoolFlow/updateRentingPoolFlow
     */
    @RequestMapping(value = "/updateRentingPoolFlow", method = RequestMethod.POST)
    public ResponseEntity<String> updateRentingPoolFlow(@RequestBody JSONObject reqJson) {

        Assert.hasKeyAndValue(reqJson, "rentingId", "请求报文中未包含rentingId");
        Assert.hasKeyAndValue(reqJson, "useName", "请求报文中未包含useName");
        Assert.hasKeyAndValue(reqJson, "useTel", "请求报文中未包含useTel");
        Assert.hasKeyAndValue(reqJson, "dealTime", "请求报文中未包含dealTime");
        Assert.hasKeyAndValue(reqJson, "userRole", "请求报文中未包含userRole");
        Assert.hasKeyAndValue(reqJson, "communityId", "请求报文中未包含communityId");
        Assert.hasKeyAndValue(reqJson, "flowId", "flowId不能为空");


        RentingPoolFlowPo rentingPoolFlowPo = BeanConvertUtil.covertBean(reqJson, RentingPoolFlowPo.class);
        return updateRentingPoolFlowBMOImpl.update(rentingPoolFlowPo);
    }

    /**
     * 微信删除消息模板
     *
     * @param reqJson
     * @return
     * @serviceCode /rentingPoolFlow/deleteRentingPoolFlow
     * @path /app/rentingPoolFlow/deleteRentingPoolFlow
     */
    @RequestMapping(value = "/deleteRentingPoolFlow", method = RequestMethod.POST)
    public ResponseEntity<String> deleteRentingPoolFlow(@RequestBody JSONObject reqJson) {
        Assert.hasKeyAndValue(reqJson, "communityId", "项目ID不能为空");

        Assert.hasKeyAndValue(reqJson, "flowId", "flowId不能为空");


        RentingPoolFlowPo rentingPoolFlowPo = BeanConvertUtil.covertBean(reqJson, RentingPoolFlowPo.class);
        return deleteRentingPoolFlowBMOImpl.delete(rentingPoolFlowPo);
    }

    /**
     * 微信删除消息模板
     *
     * @param communityId 项目ID
     * @returnaddOwner
     * @serviceCode /rentingPoolFlow/queryRentingPoolFlow
     * @path /app/rentingPoolFlow/queryRentingPoolFlow
     */
    @RequestMapping(value = "/queryRentingPoolFlow", method = RequestMethod.GET)
    public ResponseEntity<String> queryRentingPoolFlow(@RequestParam(value = "communityId") String communityId,
                                                       @RequestParam(value = "rentingId") String rentingId,
                                                       @RequestParam(value = "state", required = false) String state,
                                                       @RequestParam(value = "page") int page,
                                                       @RequestParam(value = "row") int row) {
        RentingPoolFlowDto rentingPoolFlowDto = new RentingPoolFlowDto();
        rentingPoolFlowDto.setPage(page);
        rentingPoolFlowDto.setRow(row);
        rentingPoolFlowDto.setRentingId(rentingId);
        rentingPoolFlowDto.setState(state);
        rentingPoolFlowDto.setCommunityId(communityId);
        return getRentingPoolFlowBMOImpl.get(rentingPoolFlowDto);
    }
}