| | |
| | | package com.moral.api.controller; |
| | | |
| | | import com.moral.api.pojo.dto.organizationUnitAlarm.OrganizationUnitAlarmDTO; |
| | | import com.moral.api.pojo.dto.organizationUnitAlarm.OrganizationUnitAlarmQueryDTO; |
| | | import com.moral.api.pojo.form.organizationUnitAlarm.OrganizationUnitAlarmQueryForm; |
| | | import com.moral.api.pojo.form.organizationUnitAlarm.OrganizationUnitAlarmUpdateForm; |
| | | import com.moral.api.pojo.vo.organizationUnitAlarm.OrganizationUnitAlarmQueryVO; |
| | | import com.moral.api.service.OrganizationUnitAlarmService; |
| | | import com.moral.constant.ResponseCodeEnum; |
| | |
| | | import io.swagger.annotations.Api; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.web.bind.annotation.CrossOrigin; |
| | | import org.springframework.web.bind.annotation.GetMapping; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | | import org.springframework.web.bind.annotation.RestController; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | | /** |
| | | * @ClassName OrganizationUnitAlarmController |
| | |
| | | OrganizationUnitAlarmService organizationUnitAlarmService; |
| | | |
| | | @GetMapping("query") |
| | | public ResultMessage query(OrganizationUnitAlarmQueryForm form){ |
| | | public ResultMessage query(OrganizationUnitAlarmQueryForm form) { |
| | | |
| | | //判断是否缺少参数 |
| | | if (!form.valid()) |
| | |
| | | |
| | | return new ResultMessage(dto.getCode(), dto.getMsg(), vo); |
| | | } |
| | | |
| | | @PostMapping("update") |
| | | public ResultMessage update(@RequestBody OrganizationUnitAlarmUpdateForm form) { |
| | | |
| | | //判断是否缺少参数 |
| | | if (!form.valid()) |
| | | return ResultMessage.fail(ResponseCodeEnum.PARAMETERS_IS_MISSING.getCode(), |
| | | ResponseCodeEnum.PARAMETERS_IS_MISSING.getMsg()); |
| | | |
| | | OrganizationUnitAlarmDTO dto = organizationUnitAlarmService.update(form); |
| | | |
| | | return new ResultMessage(dto.getCode(), dto.getMsg(), null); |
| | | } |
| | | } |