package com.java110.user.bmo.rentingPoolAttr.impl; import com.java110.core.annotation.Java110Transactional; import com.java110.core.factory.GenerateCodeFactory; import com.java110.intf.IRentingPoolAttrInnerServiceSMO; import com.java110.po.rentingPoolAttr.RentingPoolAttrPo; import com.java110.user.bmo.rentingPoolAttr.ISaveRentingPoolAttrBMO; import com.java110.vo.ResultVo; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.http.ResponseEntity; import org.springframework.stereotype.Service; @Service("saveRentingPoolAttrBMOImpl") public class SaveRentingPoolAttrBMOImpl implements ISaveRentingPoolAttrBMO { @Autowired private IRentingPoolAttrInnerServiceSMO rentingPoolAttrInnerServiceSMOImpl; /** * 添加小区信息 * * @param rentingPoolAttrPo * @return 订单服务能够接受的报文 */ @Java110Transactional public ResponseEntity save(RentingPoolAttrPo rentingPoolAttrPo) { rentingPoolAttrPo.setAttrId(GenerateCodeFactory.getGeneratorId(GenerateCodeFactory.CODE_PREFIX_attrId)); int flag = rentingPoolAttrInnerServiceSMOImpl.saveRentingPoolAttr(rentingPoolAttrPo); if (flag > 0) { return ResultVo.createResponseEntity(ResultVo.CODE_OK, "保存成功"); } return ResultVo.createResponseEntity(ResultVo.CODE_ERROR, "保存失败"); } }