|
|
@@ -10,6 +10,7 @@ import shop.alien.entity.result.R;
|
|
|
import shop.alien.entity.store.StoreClockIn;
|
|
|
import shop.alien.entity.store.UserLoginInfo;
|
|
|
import shop.alien.entity.store.vo.ClockInRecordValidateVo;
|
|
|
+import shop.alien.entity.store.vo.StoreClockInDeleteFlagVo;
|
|
|
import shop.alien.entity.store.vo.StoreClockInVo;
|
|
|
import shop.alien.store.annotation.TrackEvent;
|
|
|
import shop.alien.store.service.StoreClockInService;
|
|
|
@@ -140,11 +141,11 @@ public class StoreClockInController {
|
|
|
return R.data(storeClockInService.getClockInRecordValidate(userId, year, city));
|
|
|
}
|
|
|
|
|
|
- @ApiOperation("根据主键查询删除标记")
|
|
|
+ @ApiOperation("根据主键查询删除标记及门店营业状态")
|
|
|
@ApiOperationSupport(order = 8)
|
|
|
@ApiImplicitParams({@ApiImplicitParam(name = "id", value = "主键id", dataType = "Integer", paramType = "query")})
|
|
|
@GetMapping("/getDeleteFlagById")
|
|
|
- public R<Integer> getDeleteFlagById(Integer id) {
|
|
|
+ public R<StoreClockInDeleteFlagVo> getDeleteFlagById(Integer id) {
|
|
|
log.info("StoreClockInController.getDeleteFlagById?id={}", id);
|
|
|
return R.data(storeClockInService.getDeleteFlagById(id));
|
|
|
}
|