BindWX.java 290 Bytes
Newer Older
1
package com.yidianling.user.http.request;
konghaorui committed
2 3 4 5 6 7 8 9 10 11 12 13 14

public class BindWX {

        public String openid;
        public String unionid;

        public BindWX(String openid, String unionid) {
            super();
            this.openid = openid;
            this.unionid = unionid;
        }

    }