package com.epmet.controller; import com.epmet.service.IcNatRelationService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; /** * 核酸记录关系表 * * @author generator generator@elink-cn.com * @since v1.0.0 2022-03-31 */ @RestController @RequestMapping("icNatRelation") public class IcNatRelationController { @Autowired private IcNatRelationService icNatRelationService; }