liurunyu
2024-07-11 53af97c5cf578d8feab2b22faa79e3b7a61f4ca8
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;
    }
}