|
@ -21,6 +21,7 @@ import com.epmet.commons.tools.annotation.LoginUser; |
|
|
import com.epmet.commons.tools.security.dto.TokenDto; |
|
|
import com.epmet.commons.tools.security.dto.TokenDto; |
|
|
import com.epmet.commons.tools.utils.Result; |
|
|
import com.epmet.commons.tools.utils.Result; |
|
|
import com.epmet.commons.tools.validator.ValidatorUtils; |
|
|
import com.epmet.commons.tools.validator.ValidatorUtils; |
|
|
|
|
|
import com.epmet.constant.EventConstant; |
|
|
import com.epmet.dto.form.*; |
|
|
import com.epmet.dto.form.*; |
|
|
import com.epmet.dto.result.*; |
|
|
import com.epmet.dto.result.*; |
|
|
import com.epmet.service.ResiEventService; |
|
|
import com.epmet.service.ResiEventService; |
|
@ -139,14 +140,19 @@ public class ResiEventController { |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
|
* @Description 查看报事时,更新时间操作 |
|
|
* @Description 报事-首次查看事件-两端通用 |
|
|
* @Param formDTO |
|
|
* @Param formDTO |
|
|
* @author zxc |
|
|
* @author zxc |
|
|
* @date 2021/8/3 11:01 上午 |
|
|
* @date 2021/8/3 11:01 上午 |
|
|
*/ |
|
|
*/ |
|
|
@PostMapping("updateviewtime") |
|
|
@PostMapping("updateviewtime") |
|
|
public Result updateViewTime(@RequestBody UpdateViewTimeFormDTO formDTO){ |
|
|
public Result updateViewTime(@LoginUser TokenDto tokenDto,@RequestBody UpdateViewTimeFormDTO formDTO){ |
|
|
ValidatorUtils.validateEntity(formDTO, UpdateViewTimeFormDTO.UpdateViewTimeForm.class); |
|
|
formDTO.setUserId(tokenDto.getUserId()); |
|
|
|
|
|
formDTO.setCustomerId(tokenDto.getCustomerId()); |
|
|
|
|
|
ValidatorUtils.validateEntity(formDTO,UpdateViewTimeFormDTO.AddUserInternalGroup.class); |
|
|
|
|
|
if(EventConstant.STAFF.equals(formDTO.getViewType())){ |
|
|
|
|
|
ValidatorUtils.validateEntity(formDTO,UpdateViewTimeFormDTO.GovInternalGroup.class); |
|
|
|
|
|
} |
|
|
resiEventService.updateViewTime(formDTO); |
|
|
resiEventService.updateViewTime(formDTO); |
|
|
return new Result(); |
|
|
return new Result(); |
|
|
} |
|
|
} |
|
|