java110
2022-05-19 636b46b0da8220ff4560ca5328509f4c701462c9
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
package com.java110.acct.api;
 
import com.alibaba.fastjson.JSONObject;
import com.java110.acct.bmo.systemGoldSetting.IDeleteSystemGoldSettingBMO;
import com.java110.acct.bmo.systemGoldSetting.IGetSystemGoldSettingBMO;
import com.java110.acct.bmo.systemGoldSetting.ISaveSystemGoldSettingBMO;
import com.java110.acct.bmo.systemGoldSetting.IUpdateSystemGoldSettingBMO;
import com.java110.dto.systemGoldSetting.SystemGoldSettingDto;
import com.java110.po.systemGoldSetting.SystemGoldSettingPo;
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.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
 
 
@RestController
@RequestMapping(value = "/systemGoldSetting")
public class SystemGoldSettingApi {
 
    @Autowired
    private ISaveSystemGoldSettingBMO saveSystemGoldSettingBMOImpl;
    @Autowired
    private IUpdateSystemGoldSettingBMO updateSystemGoldSettingBMOImpl;
    @Autowired
    private IDeleteSystemGoldSettingBMO deleteSystemGoldSettingBMOImpl;
 
    @Autowired
    private IGetSystemGoldSettingBMO getSystemGoldSettingBMOImpl;
 
    /**
     * 微信保存消息模板
     *
     * @param reqJson
     * @return
     * @serviceCode /systemGoldSetting/saveSystemGoldSetting
     * @path /app/systemGoldSetting/saveSystemGoldSetting
     */
    @RequestMapping(value = "/saveSystemGoldSetting", method = RequestMethod.POST)
    public ResponseEntity<String> saveSystemGoldSetting(@RequestBody JSONObject reqJson) {
 
        Assert.hasKeyAndValue(reqJson, "buyPrice", "请求报文中未包含buyPrice");
        Assert.hasKeyAndValue(reqJson, "usePrice", "请求报文中未包含usePrice");
        Assert.hasKeyAndValue(reqJson, "validity", "请求报文中未包含validity");
 
 
        SystemGoldSettingPo systemGoldSettingPo = BeanConvertUtil.covertBean(reqJson, SystemGoldSettingPo.class);
        return saveSystemGoldSettingBMOImpl.save(systemGoldSettingPo);
    }
 
    /**
     * 微信修改消息模板
     *
     * @param reqJson
     * @return
     * @serviceCode /systemGoldSetting/updateSystemGoldSetting
     * @path /app/systemGoldSetting/updateSystemGoldSetting
     */
    @RequestMapping(value = "/updateSystemGoldSetting", method = RequestMethod.POST)
    public ResponseEntity<String> updateSystemGoldSetting(@RequestBody JSONObject reqJson) {
 
        Assert.hasKeyAndValue(reqJson, "buyPrice", "请求报文中未包含buyPrice");
        Assert.hasKeyAndValue(reqJson, "usePrice", "请求报文中未包含usePrice");
        Assert.hasKeyAndValue(reqJson, "validity", "请求报文中未包含validity");
        Assert.hasKeyAndValue(reqJson, "settingId", "settingId不能为空");
 
 
        SystemGoldSettingPo systemGoldSettingPo = BeanConvertUtil.covertBean(reqJson, SystemGoldSettingPo.class);
        return updateSystemGoldSettingBMOImpl.update(systemGoldSettingPo);
    }
 
    /**
     * 微信删除消息模板
     *
     * @param reqJson
     * @return
     * @serviceCode /systemGoldSetting/deleteSystemGoldSetting
     * @path /app/systemGoldSetting/deleteSystemGoldSetting
     */
    @RequestMapping(value = "/deleteSystemGoldSetting", method = RequestMethod.POST)
    public ResponseEntity<String> deleteSystemGoldSetting(@RequestBody JSONObject reqJson) {
        Assert.hasKeyAndValue(reqJson, "communityId", "小区ID不能为空");
 
        Assert.hasKeyAndValue(reqJson, "settingId", "settingId不能为空");
 
 
        SystemGoldSettingPo systemGoldSettingPo = BeanConvertUtil.covertBean(reqJson, SystemGoldSettingPo.class);
        return deleteSystemGoldSettingBMOImpl.delete(systemGoldSettingPo);
    }
 
    /**
     * 微信删除消息模板
     *
     * @return
     * @serviceCode /systemGoldSetting/querySystemGoldSetting
     * @path /app/systemGoldSetting/querySystemGoldSetting
     */
    @RequestMapping(value = "/querySystemGoldSetting", method = RequestMethod.GET)
    public ResponseEntity<String> querySystemGoldSetting(
            @RequestParam(value = "page") int page,
            @RequestParam(value = "row") int row) {
        SystemGoldSettingDto systemGoldSettingDto = new SystemGoldSettingDto();
        systemGoldSettingDto.setPage(page);
        systemGoldSettingDto.setRow(row);
        return getSystemGoldSettingBMOImpl.get(systemGoldSettingDto);
    }
}