班组的排班日历

This commit is contained in:
JinLu.Yin 2022-06-11 22:25:48 +08:00
parent 99715fc886
commit eef9d9b233

View File

@ -52,6 +52,17 @@ public class CalTeamController extends BaseController
return getDataTable(list); return getDataTable(list);
} }
/**
* 查询所有班组列表
*/
@PreAuthorize("@ss.hasPermi('mes:cal:team:list')")
@GetMapping("/listAll")
public AjaxResult listAll(){
CalTeam calTeam= new CalTeam();
List<CalTeam> list = calTeamService.selectCalTeamList(calTeam);
return AjaxResult.success(list);
}
/** /**
* 导出班组列表 * 导出班组列表
*/ */