package com.mes.bigstorage.controller; import com.mes.bigstorage.entity.BigStorageCage; import com.mes.bigstorage.service.BigStorageCageService; import com.mes.utils.Result; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiOperation; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; import java.util.List; /** *
* 大理片笼信息 *
* * @author zhoush * @since 2024-03-27 */ @ApiModel("大理片笼信息") @RestController @RequestMapping("/bigStorageCage") public class BigStorageCageController { @Autowired private BigStorageCageService bigStorageCageService; // public Result