package com.mes.downglassinfo.controller; import com.mes.downglassinfo.entity.DownGlassInfo; import com.mes.downglassinfo.service.DownGlassInfoService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.*; import java.util.List; @RestController @RequestMapping("/downGlassInfo") public class DownGlassInfoController { @Autowired private DownGlassInfoService downGlassInfoService; // Other endpoints can be added for CRUD operations }