| | |
| | | * @author ls |
| | | * @date 2025-12-28 |
| | | */ |
| | | @Api(description = "考勤记录") |
| | | @Api(description = "考勤记录",tags={"考勤管理"}) |
| | | @RestController |
| | | @RequestMapping("/project/attendancerecords") |
| | | public class ServiceAttendancerecordsController extends BaseController { |
| | |
| | | @ApiOperation("查询考勤记录列表") |
| | | // @PreAuthorize("@ss.hasPermi('project:attendancerecords:list')") |
| | | @PostMapping("/list") |
| | | public TableDataInfo list(ServiceAttendancerecords serviceAttendancerecords) { |
| | | public TableDataInfo list(@RequestBody ServiceAttendancerecords serviceAttendancerecords) { |
| | | startPage(); |
| | | List<ServiceAttendancerecords> list = serviceAttendancerecordsService.queryList(serviceAttendancerecords); |
| | | return getDataTable(list); |