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.CmgtDutyVehicleManager;
import com.artfess.manage.duty.model.CmgtDutyVehicle;
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/vehicle")
@ApiGroup(group = {ApiGroupConsts.MANAGER_BIZ})
public class CmgtDutyVehicleController extends BaseController<CmgtDutyVehicleManager, CmgtDutyVehicle> {

//    @Autowired
//    private CmgtDutyVehicleManager cmgtDutyVehicleManager;

//    @PostMapping("/query")
//    @ApiOperation("获取车辆信息列表")
//    @PowerLogInfo(logType = LogType.BIZ, operaionType = OperationType.QUERY, description = "获取车辆信息列表")
//    public PageList<CmgtDutyVehicle> query(@ApiParam(name = "model", value = "获取未关联监测站下拉列表") @RequestBody QueryFilter<CmgtDutyVehicle> queryFilter) {
//        log.info("获取车辆信息列表请求参数:{}", JSON.toJSONString(queryFilter));
//        return  cmgtDutyVehicleManager.pageQuery(queryFilter);
//    }


}
