序列化表格


软件包 com.github.sd4324530.fastweixin.api.config

com.github.sd4324530.fastweixin.api.config.ApiConfig 继承 Observable 实现 Serializable

序列化字段

tokenRefreshing

AtomicBoolean tokenRefreshing
这里定义token正在刷新的标识,想要达到的目标是当有一个请求来获取token,发现token已经过期(我这里的过期逻辑是比官方提供的早100秒),然后开始刷新token 在刷新的过程里,如果又继续来获取token,会先把旧的token返回,直到刷新结束,之后再来的请求,将获取到新的token 利用AtomicBoolean实现原理: 当请求来的时候,检查token是否已经过期(7100秒)以及标识是否已经是true(表示已经在刷新了,还没刷新完),过期则将此标识设为true,并开始刷新token 在刷新结束前再次进来的请求,由于标识一直是true,而会直接拿到旧的token,由于我们的过期逻辑比官方的早100秒,所以旧的还可以继续用 无论刷新token正在结束还是出现异常,都在最后将标识改回false,表示刷新工作已经结束


jsRefreshing

AtomicBoolean jsRefreshing

appid

String appid

secret

String secret

accessToken

String accessToken

jsApiTicket

String jsApiTicket

enableJsApi

boolean enableJsApi

jsTokenStartTime

long jsTokenStartTime

weixinTokenStartTime

long weixinTokenStartTime

com.github.sd4324530.fastweixin.api.config.ConfigChangeNotice 继承 BaseModel 实现 Serializable

序列化字段

noticeTime

Date noticeTime

appid

String appid

type

ChangeType type

value

String value

软件包 com.github.sd4324530.fastweixin.api.entity

com.github.sd4324530.fastweixin.api.entity.Article 继承 BaseModel 实现 Serializable

序列化字段

thumbMediaId

String thumbMediaId

author

String author

title

String title

contentSourceUrl

String contentSourceUrl

content

String content

digest

String digest

showConverPic

Integer showConverPic

com.github.sd4324530.fastweixin.api.entity.ArticleSummary 继承 BaseDataCube 实现 Serializable

序列化字段

msgid

String msgid

title

String title

intPageReadUser

Integer intPageReadUser

intPageReadCount

Integer intPageReadCount

oriPageReadUser

Integer oriPageReadUser

oriPageReadCount

Integer oriPageReadCount

shareUser

Integer shareUser

share_count

Integer share_count

addToFavUser

Integer addToFavUser

addToFavCount

Integer addToFavCount

com.github.sd4324530.fastweixin.api.entity.ArticleTotal 继承 BaseDataCube 实现 Serializable

序列化字段

msgid

String msgid

title

String title

details

List<E> details

com.github.sd4324530.fastweixin.api.entity.ArticleTotalDetail 继承 BaseModel 实现 Serializable

序列化字段

statDate

Date statDate

targetUser

Integer targetUser

intPageReadUser

Integer intPageReadUser

intPageReadCount

Integer intPageReadCount

oriPageReadUser

Integer oriPageReadUser

oriPageReadCount

Integer oriPageReadCount

shareUser

Integer shareUser

shareCount

Integer shareCount

addToFavUser

Integer addToFavUser

addToFavCount

Integer addToFavCount

com.github.sd4324530.fastweixin.api.entity.BaseDataCube 继承 BaseModel 实现 Serializable

序列化字段

refDate

Date refDate

com.github.sd4324530.fastweixin.api.entity.BaseModel 继承 Object 实现 Serializable

com.github.sd4324530.fastweixin.api.entity.CustomAccount 继承 BaseModel 实现 Serializable

序列化字段

accountName

String accountName

nickName

String nickName

password

String password

id

String id

headImg

String headImg

com.github.sd4324530.fastweixin.api.entity.Group 继承 BaseModel 实现 Serializable

序列化字段

id

Integer id

name

String name

count

Integer count

com.github.sd4324530.fastweixin.api.entity.Industry 继承 BaseModel 实现 Serializable

序列化字段

industryId1

String industryId1
行业1


industryId2

String industryId2
行业2

com.github.sd4324530.fastweixin.api.entity.InterfaceSummary 继承 BaseDataCube 实现 Serializable

序列化字段

callbackCount

Integer callbackCount

failCount

Integer failCount

totalTimeCost

Integer totalTimeCost

maxTimeCost

Integer maxTimeCost

com.github.sd4324530.fastweixin.api.entity.InterfaceSummaryHour 继承 InterfaceSummary 实现 Serializable

序列化字段

refHour

Integer refHour

com.github.sd4324530.fastweixin.api.entity.Matchrule 继承 BaseModel 实现 Serializable

序列化字段

tagId

String tagId

groupId

String groupId
已过时。 

sex

String sex

country

String country

province

String province

city

String city

clientPlatformType

String clientPlatformType

com.github.sd4324530.fastweixin.api.entity.Menu 继承 BaseModel 实现 Serializable

序列化字段

button

List<E> button
一级菜单列表,最多3个


matchrule

Matchrule matchrule
菜单匹配规则

从以下版本开始:
1.3.7

menuId

String menuId
菜单ID,查询时会返回,删除个性化菜单时会用到

从以下版本开始:
1.3.7

com.github.sd4324530.fastweixin.api.entity.MenuButton 继承 BaseModel 实现 Serializable

序列化字段

type

MenuType type
菜单类别


name

String name
菜单上显示的文字


key

String key
菜单key,当MenuType值为CLICK时用于区别菜单


url

String url
菜单跳转的URL,当MenuType值为VIEW时用


mediaId

String mediaId
菜单显示的永久素材的MaterialID,当MenuType值为media_id和view_limited时必需


subButton

List<E> subButton
二级菜单列表,每个一级菜单下最多5个

com.github.sd4324530.fastweixin.api.entity.Tag 继承 BaseModel 实现 Serializable

序列化字段

id

Integer id

name

String name

count

Integer count

com.github.sd4324530.fastweixin.api.entity.TemplateMsg 继承 BaseModel 实现 Serializable

序列化字段

touser

String touser

templateId

String templateId

url

String url

topcolor

String topcolor
已过时。 

data

Map<K,V> data

com.github.sd4324530.fastweixin.api.entity.TemplateParam 继承 BaseModel 实现 Serializable

序列化字段

value

String value


color

String color
颜色

com.github.sd4324530.fastweixin.api.entity.UpstreamMsg 继承 BaseDataCube 实现 Serializable

序列化字段

msgType

Integer msgType

msgUser

Integer msgUser

msgCount

Integer msgCount

com.github.sd4324530.fastweixin.api.entity.UpstreamMsgDist 继承 BaseDataCube 实现 Serializable

序列化字段

countInterval

Integer countInterval

msgUser

Integer msgUser

com.github.sd4324530.fastweixin.api.entity.UpstreamMsgDistMonth 继承 UpstreamMsgDist 实现 Serializable

com.github.sd4324530.fastweixin.api.entity.UpstreamMsgDistWeek 继承 UpstreamMsgDist 实现 Serializable

com.github.sd4324530.fastweixin.api.entity.UpstreamMsgHour 继承 BaseDataCube 实现 Serializable

序列化字段

refHour

Integer refHour

msgType

Integer msgType

msgUser

Integer msgUser

msgCount

Integer msgCount

com.github.sd4324530.fastweixin.api.entity.UpstreamMsgMonth 继承 UpstreamMsg 实现 Serializable

com.github.sd4324530.fastweixin.api.entity.UpstreamMsgWeek 继承 UpstreamMsg 实现 Serializable

com.github.sd4324530.fastweixin.api.entity.UserCumulate 继承 BaseDataCube 实现 Serializable

序列化字段

cumulateUser

Integer cumulateUser

com.github.sd4324530.fastweixin.api.entity.UserInfo 继承 BaseModel 实现 Serializable

序列化字段

openid

String openid

lang

String lang

com.github.sd4324530.fastweixin.api.entity.UserRead 继承 BaseDataCube 实现 Serializable

序列化字段

intPageReadUser

Integer intPageReadUser

intPageReadCount

Integer intPageReadCount

oriPageReadUser

Integer oriPageReadUser

oriPageReadCount

Integer oriPageReadCount

shareUser

Integer shareUser

shareCount

Integer shareCount

addToFavUser

Integer addToFavUser

addToFavCount

Integer addToFavCount

com.github.sd4324530.fastweixin.api.entity.UserReadHour 继承 BaseDataCube 实现 Serializable

序列化字段

refHour

Integer refHour

intPageReadUser

Integer intPageReadUser

intPageReadCount

Integer intPageReadCount

oriPageReadUser

Integer oriPageReadUser

oriPageReadCount

Integer oriPageReadCount

shareUser

Integer shareUser

shareCount

Integer shareCount

addToFavUser

Integer addToFavUser

addToFavCount

Integer addToFavCount

com.github.sd4324530.fastweixin.api.entity.UserShare 继承 BaseDataCube 实现 Serializable

序列化字段

shareScene

Integer shareScene

shareCount

Integer shareCount

shareUser

Integer shareUser

com.github.sd4324530.fastweixin.api.entity.UserShareHour 继承 BaseDataCube 实现 Serializable

序列化字段

refHour

Integer refHour

shareScene

Integer shareScene

shareCount

Integer shareCount

shareUser

Integer shareUser

com.github.sd4324530.fastweixin.api.entity.UserSummary 继承 BaseDataCube 实现 Serializable

序列化字段

userSource

Integer userSource
用户的渠道,数值代表的含义如下: 0代表其他 30代表扫二维码 17代表名片分享 35代表搜号码(即微信添加朋友页的搜索) 39代表查询微信公众帐号 43代表图文页右上角菜单


newUser

Integer newUser
新增的用户数量


cancelUser

Integer cancelUser
取消关注的用户数量,new_user减去cancel_user即为净增用户数量


软件包 com.github.sd4324530.fastweixin.api.request

com.github.sd4324530.fastweixin.api.request.BaseRequest 继承 BaseModel 实现 Serializable


软件包 com.github.sd4324530.fastweixin.api.response

com.github.sd4324530.fastweixin.api.response.AddTemplateResponse 继承 BaseResponse 实现 Serializable

序列化字段

templateId

String templateId
模版id

com.github.sd4324530.fastweixin.api.response.BaseResponse 继承 BaseModel 实现 Serializable

序列化字段

errcode

String errcode

errmsg

String errmsg

com.github.sd4324530.fastweixin.api.response.CreateGroupResponse 继承 BaseResponse 实现 Serializable

序列化字段

group

Group group

com.github.sd4324530.fastweixin.api.response.CreateTagResponse 继承 BaseResponse 实现 Serializable

序列化字段

tag

Tag tag

com.github.sd4324530.fastweixin.api.response.DownloadMaterialResponse 继承 BaseResponse 实现 Serializable

序列化字段

news

List<E> news

title

String title

description

String description

downUrl

String downUrl

content

byte[] content

fileName

String fileName

com.github.sd4324530.fastweixin.api.response.DownloadMediaResponse 继承 BaseResponse 实现 Serializable

序列化字段

fileName

String fileName

content

byte[] content

com.github.sd4324530.fastweixin.api.response.GetAllTagsResponse 继承 BaseResponse 实现 Serializable

序列化字段

tags

List<E> tags

com.github.sd4324530.fastweixin.api.response.GetArticleSummaryResponse 继承 BaseResponse 实现 Serializable

序列化字段

list

List<E> list

com.github.sd4324530.fastweixin.api.response.GetArticleTotalResponse 继承 BaseResponse 实现 Serializable

序列化字段

list

List<E> list

com.github.sd4324530.fastweixin.api.response.GetCustomAccountsResponse 继承 BaseResponse 实现 Serializable

序列化字段

customAccountList

List<E> customAccountList

com.github.sd4324530.fastweixin.api.response.GetGroupsResponse 继承 BaseResponse 实现 Serializable

序列化字段

groups

List<E> groups

com.github.sd4324530.fastweixin.api.response.GetInterfaceSummaryHourResponse 继承 BaseResponse 实现 Serializable

序列化字段

list

List<E> list

com.github.sd4324530.fastweixin.api.response.GetInterfaceSummaryResponse 继承 BaseResponse 实现 Serializable

序列化字段

list

List<E> list

com.github.sd4324530.fastweixin.api.response.GetJsApiTicketResponse 继承 BaseResponse 实现 Serializable

序列化字段

ticket

String ticket

expiresIn

Integer expiresIn

com.github.sd4324530.fastweixin.api.response.GetMaterialListResponse 继承 BaseResponse 实现 Serializable

序列化字段

totalCount

int totalCount

itemCount

int itemCount

items

List<E> items

com.github.sd4324530.fastweixin.api.response.GetMaterialTotalCountResponse 继承 BaseResponse 实现 Serializable

序列化字段

video

int video

voice

int voice

image

int image

news

int news

com.github.sd4324530.fastweixin.api.response.GetMenuResponse 继承 BaseResponse 实现 Serializable

序列化字段

menu

Menu menu

com.github.sd4324530.fastweixin.api.response.GetSendMessageResponse 继承 BaseResponse 实现 Serializable

序列化字段

msgId

String msgId

com.github.sd4324530.fastweixin.api.response.GetSignatureResponse 继承 BaseResponse 实现 Serializable

序列化字段

noncestr

String noncestr

timestamp

long timestamp

url

String url

signature

String signature

com.github.sd4324530.fastweixin.api.response.GetTokenResponse 继承 BaseResponse 实现 Serializable

序列化字段

accessToken

String accessToken

expiresIn

Integer expiresIn

com.github.sd4324530.fastweixin.api.response.GetUpstreamMsgDistMonthResponse 继承 BaseResponse 实现 Serializable

序列化字段

list

List<E> list

com.github.sd4324530.fastweixin.api.response.GetUpstreamMsgDistResponse 继承 BaseResponse 实现 Serializable

序列化字段

list

List<E> list

com.github.sd4324530.fastweixin.api.response.GetUpstreamMsgDistWeekResponse 继承 BaseResponse 实现 Serializable

序列化字段

list

List<E> list

com.github.sd4324530.fastweixin.api.response.GetUpstreamMsgHourResponse 继承 BaseResponse 实现 Serializable

序列化字段

list

List<E> list

com.github.sd4324530.fastweixin.api.response.GetUpstreamMsgMonthResponse 继承 BaseResponse 实现 Serializable

序列化字段

list

List<E> list

com.github.sd4324530.fastweixin.api.response.GetUpstreamMsgResponse 继承 BaseResponse 实现 Serializable

序列化字段

list

List<E> list

com.github.sd4324530.fastweixin.api.response.GetUpstreamMsgWeekResponse 继承 BaseResponse 实现 Serializable

序列化字段

list

List<E> list

com.github.sd4324530.fastweixin.api.response.GetUserCumulateResponse 继承 BaseResponse 实现 Serializable

序列化字段

list

List<E> list

com.github.sd4324530.fastweixin.api.response.GetUserInfoListResponse 继承 BaseResponse 实现 Serializable

序列化字段

user_info_list

List<E> user_info_list

com.github.sd4324530.fastweixin.api.response.GetUserInfoResponse 继承 BaseResponse 实现 Serializable

序列化字段

subscribe

Integer subscribe

openid

String openid

nickname

String nickname

sex

Integer sex

language

String language

city

String city

province

String province

country

String country

headimgurl

String headimgurl

subscribeTime

Long subscribeTime

unionid

String unionid

remark

String remark

groupid

Integer groupid

com.github.sd4324530.fastweixin.api.response.GetUserReadHourResponse 继承 BaseResponse 实现 Serializable

序列化字段

list

List<E> list

com.github.sd4324530.fastweixin.api.response.GetUserReadResponse 继承 BaseResponse 实现 Serializable

序列化字段

list

List<E> list

com.github.sd4324530.fastweixin.api.response.GetUserShareHourResponse 继承 BaseResponse 实现 Serializable

序列化字段

list

List<E> list

com.github.sd4324530.fastweixin.api.response.GetUserShareResponse 继承 BaseResponse 实现 Serializable

序列化字段

list

List<E> list

com.github.sd4324530.fastweixin.api.response.GetUsersResponse 继承 BaseResponse 实现 Serializable

序列化字段

total

long total

count

int count

data

GetUsersResponse.Openid data

nextOpenid

String nextOpenid

com.github.sd4324530.fastweixin.api.response.GetUsersResponse.Openid 继承 Object 实现 Serializable

序列化字段

openid

String[] openid

com.github.sd4324530.fastweixin.api.response.GetUserSummaryResponse 继承 BaseResponse 实现 Serializable

序列化字段

list

List<E> list

com.github.sd4324530.fastweixin.api.response.OauthGetTokenResponse 继承 GetTokenResponse 实现 Serializable

序列化字段

refreshToken

String refreshToken

openid

String openid

scope

String scope

unionid

String unionid

com.github.sd4324530.fastweixin.api.response.PrivateTemplate 继承 BaseModel 实现 Serializable

序列化字段

templateId

String templateId
模板ID


title

String title
模板标题


primaryIndustry

String primaryIndustry
模板所属行业的一级行业


deputyIndustry

String deputyIndustry
模板所属行业的二级行业


content

String content
模板内容


example

String example
模板示例


remark

String remark
模板备注

com.github.sd4324530.fastweixin.api.response.QrcodeResponse 继承 BaseResponse 实现 Serializable

序列化字段

ticket

String ticket

expireSeconds

Integer expireSeconds

url

String url

com.github.sd4324530.fastweixin.api.response.SendTemplateResponse 继承 BaseResponse 实现 Serializable

序列化字段

msgid

String msgid
消息id

com.github.sd4324530.fastweixin.api.response.UploadImgResponse 继承 BaseResponse 实现 Serializable

序列化字段

url

String url

com.github.sd4324530.fastweixin.api.response.UploadMaterialResponse 继承 BaseResponse 实现 Serializable

序列化字段

mediaId

String mediaId

com.github.sd4324530.fastweixin.api.response.UploadMediaResponse 继承 BaseResponse 实现 Serializable

序列化字段

type

String type

mediaId

String mediaId

createdAt

Date createdAt

软件包 com.github.sd4324530.fastweixin.company.api.config

com.github.sd4324530.fastweixin.company.api.config.QYAPIConfig 继承 Observable 实现 Serializable

序列化字段

CACHE_TIME

Integer CACHE_TIME

tokenRefreshing

AtomicBoolean tokenRefreshing

jsRefreshing

AtomicBoolean jsRefreshing

corpid

String corpid

corpsecret

String corpsecret

accessToken

String accessToken

jsApiTicket

String jsApiTicket

enableJsApi

boolean enableJsApi

jsTokenStartTime

long jsTokenStartTime

weixinTokenStartTime

long weixinTokenStartTime

com.github.sd4324530.fastweixin.company.api.config.QYConfigChangeNotice 继承 BaseModel 实现 Serializable

序列化字段

noticeTime

Date noticeTime

corpID

String corpID

type

ChangeType type

value

String value

软件包 com.github.sd4324530.fastweixin.company.api.entity

com.github.sd4324530.fastweixin.company.api.entity.QYAgent 继承 BaseModel 实现 Serializable

序列化字段

agentId

String agentId

name

String name

squareLogoUrl

String squareLogoUrl

roundLogoUrl

String roundLogoUrl

description

String description

allowUserInfos

Map<K,V> allowUserInfos

allowPartys

Map<K,V> allowPartys

allowTags

Map<K,V> allowTags

close

Integer close

redirectDomain

String redirectDomain

reportLocationFlag

Integer reportLocationFlag

isReportUser

Integer isReportUser

isReportEnter

Integer isReportEnter

com.github.sd4324530.fastweixin.company.api.entity.QYDepartment 继承 BaseModel 实现 Serializable

序列化字段

id

Integer id

name

String name

parentId

Integer parentId

order

Integer order

com.github.sd4324530.fastweixin.company.api.entity.QYMenu 继承 BaseModel 实现 Serializable

序列化字段

button

List<E> button

com.github.sd4324530.fastweixin.company.api.entity.QYMenuButton 继承 BaseModel 实现 Serializable

序列化字段

type

QYMenuType type

name

String name

key

String key

url

String url

subButton

List<E> subButton

com.github.sd4324530.fastweixin.company.api.entity.QYTag 继承 BaseModel 实现 Serializable

序列化字段

tagname

String tagname

tagid

Integer tagid

com.github.sd4324530.fastweixin.company.api.entity.QYUser 继承 BaseModel 实现 Serializable

序列化字段

userId

String userId

name

String name

department

Integer[] department

position

String position

mobile

String mobile

gender

String gender

email

String email

weixinid

String weixinid

avatarMdiaid

String avatarMdiaid

avatar

String avatar

status

Integer status

extattr

Map<K,V> extattr

软件包 com.github.sd4324530.fastweixin.company.api.response

com.github.sd4324530.fastweixin.company.api.response.AddTagUsersResponse 继承 BaseResponse 实现 Serializable

序列化字段

invalidlist

String invalidlist

invalidparty

List<E> invalidparty

com.github.sd4324530.fastweixin.company.api.response.CreateDepartmentResponse 继承 BaseResponse 实现 Serializable

序列化字段

id

Integer id

com.github.sd4324530.fastweixin.company.api.response.CreateTagResponse 继承 BaseResponse 实现 Serializable

序列化字段

tagid

Integer tagid

com.github.sd4324530.fastweixin.company.api.response.DelTagUsersResponse 继承 BaseResponse 实现 Serializable

序列化字段

invalidlist

String invalidlist

invalidparty

List<E> invalidparty

com.github.sd4324530.fastweixin.company.api.response.DownloadMediaResponse 继承 BaseResponse 实现 Serializable

序列化字段

fileName

String fileName

content

byte[] content

com.github.sd4324530.fastweixin.company.api.response.GetDepartmentListResponse 继承 BaseResponse 实现 Serializable

序列化字段

departments

List<E> departments

com.github.sd4324530.fastweixin.company.api.response.GetOauthUserInfoResponse 继承 BaseResponse 实现 Serializable

序列化字段

userid

String userid

openid

String openid

deviceid

String deviceid

com.github.sd4324530.fastweixin.company.api.response.GetQYAgentInfoResponse 继承 BaseResponse 实现 Serializable

序列化字段

agentId

String agentId

name

String name

squareLogoUrl

String squareLogoUrl

roundLogoUrl

String roundLogoUrl

description

String description

allowUserInfos

Map<K,V> allowUserInfos

allowPartys

Map<K,V> allowPartys

allowTags

Map<K,V> allowTags

close

Integer close

redirectDomain

String redirectDomain

reportLocationFlag

Integer reportLocationFlag

isReportUser

Integer isReportUser

isReportEnter

Integer isReportEnter

com.github.sd4324530.fastweixin.company.api.response.GetQYAgentListResponse 继承 BaseResponse 实现 Serializable

序列化字段

agentList

List<E> agentList

com.github.sd4324530.fastweixin.company.api.response.GetQYMenuResponse 继承 BaseResponse 实现 Serializable

序列化字段

menu

QYMenu menu

com.github.sd4324530.fastweixin.company.api.response.GetQYSendMessageResponse 继承 BaseResponse 实现 Serializable

序列化字段

invalidUser

String invalidUser

invalidParty

String invalidParty

invalidTag

String invalidTag

com.github.sd4324530.fastweixin.company.api.response.GetQYUserInfo4DepartmentResponse 继承 BaseResponse 实现 Serializable

序列化字段

userList

List<E> userList

com.github.sd4324530.fastweixin.company.api.response.GetQYUserInfoResponse 继承 BaseResponse 实现 Serializable

序列化字段

userId

String userId

name

String name

departments

Integer[] departments

position

String position

mobile

String mobile

gender

String gender

email

String email

weixinid

String weixinid

avatar

String avatar

status

Integer status

extattr

Map<K,V> extattr

com.github.sd4324530.fastweixin.company.api.response.GetQYUserInviteResponse 继承 BaseResponse 实现 Serializable

序列化字段

type

Integer type

com.github.sd4324530.fastweixin.company.api.response.GetTagInfoResponse 继承 BaseResponse 实现 Serializable

序列化字段

users

List<E> users

partys

List<E> partys

com.github.sd4324530.fastweixin.company.api.response.GetTagListResponse 继承 BaseResponse 实现 Serializable

序列化字段

tags

List<E> tags

com.github.sd4324530.fastweixin.company.api.response.UploadMediaResponse 继承 BaseResponse 实现 Serializable

序列化字段

type

String type

mediaId

String mediaId

createTime

String createTime

软件包 com.github.sd4324530.fastweixin.company.message

com.github.sd4324530.fastweixin.company.message.QYBaseMsg 继承 BaseModel 实现 Serializable

序列化字段

toUser

String toUser

toParty

String toParty

toTag

String toTag

msgType

String msgType

agentId

String agentId

safe

String safe

com.github.sd4324530.fastweixin.company.message.QYFileMsg 继承 QYBaseMsg 实现 Serializable

序列化字段

file

QYFileMsg.File file

com.github.sd4324530.fastweixin.company.message.QYImageMsg 继承 QYBaseMsg 实现 Serializable

序列化字段

image

QYImageMsg.Image image

com.github.sd4324530.fastweixin.company.message.QYMpArticle 继承 Article 实现 Serializable

com.github.sd4324530.fastweixin.company.message.QYMpNewsMsg 继承 QYBaseMsg 实现 Serializable

序列化字段

news

Map<K,V> news

com.github.sd4324530.fastweixin.company.message.QYNewsMsg 继承 QYBaseMsg 实现 Serializable

序列化字段

news

Map<K,V> news

com.github.sd4324530.fastweixin.company.message.QYTextMsg 继承 QYBaseMsg 实现 Serializable

序列化字段

text

QYTextMsg.Text text

com.github.sd4324530.fastweixin.company.message.QYVideoMsg 继承 QYBaseMsg 实现 Serializable

序列化字段

video

QYVideoMsg.Video video

com.github.sd4324530.fastweixin.company.message.QYVoiceMsg 继承 QYBaseMsg 实现 Serializable

序列化字段

voice

QYVoiceMsg.Voice voice

软件包 com.github.sd4324530.fastweixin.company.message.resp

com.github.sd4324530.fastweixin.company.message.resp.QYBaseRespMsg 继承 Object 实现 Serializable

序列化字段

toUserName

String toUserName

fromUserName

String fromUserName

createTime

int createTime

msgType

String msgType

com.github.sd4324530.fastweixin.company.message.resp.QYImageRespMsg 继承 QYBaseRespMsg 实现 Serializable

序列化字段

mediaId

String mediaId

com.github.sd4324530.fastweixin.company.message.resp.QYNewsRespMsg 继承 QYBaseRespMsg 实现 Serializable

序列化字段

maxSize

int maxSize

articles

List<E> articles

com.github.sd4324530.fastweixin.company.message.resp.QYTextRespMsg 继承 QYBaseRespMsg 实现 Serializable

序列化字段

contentBuilder

StringBuilder contentBuilder

com.github.sd4324530.fastweixin.company.message.resp.QYVideoRespMsg 继承 QYBaseRespMsg 实现 Serializable

序列化字段

mediaId

String mediaId

title

String title

description

String description

com.github.sd4324530.fastweixin.company.message.resp.QYVoiceRespMsg 继承 QYBaseRespMsg 实现 Serializable

序列化字段

mediaId

String mediaId

软件包 com.github.sd4324530.fastweixin.exception

com.github.sd4324530.fastweixin.exception.WeixinException 继承 RuntimeException 实现 Serializable


软件包 com.github.sd4324530.fastweixin.message

com.github.sd4324530.fastweixin.message.BaseMsg 继承 Object 实现 Serializable

序列化字段

toUserName

String toUserName

fromUserName

String fromUserName

createTime

long createTime

msgType

String msgType

com.github.sd4324530.fastweixin.message.CustomMsg 继承 BaseMsg 实现 Serializable

序列化字段

kfAccount

String kfAccount

com.github.sd4324530.fastweixin.message.ImageMsg 继承 BaseMsg 实现 Serializable

序列化字段

mediaId

String mediaId

com.github.sd4324530.fastweixin.message.MpNewsMsg 继承 BaseMsg 实现 Serializable

序列化字段

mediaId

String mediaId

com.github.sd4324530.fastweixin.message.MusicMsg 继承 BaseMsg 实现 Serializable

序列化字段

title

String title

description

String description

musicUrl

String musicUrl

hqMusicUrl

String hqMusicUrl

thumbMediaId

String thumbMediaId

com.github.sd4324530.fastweixin.message.NewsMsg 继承 BaseMsg 实现 Serializable

序列化字段

maxSize

int maxSize

articles

List<E> articles

com.github.sd4324530.fastweixin.message.TextMsg 继承 BaseMsg 实现 Serializable

序列化字段

contentBuilder

StringBuilder contentBuilder

com.github.sd4324530.fastweixin.message.VideoMsg 继承 BaseMsg 实现 Serializable

序列化字段

mediaId

String mediaId

title

String title

description

String description

com.github.sd4324530.fastweixin.message.VoiceMsg 继承 BaseMsg 实现 Serializable

序列化字段

mediaId

String mediaId

软件包 com.github.sd4324530.fastweixin.message.aes

com.github.sd4324530.fastweixin.message.aes.AesException 继承 Exception 实现 Serializable

序列化字段

code

int code

软件包 com.github.sd4324530.fastweixin.servlet

com.github.sd4324530.fastweixin.servlet.QYWeixinServletSupport 继承 javax.servlet.http.HttpServlet 实现 Serializable

序列化字段

support

QYWeixinSupport support

com.github.sd4324530.fastweixin.servlet.WeixinServletSupport 继承 javax.servlet.http.HttpServlet 实现 Serializable

序列化字段

support

WeixinSupport support



Copyright © 2017. All rights reserved.