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/organize") public class MeterOrganizeController { /** * 计量组织列表 */ /** * 计量组织编辑 */ /** * 计量组织详情 */ }