package com.nov.KgLowDurable.controller; import com.nov.KgLowDurable.pojo.vo.DepartmentVO; import com.nov.KgLowDurable.service.IDepartmentService; import com.nov.KgLowDurable.util.Result; import io.swagger.annotations.ApiOperation; import io.swagger.annotations.ApiOperationSort; import lombok.AllArgsConstructor; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; import java.util.List; /** * @author liweidong */ @RestController @AllArgsConstructor @RequestMapping("/twoOutStorageDetail") public class LdTwoOutStorageDetailController { }