Commit 552c0ab7 by QianQiXiang

Merge branch 'developer' of http://git.gicdev.com/haoban3.0/haoban-manage3.0 into future-9.9

parents c3cc38cf 293177ba
...@@ -20,8 +20,8 @@ public interface OperationSettingApiService { ...@@ -20,8 +20,8 @@ public interface OperationSettingApiService {
/** /**
* 根据企业微信id查询 * 根据企业微信id查询
* *
* @param wxEnterpriseId * @param wxEnterpriseId 企业微信id
* @return * @return dto
*/ */
OperationSettingDTO getByWxEnterpriseId(String wxEnterpriseId); OperationSettingDTO getByWxEnterpriseId(String wxEnterpriseId);
......
...@@ -26,8 +26,8 @@ public class SettingController extends WebBaseController { ...@@ -26,8 +26,8 @@ public class SettingController extends WebBaseController {
@Autowired @Autowired
private OperationSettingApiService operationSettingApiService; private OperationSettingApiService operationSettingApiService;
@RequestMapping(value = "/operation-setting/save-or-update", method = RequestMethod.POST) @RequestMapping("/operation-setting/save-or-update")
private HaobanResponse operationSettingSaveOrUpdate(@RequestBody OperationSettingDTO dto) { private HaobanResponse operationSettingSaveOrUpdate(OperationSettingDTO dto) {
// 保存或更新操作设置 // 保存或更新操作设置
if (Objects.isNull(dto) if (Objects.isNull(dto)
|| Objects.isNull(dto.getWxEnterpriseId())) { || Objects.isNull(dto.getWxEnterpriseId())) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment