package com.java110.store.api; import com.alibaba.fastjson.JSONObject; import com.java110.dto.contractChangePlanRoom.ContractChangePlanRoomDto; import com.java110.po.contractChangePlanRoom.ContractChangePlanRoomPo; import com.java110.store.bmo.contractChangePlanRoom.IDeleteContractChangePlanRoomBMO; import com.java110.store.bmo.contractChangePlanRoom.IGetContractChangePlanRoomBMO; import com.java110.store.bmo.contractChangePlanRoom.ISaveContractChangePlanRoomBMO; import com.java110.store.bmo.contractChangePlanRoom.IUpdateContractChangePlanRoomBMO; 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 = "/contractChangePlanRoom") public class ContractChangePlanRoomApi { @Autowired private ISaveContractChangePlanRoomBMO saveContractChangePlanRoomBMOImpl; @Autowired private IUpdateContractChangePlanRoomBMO updateContractChangePlanRoomBMOImpl; @Autowired private IDeleteContractChangePlanRoomBMO deleteContractChangePlanRoomBMOImpl; @Autowired private IGetContractChangePlanRoomBMO getContractChangePlanRoomBMOImpl; /** * 微信保存消息模板 * * @param reqJson * @return * @serviceCode /contractChangePlanRoom/saveContractChangePlanRoom * @path /app/contractChangePlanRoom/saveContractChangePlanRoom */ @RequestMapping(value = "/saveContractChangePlanRoom", method = RequestMethod.POST) public ResponseEntity saveContractChangePlanRoom(@RequestBody JSONObject reqJson) { Assert.hasKeyAndValue(reqJson, "planId", "请求报文中未包含planId"); Assert.hasKeyAndValue(reqJson, "roomId", "请求报文中未包含roomId"); ContractChangePlanRoomPo contractChangePlanRoomPo = BeanConvertUtil.covertBean(reqJson, ContractChangePlanRoomPo.class); return saveContractChangePlanRoomBMOImpl.save(contractChangePlanRoomPo); } /** * 微信修改消息模板 * * @param reqJson * @return * @serviceCode /contractChangePlanRoom/updateContractChangePlanRoom * @path /app/contractChangePlanRoom/updateContractChangePlanRoom */ @RequestMapping(value = "/updateContractChangePlanRoom", method = RequestMethod.POST) public ResponseEntity updateContractChangePlanRoom(@RequestBody JSONObject reqJson) { Assert.hasKeyAndValue(reqJson, "planId", "请求报文中未包含planId"); Assert.hasKeyAndValue(reqJson, "roomId", "请求报文中未包含roomId"); Assert.hasKeyAndValue(reqJson, "prId", "prId不能为空"); ContractChangePlanRoomPo contractChangePlanRoomPo = BeanConvertUtil.covertBean(reqJson, ContractChangePlanRoomPo.class); return updateContractChangePlanRoomBMOImpl.update(contractChangePlanRoomPo); } /** * 微信删除消息模板 * * @param reqJson * @return * @serviceCode /contractChangePlanRoom/deleteContractChangePlanRoom * @path /app/contractChangePlanRoom/deleteContractChangePlanRoom */ @RequestMapping(value = "/deleteContractChangePlanRoom", method = RequestMethod.POST) public ResponseEntity deleteContractChangePlanRoom(@RequestBody JSONObject reqJson) { Assert.hasKeyAndValue(reqJson, "communityId", "小区ID不能为空"); Assert.hasKeyAndValue(reqJson, "prId", "prId不能为空"); ContractChangePlanRoomPo contractChangePlanRoomPo = BeanConvertUtil.covertBean(reqJson, ContractChangePlanRoomPo.class); return deleteContractChangePlanRoomBMOImpl.delete(contractChangePlanRoomPo); } /** * 微信删除消息模板 * * @param storeId 商户ID * @return * @serviceCode /contractChangePlanRoom/queryContractChangePlanRoom * @path /app/contractChangePlanRoom/queryContractChangePlanRoom */ @RequestMapping(value = "/queryContractChangePlanRoom", method = RequestMethod.GET) public ResponseEntity queryContractChangePlanRoom(@RequestHeader(value = "shore-id") String storeId, @RequestParam(value = "page") int page, @RequestParam(value = "row") int row) { ContractChangePlanRoomDto contractChangePlanRoomDto = new ContractChangePlanRoomDto(); contractChangePlanRoomDto.setPage(page); contractChangePlanRoomDto.setRow(row); contractChangePlanRoomDto.setStoreId(storeId); return getContractChangePlanRoomBMOImpl.get(contractChangePlanRoomDto); } }