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.
26 lines
745 B
26 lines
745 B
|
6 months ago
|
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 {
|
||
|
|
|
||
|
|
|
||
|
|
}
|