liurunyu
2024-11-29 4806c0858f17792642eebed4083cc970bc77b343
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.dy.rtuMw.web.comResult;
 
/**
 * @Author liurunyu
 * @Date 2023/12/21 20:43
 * @LastEditTime 2023/12/21 20:43
 * @Description
 */
public class WebResponseVo {
    public boolean result ;
 
    public boolean isResult() {
        return result;
    }
 
    public void setResult(boolean result) {
        this.result = result;
    }
}