LsStationRouteController.java 2.93 KB
package com.bsth.controller;

import com.bsth.common.ResponseCode;
import com.bsth.entity.LsStationRoute;
import com.bsth.entity.StationRoute;
import com.bsth.service.LsStationRouteService;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;

import java.util.Arrays;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

/**
 * @author Hill
 */
@RestController
@RequestMapping("/api/lsstationroute")
public class LsStationRouteController extends BaseController<LsStationRoute, Integer> {
	
	@Autowired
	private LsStationRouteService lsStationRouteService;

	private static final Logger log = LoggerFactory.getLogger(LsStationRouteController.class);

    
    @RequestMapping(value = "/findAllByParams", method = RequestMethod.GET)
    public Iterable<LsStationRoute> findAllByParams(@RequestParam Map<String, Object> params) {
        return lsStationRouteService.findAllByParams(params);
    }

    /**
     * @param id
     * @throws
     * @Description: TODO(批量撤销站点)
     */
    @RequestMapping(value = "/destroy", method = RequestMethod.POST)
    public Map<String, Object> destroy(Integer id) {
        Map<String, Object> result = new HashMap<>();
        try {
            lsStationRouteService.batchDestroy(Arrays.asList(id));
            result.put("status", ResponseCode.SUCCESS);
        } catch (Exception e) {
            result.put("status", ResponseCode.ERROR);
            result.put("msg", e.getMessage());
            log.error("", e);
        }

        return result;
    }

    /**
     * @param ids
     * @throws
     * @Description: TODO(批量撤销站点)
     */
    @RequestMapping(value = "/batchDestroy", method = RequestMethod.POST)
    public Map<String, Object> batchDestroy(@RequestParam(value = "ids[]") List<Integer> ids) {
        Map<String, Object> result = new HashMap<>();
        try {
            lsStationRouteService.batchDestroy(ids);
            result.put("status", ResponseCode.SUCCESS);
        } catch (Exception e) {
            result.put("status", ResponseCode.ERROR);
            result.put("msg", e.getMessage());
            log.error("", e);
        }

        return result;
    }

    @RequestMapping(method = RequestMethod.POST)
    @Override
    public Map<String, Object> save(LsStationRoute stationRoute) {
        Map<String, Object> result = new HashMap<>();
        try {
            lsStationRouteService.save(stationRoute);
            result.put("status", ResponseCode.SUCCESS);
        } catch (Exception e) {
            result.put("status", ResponseCode.ERROR);
            result.put("msg", e.getMessage());
            log.error("", e);
        }

        return result;
    }
}