严智鑫
2025-11-13 945bc394f40d8af1072a53da9a94f24207124e6d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package com.northglass.web.gaoliwei;
 
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
 
@Controller
@RequestMapping(value = "/gaoliwei")
public class GaoliweiController {
     public static String button = "0";
        public static String button1 = "0";
        
        public static String getButton() {
            return button;
        }
 
        public static void setButton(String button) {
            GaoliweiController.button = button;
        }
 
        public static String getButton1() {
            return button1;
        }
 
        public static void setButton1(String button1) {
            GaoliweiController.button1 = button1;
        }
}