|
|
@ -17,8 +17,13 @@ |
|
|
|
|
|
|
|
package com.epmet.opendata.controller; |
|
|
|
|
|
|
|
import com.epmet.commons.tools.utils.Result; |
|
|
|
import com.epmet.commons.tools.validator.ValidatorUtils; |
|
|
|
import com.epmet.opendata.dto.form.UpsertPatrolRecordForm; |
|
|
|
import com.epmet.opendata.service.UserPatrolRecordService; |
|
|
|
import org.springframework.beans.factory.annotation.Autowired; |
|
|
|
import org.springframework.web.bind.annotation.PostMapping; |
|
|
|
import org.springframework.web.bind.annotation.RequestBody; |
|
|
|
import org.springframework.web.bind.annotation.RequestMapping; |
|
|
|
import org.springframework.web.bind.annotation.RestController; |
|
|
|
|
|
|
@ -36,4 +41,14 @@ public class UserPatrolRecordController { |
|
|
|
@Autowired |
|
|
|
private UserPatrolRecordService userPatrolRecordService; |
|
|
|
|
|
|
|
/** |
|
|
|
* @Author sun |
|
|
|
* @Description 网格员信息中间库同步 |
|
|
|
**/ |
|
|
|
@PostMapping("patrol") |
|
|
|
public Result getStaffBaseInfo(@RequestBody(required = false) UpsertPatrolRecordForm formDTO) { |
|
|
|
ValidatorUtils.validateEntity(formDTO); |
|
|
|
userPatrolRecordService.upsertPatrolRecord(formDTO); |
|
|
|
return new Result(); |
|
|
|
} |
|
|
|
} |
|
|
|