admin
2020-07-14 7af22bf20c862c8ab2270cfeef8f3530f174ac9f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.yeshi.ec.rebate.myapplication.entity.eventbus;
 
public class UserProtocolEvent {
    public UserProtocolEvent(boolean agree) {
        this.agree = agree;
    }
 
    private boolean agree;//是否同意
    public boolean isAgree() {
        return agree;
    }
 
    public void setAgree(boolean agree) {
        this.agree = agree;
    }
}