|
|
@@ -139,4 +139,13 @@ public class StoreClockInController {
|
|
|
log.info("StoreClockInController.getClockInRecordValidate?userId={},year={},city={}", userId, year, city);
|
|
|
return R.data(storeClockInService.getClockInRecordValidate(userId, year, city));
|
|
|
}
|
|
|
+
|
|
|
+ @ApiOperation("根据主键查询删除标记")
|
|
|
+ @ApiOperationSupport(order = 8)
|
|
|
+ @ApiImplicitParams({@ApiImplicitParam(name = "id", value = "主键id", dataType = "Integer", paramType = "query")})
|
|
|
+ @GetMapping("/getDeleteFlagById")
|
|
|
+ public R<Integer> getDeleteFlagById(Integer id) {
|
|
|
+ log.info("StoreClockInController.getDeleteFlagById?id={}", id);
|
|
|
+ return R.data(storeClockInService.getDeleteFlagById(id));
|
|
|
+ }
|
|
|
}
|