package com.casic.missiles.controller; import io.swagger.annotations.Api; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; /** * @Description: 溯源供方管理 * @Author: wangpeng * @Date: 2022/11/21 20:31 */ @Api(tags = "溯源供方管理接口") @Controller @RequestMapping("/meter/supplier") public class MeterSupplierController { /** * 溯源供方列表 */ /** * 溯源供方新建、编辑、删除 */ /** * 溯源供方审批 */ }