wuyouming666
2024-04-15 a2068f3779b8172dd66f55d13a2da2ec62c9796a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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
}