Sunshine
2024-11-05 8f7985d7764a0aad24bd593ac5ea47b7fc290961
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.nova.sankuai.domain.api.yangqianguan.vo;
 
import lombok.Data;
 
/**
 * @author weikangdi
 * @create 2022/6/7
 */
@Data
public class VerifySignVo {
 
    private boolean verify;
 
    private String content;
 
    public VerifySignVo(boolean verify, String content) {
        this.verify = verify;
        this.content = content;
    }
}