13 lines
243 B
Plaintext
13 lines
243 B
Plaintext
package com.ifish.jpush.push;
|
|
|
|
import com.google.gson.annotations.Expose;
|
|
import com.ifish.jpush.common.resp.BaseResult;
|
|
|
|
public class PushResult extends BaseResult {
|
|
|
|
@Expose public long msg_id;
|
|
@Expose public int sendno;
|
|
|
|
}
|
|
|