You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
745 B
25 lines
745 B
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 { |
|
|
|
|
|
}
|
|
|