liurunyu
2025-02-05 6dacac48ebb596797dfd8e5bf3a803ed0b583643
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;
    }
}