package com.artfess.manage.duty.controller;

import com.artfess.base.annotation.ApiGroup;
import com.artfess.base.constants.ApiGroupConsts;
import com.artfess.base.controller.BaseController;
import com.artfess.manage.duty.manager.CmgtDutyTeamManager;
import com.artfess.manage.duty.model.CmgtDutyTeam;
import io.swagger.annotations.Api;
import lombok.extern.slf4j.Slf4j;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
/**
 * 勤务小组信息 前端控制器
 *
 * @company 阿特菲斯信息技术有限公司
 * @author wjl
 * @since 2022-07-20
 */
@Slf4j
@Api(tags = "勤务队员信息-勤务管理")
@RestController
@RequestMapping("/manager/duty/team")
@ApiGroup(group = {ApiGroupConsts.MANAGER_BIZ})
public class CmgtDutyTeamController extends BaseController<CmgtDutyTeamManager, CmgtDutyTeam> {

}
