java110
2022-05-18 1b8cefcc2c20d43f9e5dcd58cd26672de604420a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
package com.java110.community.bmo.communitySetting.impl;
 
import com.java110.community.bmo.communitySetting.IUpdateCommunitySettingBMO;
import com.java110.core.annotation.Java110Transactional;
import com.java110.core.factory.CommunitySettingFactory;
import com.java110.intf.community.ICommunitySettingInnerServiceSMO;
import com.java110.po.communitySetting.CommunitySettingPo;
import com.java110.vo.ResultVo;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.ResponseEntity;
import org.springframework.stereotype.Service;
 
@Service("updateCommunitySettingBMOImpl")
public class UpdateCommunitySettingBMOImpl implements IUpdateCommunitySettingBMO {
 
    @Autowired
    private ICommunitySettingInnerServiceSMO communitySettingInnerServiceSMOImpl;
 
    /**
     * @param communitySettingPo
     * @return 订单服务能够接受的报文
     */
    @Java110Transactional
    public ResponseEntity<String> update(CommunitySettingPo communitySettingPo) {
 
        int flag = communitySettingInnerServiceSMOImpl.updateCommunitySetting(communitySettingPo);
 
        if (flag < 1) {
            return ResultVo.createResponseEntity(ResultVo.CODE_ERROR, "保存失败");
        }
 
        //将结果写入缓存
        CommunitySettingFactory.getCommunitySettingFromDb(communitySettingPo.getCommunityId(), communitySettingPo.getSettingKey());
        return ResultVo.createResponseEntity(ResultVo.CODE_OK, "保存成功");
 
    }
 
}